From: Serge Hallyn Date: Mon, 24 Nov 2008 21:24:10 +0000 (-0500) Subject: User namespaces: use the current_user_ns() macro X-Git-Tag: v2.6.29-rc1~588^2^2~8^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6ded6ab9be4f6164aef1c527407c1b94f0929799;p=karo-tx-linux.git User namespaces: use the current_user_ns() macro Fix up the last current_user()->user_ns instance to use current_user_ns(). Signed-off-by: Serge E. Hallyn --- diff --git a/kernel/user.c b/kernel/user.c index c0ef3a464438..97202cb29adc 100644 --- a/kernel/user.c +++ b/kernel/user.c @@ -361,7 +361,7 @@ struct user_struct *find_user(uid_t uid) { struct user_struct *ret; unsigned long flags; - struct user_namespace *ns = current_user()->user_ns; + struct user_namespace *ns = current_user_ns(); spin_lock_irqsave(&uidhash_lock, flags); ret = uid_hash_find(uid, uidhashentry(ns, uid));