net/smc: remove redundant code in smc_connect_check_aclc
authorZhengchao Shao <shaozhengchao@huawei.com>
Tue, 30 Jul 2024 01:25:05 +0000 (09:25 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 31 Jul 2024 10:48:58 +0000 (11:48 +0100)
When the SMC client perform CLC handshake, it will check whether
the clc header type is correct in receiving SMC_CLC_ACCEPT packet.
The specific invoking path is as follows:
__smc_connect
  smc_connect_clc
    smc_clc_wait_msg
      smc_clc_msg_hdr_valid
        smc_clc_msg_acc_conf_valid
Therefore, the smc_connect_check_aclc interface invoked by
__smc_connect does not need to check type again.

Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/smc/af_smc.c

index 83f5a184997162b92ae1009eb6ba862e22338d6d..6f82e4d8fda47762503a5c0dd64dfef45505ab1a 100644 (file)
@@ -1466,10 +1466,6 @@ connect_abort:
 static int smc_connect_check_aclc(struct smc_init_info *ini,
                                  struct smc_clc_msg_accept_confirm *aclc)
 {
-       if (aclc->hdr.typev1 != SMC_TYPE_R &&
-           aclc->hdr.typev1 != SMC_TYPE_D)
-               return SMC_CLC_DECL_MODEUNSUPP;
-
        if (aclc->hdr.version >= SMC_V2) {
                if ((aclc->hdr.typev1 == SMC_TYPE_R &&
                     !smcr_indicated(ini->smc_type_v2)) ||