Commit 9fab329d authored by Andrey Ignatov's avatar Andrey Ignatov Committed by Alexei Starovoitov

bpf: Remove unused new_flags in hierarchy_allows_attach()

new_flags is unused, remove it.
Signed-off-by: default avatarAndrey Ignatov <rdna@fb.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Acked-by: default avatarMartin KaFai Lau <kafai@fb.com>
Link: https://lore.kernel.org/bpf/2c49b30ab750f93cfef04a1e40b097d70c3a39a1.1576741281.git.rdna@fb.com
parent 1020c1f2
...@@ -103,8 +103,7 @@ static u32 prog_list_length(struct list_head *head) ...@@ -103,8 +103,7 @@ static u32 prog_list_length(struct list_head *head)
* if parent has overridable or multi-prog, allow attaching * if parent has overridable or multi-prog, allow attaching
*/ */
static bool hierarchy_allows_attach(struct cgroup *cgrp, static bool hierarchy_allows_attach(struct cgroup *cgrp,
enum bpf_attach_type type, enum bpf_attach_type type)
u32 new_flags)
{ {
struct cgroup *p; struct cgroup *p;
...@@ -303,7 +302,7 @@ int __cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog, ...@@ -303,7 +302,7 @@ int __cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
/* invalid combination */ /* invalid combination */
return -EINVAL; return -EINVAL;
if (!hierarchy_allows_attach(cgrp, type, flags)) if (!hierarchy_allows_attach(cgrp, type))
return -EPERM; return -EPERM;
if (!list_empty(progs) && cgrp->bpf.flags[type] != flags) if (!list_empty(progs) && cgrp->bpf.flags[type] != flags)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment