aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cls_cgroup.h
diff options
context:
space:
mode:
authorZefan Li <lizefan@huawei.com>2013-04-08 20:03:35 +0000
committerDavid S. Miller <davem@davemloft.net>2013-04-09 13:19:35 -0400
commit211d2f97e936d206a5e45f6f64ecbc2c51a2b46c (patch)
tree229ea02f50ae5796c5a55a3ee8e9f5ed42a7c94d /include/net/cls_cgroup.h
parenttcp_memcontrol: remove a redundant statement in tcp_destroy_cgroup() (diff)
downloadlinux-dev-211d2f97e936d206a5e45f6f64ecbc2c51a2b46c.tar.xz
linux-dev-211d2f97e936d206a5e45f6f64ecbc2c51a2b46c.zip
cls_cgroup: remove task_struct parameter from sock_update_classid()
The callers always pass current to sock_update_classid(). Signed-off-by: Li Zefan <lizefan@huawei.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/cls_cgroup.h')
-rw-r--r--include/net/cls_cgroup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/cls_cgroup.h b/include/net/cls_cgroup.h
index 2581638f4a3d..0fee0617fb7d 100644
--- a/include/net/cls_cgroup.h
+++ b/include/net/cls_cgroup.h
@@ -24,7 +24,7 @@ struct cgroup_cls_state
u32 classid;
};
-extern void sock_update_classid(struct sock *sk, struct task_struct *task);
+extern void sock_update_classid(struct sock *sk);
#if IS_BUILTIN(CONFIG_NET_CLS_CGROUP)
static inline u32 task_cls_classid(struct task_struct *p)
@@ -61,7 +61,7 @@ static inline u32 task_cls_classid(struct task_struct *p)
}
#endif
#else /* !CGROUP_NET_CLS_CGROUP */
-static inline void sock_update_classid(struct sock *sk, struct task_struct *task)
+static inline void sock_update_classid(struct sock *sk)
{
}