sock: break up sock_cmsg_snd into __sock_cmsg_snd and loop
authorWillem de Bruijn <willemb@google.com>
Sun, 3 Apr 2016 03:08:06 +0000 (23:08 -0400)
committerDavid S. Miller <davem@davemloft.net>
Mon, 4 Apr 2016 19:50:29 +0000 (15:50 -0400)
commit39771b127b412377d6354893c7d43ee8f2edecfd
tree065ed6db2e28f348f03feef14869503150547cdd
parent833716e0ed026c1abc7dd0e85a6932b855a8e56b
sock: break up sock_cmsg_snd into __sock_cmsg_snd and loop

To process cmsg's of the SOL_SOCKET level in addition to
cmsgs of another level, protocols can call sock_cmsg_send().
This causes a double walk on the cmsghdr list, one for SOL_SOCKET
and one for the other level.

Extract the inner demultiplex logic from the loop that walks the list,
to allow having this called directly from a walker in the protocol
specific code.

Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: Soheil Hassas Yeganeh <soheil@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sock.h
net/core/sock.c