[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>
This commit is contained in:
Denis Cheng 2007-08-28 15:41:11 -07:00 committed by David S. Miller
parent f7944fb191
commit 32b21e034b
1 changed files with 1 additions and 1 deletions

View File

@ -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 {