Commit fc61a5db authored by Namjae Jeon's avatar Namjae Jeon Committed by Steve French
Browse files

ksmbd: add debug print for rdma capable



Add debug print to know if netdevice is RDMA-capable network adapter.

Signed-off-by: default avatarNamjae Jeon <linkinjeon@kernel.org>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent f75f8bdd
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2289,6 +2289,9 @@ bool ksmbd_rdma_capable_netdev(struct net_device *netdev)
		}
	}

	ksmbd_debug(RDMA, "netdev(%s) rdma capable : %s\n",
		    netdev->name, rdma_capable ? "true" : "false");

	return rdma_capable;
}