From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756007Ab2GEMEa (ORCPT ); Thu, 5 Jul 2012 08:04:30 -0400 Received: from mail-qc0-f174.google.com ([209.85.216.174]:45764 "EHLO mail-qc0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751182Ab2GEME2 (ORCPT ); Thu, 5 Jul 2012 08:04:28 -0400 Date: Thu, 5 Jul 2012 08:04:13 -0400 From: Konrad Rzeszutek Wilk To: Andrea Arcangeli Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, Hillf Danton , Dan Smith , Peter Zijlstra , Linus Torvalds , Andrew Morton , Thomas Gleixner , Ingo Molnar , Paul Turner , Suresh Siddha , Mike Galbraith , "Paul E. McKenney" , Lai Jiangshan , Bharata B Rao , Lee Schermerhorn , Rik van Riel , Johannes Weiner , Srivatsa Vaddagiri , Christoph Lameter , Alex Shi , Mauricio Faria de Oliveira , Konrad Rzeszutek Wilk , Don Morris , Benjamin Herrenschmidt Subject: Re: [PATCH 09/40] autonuma: introduce kthread_bind_node() Message-ID: <20120705120412.GA12779@localhost.localdomain> References: <1340888180-15355-1-git-send-email-aarcange@redhat.com> <1340888180-15355-10-git-send-email-aarcange@redhat.com> <20120630045013.GB3975@localhost.localdomain> <20120704231425.GP25743@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120704231425.GP25743@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > /** > * kthread_bind_node - bind a just-created kthread to the CPUs of a node. > * @p: thread created by kthread_create(). > * @nid: node (might not be online, must be possible) for @k to run on. > * > * Description: This function is equivalent to set_cpus_allowed(), > * except that @nid doesn't need to be online, and the thread must be > * stopped (i.e., just returned from kthread_create()). > */ > void kthread_bind_node(struct task_struct *p, int nid) > { > /* Must have done schedule() in kthread() before we set_task_cpu */ > if (!wait_task_inactive(p, TASK_UNINTERRUPTIBLE)) { > WARN_ON(1); > return; > } > > /* It's safe because the task is inactive. */ > do_set_cpus_allowed(p, cpumask_of_node(nid)); > p->flags |= PF_THREAD_BOUND; > } > EXPORT_SYMBOL(kthread_bind_node); > > The above should explain why it's not _GPL right now. As far as > AutoNUMA is concerned I can drop the EXPORT_SYMBOL completely and not > allow modules to call this. In fact I could have coded this inside > autonuma too. Ok. How about dropping it and then if its needed for modules then export it out. > > I can change it to _GPL, drop the EXPORT_SYMBOL or move it inside the > autonuma code, let me know what you prefer. If I hear nothing I won't > make changes. > > Thanks, > Andrea >