The patch titled user_ns: handle file sigio (fix) has been removed from the -mm tree. Its filename was user_ns-handle-file-sigio-fix.patch This patch was dropped because it was folded into user_ns-handle-file-sigio.patch ------------------------------------------------------ Subject: user_ns: handle file sigio (fix) From: Cedric Le Goater <clg@xxxxxxxxxx> get_user_ns() returns NULL when CONFIG_USER_NS=n and this breaks sigio_perm() which does not expect NULL values for ->user_ns. I would fix this with the following patch. Signed-off-by: Cedric Le Goater <clg@xxxxxxxxxx> Cc: Serge E. Hallyn <serue@xxxxxxxxxx> Cc: Herbert Poetzl <herbert@xxxxxxxxxxxx> Cc: Kirill Korotaev <dev@xxxxx> Cc: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/user_namespace.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/user_namespace.h~user_ns-handle-file-sigio-fix include/linux/user_namespace.h --- a/include/linux/user_namespace.h~user_ns-handle-file-sigio-fix +++ a/include/linux/user_namespace.h @@ -48,7 +48,7 @@ static inline int clone_mnt_userns_permi static inline struct user_namespace *get_user_ns(struct user_namespace *ns) { - return NULL; + return &init_user_ns; } static inline int copy_user_ns(int flags, struct task_struct *tsk) _ Patches currently in -mm which might be from clg@xxxxxxxxxx are kthread-api-conversion-for-dvb_frontend-and-av7110.patch mxser-remove-useless-fields.patch nsproxy-externalizes-exit_task_namespaces.patch user-namespace-add-the-framework.patch user_ns-handle-file-sigio.patch user_ns-handle-file-sigio-fix.patch rename-attach_pid-to-find_attach_pid.patch attach_pid-with-struct-pid-parameter.patch remove-find_attach_pid.patch statically-initialize-struct-pid-for-swapper.patch explicitly-set-pgid-sid-of-init.patch uts-namespace-remove-config_uts_ns.patch ipc-namespace-remove-config_ipc_ns.patch ipc-namespace-remove-config_ipc_ns-linkage-fix.patch ipc-namespace-remove-config_ipc_ns-linkage-fix-fix.patch statistics-replace-inode-ugeneric_ip-with-i_private.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html