Commit 8676c4df authored by Thorsten Blum's avatar Thorsten Blum Committed by Steve French
Browse files

cifs: Use str_yes_no() helper in cifs_ses_add_channel()



Remove hard-coded strings by using the str_yes_no() helper function.

Signed-off-by: default avatarThorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent bb57c81e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -488,11 +488,11 @@ cifs_ses_add_channel(struct cifs_ses *ses,

	if (iface->sockaddr.ss_family == AF_INET)
		cifs_dbg(FYI, "adding channel to ses %p (speed:%zu bps rdma:%s ip:%pI4)\n",
			 ses, iface->speed, iface->rdma_capable ? "yes" : "no",
			 ses, iface->speed, str_yes_no(iface->rdma_capable),
			 &ipv4->sin_addr);
	else
		cifs_dbg(FYI, "adding channel to ses %p (speed:%zu bps rdma:%s ip:%pI6)\n",
			 ses, iface->speed, iface->rdma_capable ? "yes" : "no",
			 ses, iface->speed, str_yes_no(iface->rdma_capable),
			 &ipv6->sin6_addr);

	/*