diff options
author | John Heffner <jheffner@psc.edu> | 2007-09-12 04:42:12 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:49:00 -0400 |
commit | 02b3d34631831a19ee691516e233756b270eac6d (patch) | |
tree | 28ddf5beadfd1f1954ca5ada9ac9d337fa7ce9e2 /net/sunrpc/xprtsock.c | |
parent | ab0049b4a2f66074dff6af851b35bba888f53972 (diff) |
[NET] Cleanup: Use sock_owned_by_user() macro
Changes asserts in sunrpc to use sock_owned_by_user() macro instead of
referencing sock_lock.owner directly.
Signed-off-by: John Heffner <jheffner@psc.edu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sunrpc/xprtsock.c')
-rw-r--r-- | net/sunrpc/xprtsock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c index 4ae7eed7f617..282efd447a61 100644 --- a/net/sunrpc/xprtsock.c +++ b/net/sunrpc/xprtsock.c | |||
@@ -1186,7 +1186,7 @@ static struct lock_class_key xs_slock_key[2]; | |||
1186 | static inline void xs_reclassify_socket(struct socket *sock) | 1186 | static inline void xs_reclassify_socket(struct socket *sock) |
1187 | { | 1187 | { |
1188 | struct sock *sk = sock->sk; | 1188 | struct sock *sk = sock->sk; |
1189 | BUG_ON(sk->sk_lock.owner != NULL); | 1189 | BUG_ON(sock_owned_by_user(sk)); |
1190 | switch (sk->sk_family) { | 1190 | switch (sk->sk_family) { |
1191 | case AF_INET: | 1191 | case AF_INET: |
1192 | sock_lock_init_class_and_name(sk, "slock-AF_INET-NFS", | 1192 | sock_lock_init_class_and_name(sk, "slock-AF_INET-NFS", |