mirror of https://github.com/torvalds/linux.git
ns: make is_initial_namespace() argument const
We don't modify the data structure at all so pass it as const. Link: https://patch.msgid.link/20251110-work-namespace-nstree-fixes-v1-8-e8a9264e0fb9@kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
298ab06ae4
commit
ed93c0697a
|
|
@ -13,7 +13,7 @@ int __ns_common_init(struct ns_common *ns, u32 ns_type, const struct proc_ns_ope
|
|||
void __ns_common_free(struct ns_common *ns);
|
||||
struct ns_common *__must_check ns_owner(struct ns_common *ns);
|
||||
|
||||
static __always_inline bool is_initial_namespace(struct ns_common *ns)
|
||||
static __always_inline bool is_initial_namespace(const struct ns_common *ns)
|
||||
{
|
||||
VFS_WARN_ON_ONCE(ns->inum == 0);
|
||||
return unlikely(in_range(ns->inum, MNT_NS_INIT_INO,
|
||||
|
|
|
|||
Loading…
Reference in New Issue