aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/scm.c
diff options
context:
space:
mode:
authorZefan Li <lizefan@huawei.com>2013-04-08 16:03:47 -0400
committerDavid S. Miller <davem@davemloft.net>2013-04-09 13:19:37 -0400
commit6ffd46410248ee39b46c2cdafb79791c2e618932 (patch)
tree2acaf062e43d763668ea1ccb361aa71f9ee05a20 /net/core/scm.c
parent211d2f97e936d206a5e45f6f64ecbc2c51a2b46c (diff)
netprio_cgroup: remove task_struct parameter from sock_update_netprio()
The callers always pass current to sock_update_netprio(). 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 'net/core/scm.c')
-rw-r--r--net/core/scm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/scm.c b/net/core/scm.c
index c77b7c3d2f9d..03795d0147f2 100644
--- a/net/core/scm.c
+++ b/net/core/scm.c
@@ -290,7 +290,7 @@ void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm)
290 /* Bump the usage count and install the file. */ 290 /* Bump the usage count and install the file. */
291 sock = sock_from_file(fp[i], &err); 291 sock = sock_from_file(fp[i], &err);
292 if (sock) { 292 if (sock) {
293 sock_update_netprioidx(sock->sk, current); 293 sock_update_netprioidx(sock->sk);
294 sock_update_classid(sock->sk); 294 sock_update_classid(sock->sk);
295 } 295 }
296 fd_install(new_fd, get_file(fp[i])); 296 fd_install(new_fd, get_file(fp[i]));