diff options
Diffstat (limited to 'include/net/cls_cgroup.h')
| -rw-r--r-- | include/net/cls_cgroup.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/include/net/cls_cgroup.h b/include/net/cls_cgroup.h index b6a6eeb3905f..2581638f4a3d 100644 --- a/include/net/cls_cgroup.h +++ b/include/net/cls_cgroup.h @@ -24,12 +24,12 @@ struct cgroup_cls_state  	u32 classid;  }; -extern void sock_update_classid(struct sock *sk); +extern void sock_update_classid(struct sock *sk, struct task_struct *task);  #if IS_BUILTIN(CONFIG_NET_CLS_CGROUP)  static inline u32 task_cls_classid(struct task_struct *p)  { -	int classid; +	u32 classid;  	if (in_interrupt())  		return 0; @@ -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) +static inline void sock_update_classid(struct sock *sk, struct task_struct *task)  {  } |