diff mbox series

fs: smb: client: Replace the ternary conditional operator

Message ID 20230612052123.2775-1-luhongfei@vivo.com
State New
Headers show
Series fs: smb: client: Replace the ternary conditional operator | expand

Commit Message

Lu Hongfei June 12, 2023, 5:21 a.m. UTC
It would be better to replace the traditional ternary conditional
operator with min() in _smbd_get_connection

Signed-off-by: Lu Hongfei <luhongfei@vivo.com>
---
 fs/smb/client/smbdirect.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/fs/smb/client/smbdirect.c b/fs/smb/client/smbdirect.c
index 2a2aec8c6112..69f9023f89f9
--- a/fs/smb/client/smbdirect.c
+++ b/fs/smb/client/smbdirect.c
@@ -1582,10 +1582,7 @@  static struct smbd_connection *_smbd_get_connection(
 	conn_param.initiator_depth = 0;
 
 	conn_param.responder_resources =
-		info->id->device->attrs.max_qp_rd_atom
-			< SMBD_CM_RESPONDER_RESOURCES ?
-		info->id->device->attrs.max_qp_rd_atom :
-		SMBD_CM_RESPONDER_RESOURCES;
+		min(info->id->device->attrs.max_qp_rd_atom, SMBD_CM_RESPONDER_RESOURCES);
 	info->responder_resources = conn_param.responder_resources;
 	log_rdma_mr(INFO, "responder_resources=%d\n",
 		info->responder_resources);