iscsi-target: Drop left-over iscsi_conn->bad_hdr
authorNicholas Bellinger <nab@linux-iscsi.org>
Tue, 25 Jun 2013 05:26:02 +0000 (22:26 -0700)
committerNicholas Bellinger <nab@linux-iscsi.org>
Thu, 4 Jul 2013 02:44:33 +0000 (19:44 -0700)
All REJECT response setup of the rejected payload is now done using
on-demand cmd->buf_ptr allocations.

Go ahead and remove dead iscsi_conn->bad_hdr usage rx_opcode path

Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/iscsi/iscsi_target.c
drivers/target/iscsi/iscsi_target_core.h

index f2c3d4a..dc2c056 100644 (file)
@@ -4105,11 +4105,6 @@ restart:
                        goto transport_err;
                }
 
-               /*
-                * Set conn->bad_hdr for use with REJECT PDUs.
-                */
-               memcpy(&conn->bad_hdr, &buffer, ISCSI_HDR_LEN);
-
                if (conn->conn_ops->HeaderDigest) {
                        iov.iov_base    = &digest;
                        iov.iov_len     = ISCSI_CRC_LEN;
index 391283c..caa0ad9 100644 (file)
@@ -532,8 +532,6 @@ struct iscsi_conn {
        u32                     of_marker;
        /* Used for calculating OFMarker offset to next PDU */
        u32                     of_marker_offset;
-       /* Complete Bad PDU for sending reject */
-       unsigned char           bad_hdr[ISCSI_HDR_LEN];
 #define IPV6_ADDRESS_SPACE                             48
        unsigned char           login_ip[IPV6_ADDRESS_SPACE];
        unsigned char           local_ip[IPV6_ADDRESS_SPACE];