|
@@ -1319,12 +1319,12 @@ EXPORT_SYMBOL(sock_update_classid);
|
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_NETPRIO_CGROUP)
|
|
#if IS_ENABLED(CONFIG_NETPRIO_CGROUP)
|
|
|
-void sock_update_netprioidx(struct sock *sk, struct task_struct *task)
|
|
|
|
|
|
|
+void sock_update_netprioidx(struct sock *sk)
|
|
|
{
|
|
{
|
|
|
if (in_interrupt())
|
|
if (in_interrupt())
|
|
|
return;
|
|
return;
|
|
|
|
|
|
|
|
- sk->sk_cgrp_prioidx = task_netprioidx(task);
|
|
|
|
|
|
|
+ sk->sk_cgrp_prioidx = task_netprioidx(current);
|
|
|
}
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(sock_update_netprioidx);
|
|
EXPORT_SYMBOL_GPL(sock_update_netprioidx);
|
|
|
#endif
|
|
#endif
|
|
@@ -1354,7 +1354,7 @@ struct sock *sk_alloc(struct net *net, int family, gfp_t priority,
|
|
|
atomic_set(&sk->sk_wmem_alloc, 1);
|
|
atomic_set(&sk->sk_wmem_alloc, 1);
|
|
|
|
|
|
|
|
sock_update_classid(sk);
|
|
sock_update_classid(sk);
|
|
|
- sock_update_netprioidx(sk, current);
|
|
|
|
|
|
|
+ sock_update_netprioidx(sk);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
return sk;
|
|
return sk;
|