Received: by 10.223.185.116 with SMTP id b49csp2293430wrg; Thu, 15 Feb 2018 09:22:49 -0800 (PST) X-Google-Smtp-Source: AH8x225rTq/2+BWCP6/n3iV97P70YVM3WV/29uAYbmOLFpAsoByJXRzhgU0Z9V3rcO5vCiC+tWbY X-Received: by 10.98.64.9 with SMTP id n9mr3327382pfa.194.1518715369632; Thu, 15 Feb 2018 09:22:49 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518715369; cv=none; d=google.com; s=arc-20160816; b=K+0IABiqcdG536SxdeMD0kX9Ng0zp83NCxGyax3Q2HU4NDVY651ePdAqLRnuxyXsVq TFKNlANicRpeMbLAxNBrxJ6ydJNCk8X11Z4KaHV3seb2247SOIwriZWauiaFfzOUJofN cVgg4tkXfztDE7eeF10V6BMNLcwu8ndufFS1gQE1H4sQ051ADdf2BYgqkoUCnDvJOsZK 0+Uh9d19Mn2+1ogMITYfz8jSWSovJGsFdYHqY04ZKZIhgPLJOc5APGp7qAHcSgQmVNOl OXrC7y29W8V+XEGrpRd5uGJTgk9I/WSL26I4M18O6b1A5V8A2iyt5awjuZlQywuQ6KP8 yHow== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=swTlemgFq53ks/2DXJ79MbChubLZsIbLDICGeRIF1Bc=; b=V2sfAJbcK2BOKc4yjTbXBJr4WWFIbUHcbT1A0JaemmICGdsJMfgi4lVLjB86CWVOcU /X8S9YhUKQYCP/baMuqN1wb4ZILZkhCYV7G0Va/OHbR1yhvC4UwgJLTeleH5fcDcGIJF 4W+HksWJYvsRcaycTEAZ7XwfYtviCooggYicltPaBVU2oaBKHVPrZQNBvOgC+JTKCIy1 LNB6DaJAWheI0vnYYZsKkTrDKfRxHoChgjqokQMcHu2oZLs6zKbitW1GyjXXtm14V9UU +hOiVG3QHvUhjTLXGW60w0Z5KCOJRmWKLjmxWJ5qai6e2uav4Ejm9At0QBhyxCPJvxRc 23ww== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f76si10023258pfe.323.2018.02.15.09.22.35; Thu, 15 Feb 2018 09:22:49 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1422835AbeBORVY (ORCPT + 99 others); Thu, 15 Feb 2018 12:21:24 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:54904 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1427240AbeBORVU (ORCPT ); Thu, 15 Feb 2018 12:21:20 -0500 Received: from localhost ([127.0.0.1] helo=bazinga.breakpoint.cc) by Galois.linutronix.de with esmtp (Exim 4.80) (envelope-from ) id 1emNAX-0003Wd-Ue; Thu, 15 Feb 2018 18:18:02 +0100 From: Sebastian Andrzej Siewior To: mingo@kernel.org Cc: linux-kernel@vger.kernel.org, rostedt@goodmis.org, tglx@linutronix.de, Ingo Molnar , Sebastian Andrzej Siewior Subject: [PATCH 1/2] kernel/sofirq: consolidate common code in __tasklet_schedule() + _hi_ Date: Thu, 15 Feb 2018 18:20:41 +0100 Message-Id: <20180215172042.31573-2-bigeasy@linutronix.de> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180215172042.31573-1-bigeasy@linutronix.de> References: <20180215172042.31573-1-bigeasy@linutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Ingo Molnar __tasklet_schedule() and __tasklet_hi_schedule() are almost identical. Move the common code from both function into __tasklet_schedule_common() and let both functions invoke it with different arguments. Signed-off-by: Ingo Molnar Signed-off-by: Steven Rostedt Signed-off-by: Thomas Gleixner [bigeasy: splitted out from RT's "tasklet: Prevent tasklets from going into infinite spin in RT" and added commit message] Signed-off-by: Sebastian Andrzej Siewior --- kernel/softirq.c | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/kernel/softirq.c b/kernel/softirq.c index 24d243ef8e71..145cf6a2e7c9 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -460,29 +460,31 @@ struct tasklet_head { static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec); static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec); =20 -void __tasklet_schedule(struct tasklet_struct *t) +static void __tasklet_schedule_common(struct tasklet_struct *t, + struct tasklet_head *head, + unsigned int softirq_nr) { unsigned long flags; =20 local_irq_save(flags); t->next =3D NULL; - *__this_cpu_read(tasklet_vec.tail) =3D t; - __this_cpu_write(tasklet_vec.tail, &(t->next)); - raise_softirq_irqoff(TASKLET_SOFTIRQ); + *head->tail =3D t; + head->tail =3D &(t->next); + raise_softirq_irqoff(softirq_nr); local_irq_restore(flags); } + +void __tasklet_schedule(struct tasklet_struct *t) +{ + __tasklet_schedule_common(t, this_cpu_ptr(&tasklet_vec), + TASKLET_SOFTIRQ); +} EXPORT_SYMBOL(__tasklet_schedule); =20 void __tasklet_hi_schedule(struct tasklet_struct *t) { - unsigned long flags; - - local_irq_save(flags); - t->next =3D NULL; - *__this_cpu_read(tasklet_hi_vec.tail) =3D t; - __this_cpu_write(tasklet_hi_vec.tail, &(t->next)); - raise_softirq_irqoff(HI_SOFTIRQ); - local_irq_restore(flags); + __tasklet_schedule_common(t, this_cpu_ptr(&tasklet_hi_vec), + HI_SOFTIRQ); } EXPORT_SYMBOL(__tasklet_hi_schedule); =20 --=20 2.16.1