mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 01:04:08 +08:00
[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>
This commit is contained in:
parent
ab0049b4a2
commit
02b3d34631
@ -104,7 +104,7 @@ static struct lock_class_key svc_slock_key[2];
|
|||||||
static inline void svc_reclassify_socket(struct socket *sock)
|
static inline void svc_reclassify_socket(struct socket *sock)
|
||||||
{
|
{
|
||||||
struct sock *sk = sock->sk;
|
struct sock *sk = sock->sk;
|
||||||
BUG_ON(sk->sk_lock.owner != NULL);
|
BUG_ON(sock_owned_by_user(sk));
|
||||||
switch (sk->sk_family) {
|
switch (sk->sk_family) {
|
||||||
case AF_INET:
|
case AF_INET:
|
||||||
sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
|
sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
|
||||||
|
@ -1186,7 +1186,7 @@ static struct lock_class_key xs_slock_key[2];
|
|||||||
static inline void xs_reclassify_socket(struct socket *sock)
|
static inline void xs_reclassify_socket(struct socket *sock)
|
||||||
{
|
{
|
||||||
struct sock *sk = sock->sk;
|
struct sock *sk = sock->sk;
|
||||||
BUG_ON(sk->sk_lock.owner != NULL);
|
BUG_ON(sock_owned_by_user(sk));
|
||||||
switch (sk->sk_family) {
|
switch (sk->sk_family) {
|
||||||
case AF_INET:
|
case AF_INET:
|
||||||
sock_lock_init_class_and_name(sk, "slock-AF_INET-NFS",
|
sock_lock_init_class_and_name(sk, "slock-AF_INET-NFS",
|
||||||
|
Loading…
Reference in New Issue
Block a user