diff options
author | Joe Eykholt <jeykholt@cisco.com> | 2009-11-03 14:48:50 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-12-04 13:01:15 -0500 |
commit | 6049d95a8a223e2dc3a476dea9f0fbc9b580f38f (patch) | |
tree | 10781493611d633cba23b2a0d929726ee3434865 /include/scsi | |
parent | 59d925168457805572f40fb12bd399e89775b3ff (diff) |
[SCSI] libfc: fix RNN_ID smashing skb payload
The code that filled in the name server RNN_ID (register node name)
request had somehow gotten a line in it from the RFT_ID code
which copies 32 bytes of data over the relatively short payload.
This caused some corruption and hangs.
Simply deleted the extraneous line.
Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/fc_encode.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/scsi/fc_encode.h b/include/scsi/fc_encode.h index 9afcbb94ec30..c8968d31c610 100644 --- a/include/scsi/fc_encode.h +++ b/include/scsi/fc_encode.h | |||
@@ -134,7 +134,6 @@ static inline int fc_ct_fill(struct fc_lport *lport, | |||
134 | ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rn_id)); | 134 | ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rn_id)); |
135 | hton24(ct->payload.rn.fr_fid.fp_fid, | 135 | hton24(ct->payload.rn.fr_fid.fp_fid, |
136 | fc_host_port_id(lport->host)); | 136 | fc_host_port_id(lport->host)); |
137 | ct->payload.rft.fts = lport->fcts; | ||
138 | put_unaligned_be64(lport->wwnn, &ct->payload.rn.fr_wwn); | 137 | put_unaligned_be64(lport->wwnn, &ct->payload.rn.fr_wwn); |
139 | break; | 138 | break; |
140 | 139 | ||