diff options
author | Denis Cheng <crquan@gmail.com> | 2007-08-28 15:41:11 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:48:35 -0700 |
commit | 32b21e034be9954eaae0278df20e0251eb958ded (patch) | |
tree | 3a0e55f59fae96505b908b1e65a2df42e9377c41 | |
parent | f7944fb1913130ae7858008af96e52a3a6b04118 (diff) | |
download | linux-32b21e034be9954eaae0278df20e0251eb958ded.tar.bz2 |
[NETLINK]: use container_of instead
This could make future redesign of struct netlink_sock easier.
Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/netlink/af_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index 5681ce3aebca..a78d962e2c70 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c @@ -88,7 +88,7 @@ struct netlink_sock { static inline struct netlink_sock *nlk_sk(struct sock *sk) { - return (struct netlink_sock *)sk; + return container_of(sk, struct netlink_sock, sk); } struct nl_pid_hash { |