diff options
author | Patrick McHardy <kaber@trash.net> | 2013-04-17 02:46:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-19 14:57:56 -0400 |
commit | e32123e59871b9389d5b3fe9318611c7f1d1307a (patch) | |
tree | 1a16fcf51b79c5a6a955139e8829aef55fdc3880 /include | |
parent | cd967e05715489c5d1059d8d3012c747e5cfb1c4 (diff) |
netlink: rename ssk to sk in struct netlink_skb_params
Memory mapped netlink needs to store the receiving userspace socket
when sending from the kernel to userspace. Rename 'ssk' to 'sk' to
avoid confusion.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netlink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index e0f746b7b95c..d8e9264ae04a 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h | |||
@@ -19,7 +19,7 @@ struct netlink_skb_parms { | |||
19 | struct scm_creds creds; /* Skb credentials */ | 19 | struct scm_creds creds; /* Skb credentials */ |
20 | __u32 portid; | 20 | __u32 portid; |
21 | __u32 dst_group; | 21 | __u32 dst_group; |
22 | struct sock *ssk; | 22 | struct sock *sk; |
23 | }; | 23 | }; |
24 | 24 | ||
25 | #define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb)) | 25 | #define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb)) |