X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=include%2Flinux%2Fuser_namespace.h;h=b5f41d4c2eec71a3d3c786128f0f980f0b41317d;hb=a8931ef380c92d121ae74ecfb03b2d63f72eea6f;hp=bb320573bb9ee6ab216f28a138c9f1ce83ed5caf;hpb=77ec739d8d0979477fc91f530403805afa2581a4;p=linux-2.6-omap-h63xx.git diff --git a/include/linux/user_namespace.h b/include/linux/user_namespace.h index bb320573bb9..b5f41d4c2ee 100644 --- a/include/linux/user_namespace.h +++ b/include/linux/user_namespace.h @@ -11,7 +11,7 @@ struct user_namespace { struct kref kref; - struct list_head uidhash_table[UIDHASH_SZ]; + struct hlist_head uidhash_table[UIDHASH_SZ]; struct user_struct *root_user; }; @@ -49,7 +49,7 @@ static inline struct user_namespace *copy_user_ns(int flags, if (flags & CLONE_NEWUSER) return ERR_PTR(-EINVAL); - return NULL; + return old_ns; } static inline void put_user_ns(struct user_namespace *ns)