Received: by 10.223.185.116 with SMTP id b49csp1042530wrg; Fri, 16 Feb 2018 11:20:46 -0800 (PST) X-Google-Smtp-Source: AH8x2264m0i83PCEAlMGrwh6pC/d9tsdET4HAvoICbVO9NhO/UqfHRqg9iFtgM8Ss2EW2+uA2idn X-Received: by 2002:a17:902:2c83:: with SMTP id n3-v6mr6941617plb.227.1518808845905; Fri, 16 Feb 2018 11:20:45 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518808845; cv=none; d=google.com; s=arc-20160816; b=hi3OLD+thzTf3GdqvqrvwC+kBTGWqI0n/BLfpiS3geo7XIxgpQlBUNKfVEeDXPHdz7 1dwvvIyCqobmlPnfNa/x9lNPwBsPNIIIaptJBGVe8Ejujor1qDCbG9U5pQCpQ5Ha9F4M jxJUbx9lQTlYefrOC5XNyWCyQDoIe+okzPtQl8uPOWUF9Ty+2rUka8zE5+Ms7fyDsvtx IchaPuUF0/uVZUs7wWYD4M0iq40FGIc3R7DFyi59ytk9+NeguFnpCOwLardEkxu6Yy+4 lM3/ZyCUhFpcRQToxTr0kOpVSjDhzWQxkkzjgPsulIr1M+kv2BkYxdXMIStcdg+ZEk8r P3nA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-transfer-encoding:content-disposition:mime-version :references:message-id:subject:cc:to:from:date :arc-authentication-results; bh=/v5v43eeEMf137K91wzMYdxhfW67YPrkm/7vWoG6kPA=; b=EfZDMgbdhMWZGS2me1M9nrdVSjdIf0jJ4dRNLJEPOq914sMo/6DLaM5bDQd1qGkRQD 5vnMQ4xKnm8aCdGQG7zfnKIcRF1zaX0ZOrjtqUAAoSvXThRwAcnKEhiyABS6Zqqt79qU HKfUKkyzNUn6MVyWCziCLjIvnq5IZ997A/6qyHNn/j0UWL6c6W1wIWEocSDXYo2CVFIH dhwFiklmkhbq1Mf6uUHQ9ogIEBj/7Gk58iVq9fHvnOxHGmEqkC5C42jEdfNIDFs5l4gJ spYJVZ6u/9R6pFXrjMeqSjK5cHAzSBeabRZyTLKZ0w5ls7nRWi8xO6W2QoMpEMZZjuR2 VfAA== 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 e15si4571013pgu.356.2018.02.16.11.20.31; Fri, 16 Feb 2018 11:20:45 -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 S1032411AbeBPRIn convert rfc822-to-8bit (ORCPT + 99 others); Fri, 16 Feb 2018 12:08:43 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:56905 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1032362AbeBPRIl (ORCPT ); Fri, 16 Feb 2018 12:08:41 -0500 Received: from bigeasy by Galois.linutronix.de with local (Exim 4.80) (envelope-from ) id 1emjRn-0005c5-Es; Fri, 16 Feb 2018 18:05:19 +0100 Date: Fri, 16 Feb 2018 18:08:36 +0100 From: Sebastian Andrzej Siewior To: Steven Rostedt Cc: mingo@kernel.org, linux-kernel@vger.kernel.org, tglx@linutronix.de, Ingo Molnar Subject: [PATCH 1/2 v2] kernel/sofirq: consolidate common code in __tasklet_schedule() + _hi_ Message-ID: <20180216170836.ex2uxcgkk7gniwqi@linutronix.de> References: <20180215172042.31573-1-bigeasy@linutronix.de> <20180215172042.31573-2-bigeasy@linutronix.de> <20180215150707.49cc2332@gandalf.local.home> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8BIT In-Reply-To: <20180215150707.49cc2332@gandalf.local.home> User-Agent: NeoMutt/20171215 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 --- v1…v2: use local_irq_save() within the non-common. kernel/softirq.c | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/kernel/softirq.c b/kernel/softirq.c index 24d243ef8e71..860679e357e2 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -460,15 +460,24 @@ struct tasklet_head { static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec); static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec); +static void __tasklet_schedule_common(struct tasklet_struct *t, + struct tasklet_head *head, + unsigned int softirq_nr) +{ + + t->next = NULL; + *head->tail = t; + head->tail = &(t->next); + raise_softirq_irqoff(softirq_nr); +} + void __tasklet_schedule(struct tasklet_struct *t) { unsigned long flags; local_irq_save(flags); - t->next = NULL; - *__this_cpu_read(tasklet_vec.tail) = t; - __this_cpu_write(tasklet_vec.tail, &(t->next)); - raise_softirq_irqoff(TASKLET_SOFTIRQ); + __tasklet_schedule_common(t, this_cpu_ptr(&tasklet_vec), + TASKLET_SOFTIRQ); local_irq_restore(flags); } EXPORT_SYMBOL(__tasklet_schedule); @@ -478,10 +487,8 @@ void __tasklet_hi_schedule(struct tasklet_struct *t) unsigned long flags; local_irq_save(flags); - t->next = NULL; - *__this_cpu_read(tasklet_hi_vec.tail) = t; - __this_cpu_write(tasklet_hi_vec.tail, &(t->next)); - raise_softirq_irqoff(HI_SOFTIRQ); + __tasklet_schedule_common(t, this_cpu_ptr(&tasklet_hi_vec), + HI_SOFTIRQ); local_irq_restore(flags); } EXPORT_SYMBOL(__tasklet_hi_schedule); -- 2.16.1