[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230326092208.13613-3-laoar.shao@gmail.com>
Date: Sun, 26 Mar 2023 09:21:57 +0000
From: Yafang Shao <laoar.shao@...il.com>
To: ast@...nel.org, daniel@...earbox.net, andrii@...nel.org,
kafai@...com, songliubraving@...com, yhs@...com,
john.fastabend@...il.com, kpsingh@...nel.org, sdf@...gle.com,
haoluo@...gle.com, jolsa@...nel.org
Cc: bpf@...r.kernel.org, linux-kernel@...r.kernel.org,
Yafang Shao <laoar.shao@...il.com>
Subject: [RFC PATCH bpf-next 02/13] proc_ns: Extend the field type in struct proc_ns_operations to long
In struct proc_ns_operations, the field 'type' is the new namespace
clone flag. As the newly introduced CLONE_NEWBPF is more than 32bit,
we need also extend this field from int to long to adapt to this change.
Signed-off-by: Yafang Shao <laoar.shao@...il.com>
---
include/linux/proc_ns.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/proc_ns.h b/include/linux/proc_ns.h
index 75807ec..555c257 100644
--- a/include/linux/proc_ns.h
+++ b/include/linux/proc_ns.h
@@ -16,7 +16,7 @@
struct proc_ns_operations {
const char *name;
const char *real_ns_name;
- int type;
+ long type;
struct ns_common *(*get)(struct task_struct *task);
void (*put)(struct ns_common *ns);
int (*install)(struct nsset *nsset, struct ns_common *ns);
--
1.8.3.1
Powered by blists - more mailing lists