[NET]: cleanup 3rd argument in netlink_sendskb
netlink_sendskb does not use third argument. Clean it and save a couple of bytes. Signed-off-by: Denis V. Lunev <den@openvz.org> Acked-by: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
3b71535f35
commit
7ee015e0fa
@@ -521,8 +521,7 @@ static void __do_notify(struct mqueue_inode_info *info)
|
||||
break;
|
||||
case SIGEV_THREAD:
|
||||
set_cookie(info->notify_cookie, NOTIFY_WOKENUP);
|
||||
netlink_sendskb(info->notify_sock,
|
||||
info->notify_cookie, 0);
|
||||
netlink_sendskb(info->notify_sock, info->notify_cookie);
|
||||
break;
|
||||
}
|
||||
/* after notification unregisters process */
|
||||
@@ -568,7 +567,7 @@ static void remove_notification(struct mqueue_inode_info *info)
|
||||
if (info->notify_owner != NULL &&
|
||||
info->notify.sigev_notify == SIGEV_THREAD) {
|
||||
set_cookie(info->notify_cookie, NOTIFY_REMOVED);
|
||||
netlink_sendskb(info->notify_sock, info->notify_cookie, 0);
|
||||
netlink_sendskb(info->notify_sock, info->notify_cookie);
|
||||
}
|
||||
put_pid(info->notify_owner);
|
||||
info->notify_owner = NULL;
|
||||
|
Reference in New Issue
Block a user