X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=include%2Flinux%2Fuser_namespace.h;h=b5f41d4c2eec71a3d3c786128f0f980f0b41317d;hb=5c0a95c73f80c034914e219eee8075acdf56b527;hp=bb320573bb9ee6ab216f28a138c9f1ce83ed5caf;hpb=c2dc1ad582196208a2f990eb0230eb922046c684;p=cascardo%2Flinux.git diff --git a/include/linux/user_namespace.h b/include/linux/user_namespace.h index bb320573bb9e..b5f41d4c2eec 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)