diff options
author | Christian Brauner <brauner@kernel.org> | 2025-09-24 13:33:59 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2025-09-25 09:23:54 +0200 |
commit | 4055526d35746ce8b04bfa5e14e14f28bb163186 (patch) | |
tree | 9d42503429528822e4cc7c2a38f2fd4bbcf10d4c /include/linux/proc_ns.h | |
parent | 10cdfcd37ade7ce736bc4a1927680f390a6b1f7b (diff) |
ns: move ns type into struct ns_common
It's misplaced in struct proc_ns_operations and ns->ops might be NULL if
the namespace is compiled out but we still want to know the type of the
namespace for the initial namespace struct.
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'include/linux/proc_ns.h')
-rw-r--r-- | include/linux/proc_ns.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/proc_ns.h b/include/linux/proc_ns.h index 08016f6e0e6f..e81b8e596e4f 100644 --- a/include/linux/proc_ns.h +++ b/include/linux/proc_ns.h @@ -17,7 +17,6 @@ struct inode; struct proc_ns_operations { const char *name; const char *real_ns_name; - int type; struct ns_common *(*get)(struct task_struct *task); void (*put)(struct ns_common *ns); int (*install)(struct nsset *nsset, struct ns_common *ns); |