summaryrefslogtreecommitdiffstats
path: root/include/net/sock.h
diff options
context:
space:
mode:
authorAkinobu Mita <mita@miraclelinux.com>2006-04-29 00:21:23 +0200
committerDavid S. Miller <davem@sunset.davemloft.net>2006-04-30 03:33:15 +0200
commitda753beaeb1446aa87bcca7e8a0026633a8914f0 (patch)
tree910ca47bce30c4ef5df66c0d6545051f61d2d49e /include/net/sock.h
parent[IPV4]: inet_init() -> fs_initcall (diff)
downloadlinux-da753beaeb1446aa87bcca7e8a0026633a8914f0.tar.xz
linux-da753beaeb1446aa87bcca7e8a0026633a8914f0.zip
[NET]: use hlist_unhashed()
Use hlist_unhashed() rather than accessing inside data structure. Signed-off-by: Akinobu Mita <mita@miraclelinux.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sock.h')
-rw-r--r--include/net/sock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/sock.h b/include/net/sock.h
index ff8b0dad7b0f..c9fad6fb629b 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -279,7 +279,7 @@ static inline int sk_unhashed(const struct sock *sk)
static inline int sk_hashed(const struct sock *sk)
{
- return sk->sk_node.pprev != NULL;
+ return !sk_unhashed(sk);
}
static __inline__ void sk_node_init(struct hlist_node *node)