Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933043AbbERUlS (ORCPT ); Mon, 18 May 2015 16:41:18 -0400 Received: from mail-qg0-f54.google.com ([209.85.192.54]:36480 "EHLO mail-qg0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932765AbbERUlO (ORCPT ); Mon, 18 May 2015 16:41:14 -0400 Date: Mon, 18 May 2015 16:41:08 -0400 From: Tejun Heo To: Lai Jiangshan Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/7 V2] workqueue: introduce get_pwq_unlocked() Message-ID: <20150518204108.GG24861@htj.duckdns.org> References: <1431433955-3173-1-git-send-email-laijs@cn.fujitsu.com> <1431433955-3173-4-git-send-email-laijs@cn.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1431433955-3173-4-git-send-email-laijs@cn.fujitsu.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1544 Lines: 46 Hello, So, it looks like we'll need get_pwq_unlocked(). Reviews below. On Tue, May 12, 2015 at 08:32:31PM +0800, Lai Jiangshan wrote: > attrs management code may reuse existed pwq and it has open code > to do "lock();get_pwq();unlock()", we move this open code into > get_pwq_unlocked(). > > get_pwq_unlocked() will also be used in later patches to allow > apply_wqattrs_prepare() to resue the original default or per-node pwq. reuse > /** > + * get_pwq_unlocked - get_pwq() with surrounding pool lock/unlock > + * @pwq: pool_workqueue to get (should not %NULL) > + * > + * get_pwq() with locking. The caller should have at least an owned > + * reference on @pwq to match the guarantees required by get_pwq(). > + * > + * Return itsefl for allowing chained expressions. > + */ > +static struct pool_workqueue *get_pwq_unlocked(struct pool_workqueue *pwq) > +{ > + spin_lock_irq(&pwq->pool->lock); > + get_pwq(pwq); > + spin_unlock_irq(&pwq->pool->lock); > + > + return pwq; > +} As I mentioned before, please drop the return value. It may be tempting to do this to match the pattern with alloc and whatnot but these things end badly in the long term. Please stick to what's necessary. The function can't fail. Make its return type void. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/