diff options
author | Andy Grover <agrover@redhat.com> | 2012-07-12 20:34:54 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-07-16 20:35:22 -0400 |
commit | ee1b1b9c3db29643eb82a6b52694555c91af2f97 (patch) | |
tree | 3329b526e53a31de1651437fbac6d77115e2a748 /drivers/target/iscsi | |
parent | af8772926f019b7bddd7477b8de5f3b0f12bad21 (diff) |
target: Remove unneeded double parentheses
Signed-off-by: Andy Grover <agrover@redhat.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/iscsi')
-rw-r--r-- | drivers/target/iscsi/iscsi_target.c | 2 | ||||
-rw-r--r-- | drivers/target/iscsi/iscsi_target_login.c | 6 | ||||
-rw-r--r-- | drivers/target/iscsi/iscsi_target_tpg.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/drivers/target/iscsi/iscsi_target.c b/drivers/target/iscsi/iscsi_target.c index 0aa04a0b91de..5d56ce44a6c5 100644 --- a/drivers/target/iscsi/iscsi_target.c +++ b/drivers/target/iscsi/iscsi_target.c | |||
@@ -2685,7 +2685,7 @@ static int iscsit_send_logout_response( | |||
2685 | */ | 2685 | */ |
2686 | logout_conn = iscsit_get_conn_from_cid_rcfr(sess, | 2686 | logout_conn = iscsit_get_conn_from_cid_rcfr(sess, |
2687 | cmd->logout_cid); | 2687 | cmd->logout_cid); |
2688 | if ((logout_conn)) { | 2688 | if (logout_conn) { |
2689 | iscsit_connection_reinstatement_rcfr(logout_conn); | 2689 | iscsit_connection_reinstatement_rcfr(logout_conn); |
2690 | iscsit_dec_conn_usage_count(logout_conn); | 2690 | iscsit_dec_conn_usage_count(logout_conn); |
2691 | } | 2691 | } |
diff --git a/drivers/target/iscsi/iscsi_target_login.c b/drivers/target/iscsi/iscsi_target_login.c index a3656c9903a1..1434110b052c 100644 --- a/drivers/target/iscsi/iscsi_target_login.c +++ b/drivers/target/iscsi/iscsi_target_login.c | |||
@@ -518,7 +518,7 @@ int iscsi_login_post_auth_non_zero_tsih( | |||
518 | * initiator and release the new connection. | 518 | * initiator and release the new connection. |
519 | */ | 519 | */ |
520 | conn_ptr = iscsit_get_conn_from_cid_rcfr(sess, cid); | 520 | conn_ptr = iscsit_get_conn_from_cid_rcfr(sess, cid); |
521 | if ((conn_ptr)) { | 521 | if (conn_ptr) { |
522 | pr_err("Connection exists with CID %hu for %s," | 522 | pr_err("Connection exists with CID %hu for %s," |
523 | " performing connection reinstatement.\n", | 523 | " performing connection reinstatement.\n", |
524 | conn_ptr->cid, sess->sess_ops->InitiatorName); | 524 | conn_ptr->cid, sess->sess_ops->InitiatorName); |
@@ -539,7 +539,7 @@ int iscsi_login_post_auth_non_zero_tsih( | |||
539 | if (sess->sess_ops->ErrorRecoveryLevel == 2) { | 539 | if (sess->sess_ops->ErrorRecoveryLevel == 2) { |
540 | cr = iscsit_get_inactive_connection_recovery_entry( | 540 | cr = iscsit_get_inactive_connection_recovery_entry( |
541 | sess, cid); | 541 | sess, cid); |
542 | if ((cr)) { | 542 | if (cr) { |
543 | pr_debug("Performing implicit logout" | 543 | pr_debug("Performing implicit logout" |
544 | " for connection recovery on CID: %hu\n", | 544 | " for connection recovery on CID: %hu\n", |
545 | conn->cid); | 545 | conn->cid); |
@@ -1081,7 +1081,7 @@ static int __iscsi_target_login_thread(struct iscsi_np *np) | |||
1081 | goto new_sess_out; | 1081 | goto new_sess_out; |
1082 | 1082 | ||
1083 | zero_tsih = (pdu->tsih == 0x0000); | 1083 | zero_tsih = (pdu->tsih == 0x0000); |
1084 | if ((zero_tsih)) { | 1084 | if (zero_tsih) { |
1085 | /* | 1085 | /* |
1086 | * This is the leading connection of a new session. | 1086 | * This is the leading connection of a new session. |
1087 | * We wait until after authentication to check for | 1087 | * We wait until after authentication to check for |
diff --git a/drivers/target/iscsi/iscsi_target_tpg.c b/drivers/target/iscsi/iscsi_target_tpg.c index 879d8d0fa3fe..142989598aea 100644 --- a/drivers/target/iscsi/iscsi_target_tpg.c +++ b/drivers/target/iscsi/iscsi_target_tpg.c | |||
@@ -593,7 +593,7 @@ int iscsit_ta_authentication(struct iscsi_portal_group *tpg, u32 authentication) | |||
593 | } else { | 593 | } else { |
594 | snprintf(buf1, sizeof(buf1), "%s", param->value); | 594 | snprintf(buf1, sizeof(buf1), "%s", param->value); |
595 | none = strstr(buf1, NONE); | 595 | none = strstr(buf1, NONE); |
596 | if ((none)) | 596 | if (none) |
597 | goto out; | 597 | goto out; |
598 | strncat(buf1, ",", strlen(",")); | 598 | strncat(buf1, ",", strlen(",")); |
599 | strncat(buf1, NONE, strlen(NONE)); | 599 | strncat(buf1, NONE, strlen(NONE)); |