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>
This commit is contained in:
Zefan Li
2013-04-08 20:03:35 +00:00
committed by David S. Miller
parent 10b96f7306
commit 211d2f97e9
3 changed files with 6 additions and 6 deletions

View File

@@ -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)
{
}