From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754300Ab2LZKVb (ORCPT ); Wed, 26 Dec 2012 05:21:31 -0500 Received: from szxga01-in.huawei.com ([119.145.14.64]:64335 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754219Ab2LZKV3 (ORCPT ); Wed, 26 Dec 2012 05:21:29 -0500 Message-ID: <50DACF5B.6050705@huawei.com> Date: Wed, 26 Dec 2012 18:20:11 +0800 From: Li Zefan User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: Tejun Heo CC: , , , , , , , , , , Subject: Re: [PATCH 06/13] cpuset: cleanup cpuset[_can]_attach() References: <1354138460-19286-1-git-send-email-tj@kernel.org> <1354138460-19286-7-git-send-email-tj@kernel.org> In-Reply-To: <1354138460-19286-7-git-send-email-tj@kernel.org> Content-Type: text/plain; charset="GB2312" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.135.68.215] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2012/11/29 5:34, Tejun Heo wrote: > cpuset_can_attach() prepare global variables cpus_attach and > cpuset_attach_nodemask_{to|from} which are used by cpuset_attach(). > There is no reason to prepare in cpuset_can_attach(). The same > information can be accessed from cpuset_attach(). > > Move the prepartion logic from cpuset_can_attach() to cpuset_attach() > and make the global variables static ones inside cpuset_attach(). > > While at it, convert cpus_attach to cpumask_t from cpumask_var_t. > There's no reason to mess with dynamic allocation on a static buffer. > But Rusty had been deprecating the use of cpumask_t. I don't know why the final deprecation hasn't been completed yet.