diff --git a/net/sunrpc/sunrpc.h b/net/sunrpc/sunrpc.h index 2f59464e6524..30dd2c8efadb 100644 --- a/net/sunrpc/sunrpc.h +++ b/net/sunrpc/sunrpc.h @@ -44,7 +44,7 @@ static inline int sock_is_loopback(struct sock *sk) rcu_read_lock(); dst = rcu_dereference(sk->sk_dst_cache); if (dst && dst->dev && - (dst->dev->features & NETIF_F_LOOPBACK)) + (netdev_feature_test_bit(NETIF_F_LOOPBACK_BIT, dst->dev->features))) loopback = 1; rcu_read_unlock(); return loopback;
Use netdev_feature_xxx helpers to replace the logical operation for netdev features. Signed-off-by: Jian Shen <shenjian15@huawei.com> --- net/sunrpc/sunrpc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)