Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756661AbYH1AMw (ORCPT ); Wed, 27 Aug 2008 20:12:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754019AbYH1AMo (ORCPT ); Wed, 27 Aug 2008 20:12:44 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:48936 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753754AbYH1AMn (ORCPT ); Wed, 27 Aug 2008 20:12:43 -0400 Date: Wed, 27 Aug 2008 17:07:40 -0700 From: Andrew Morton To: "Serge E. Hallyn" Cc: linux-kernel@vger.kernel.org, ebiederm@xmission.com Subject: Re: [PATCH 1/3] user namespaces: introduce user_struct->user_namespace relationship Message-Id: <20080827170740.c50cacf7.akpm@linux-foundation.org> In-Reply-To: <20080826185341.GA338@us.ibm.com> References: <20080826185341.GA338@us.ibm.com> X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.20; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1596 Lines: 39 On Tue, 26 Aug 2008 13:53:41 -0500 "Serge E. Hallyn" wrote: > When a task does clone(CLONE_NEWNS), the task's user is the 'creator' of the > new user_namespace, and the user_namespace is tacked onto a list of those > created by this user. > > Changelog: > Aug 25: make free_user not inlined as it's not trivial. (Eric > Biederman suggestion) > Aug 1: renamed user->user_namespace to user_ns, as the next > patch did anyway. > Aug 1: move put_user_ns call in one free_user() definition > to move it outside the lock in free_user. put_user_ns > calls free_user on the user_ns->creator, which in > turn would grab the lock again. > > Signed-off-by: Serge Hallyn > --- > include/linux/sched.h | 1 + > include/linux/user_namespace.h | 1 + > kernel/user.c | 11 +++++++++-- > kernel/user_namespace.c | 20 +++++++++++--------- The credentials code in linux-next is changing the same code which you're changing, in more-than-trivially-textual ways. I'd suggest a dhowells cc on these changes, as he's also working in this area, and as you touch the keyring code a bit. And, of course, please remove that almost-always-wrong extern-declaration-in-C which checkpatch told you about. init_groups is already declared in include/linux/init_task.h anyway... -- 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/