diff options
author | Hiral Shah <hishah@cisco.com> | 2014-11-10 15:54:33 -0500 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-11-20 03:10:23 -0500 |
commit | 042b356a5fcf3c5a99c34208eefc572454a330bf (patch) | |
tree | 8fb22d977359820b024433d50ca04f9f29c230dd | |
parent | a232bfbe195df4b85ff9e5876534fe4081d9fd9a (diff) |
Fnic: Memcopy only mimumum of data or trace buffer
In case of receive path, we do not have eth header or fcoe header available
when we take a trace so we fill the fc trace buffer with 0xff for both
values. We copy only mimimum of received data or trace buffer size -
fc header - eth and fcoe header
- Increment fnic version from 1.6.0.12 to 1.6.0.13
Signed-off-by: Hiral Shah <hishah@cisco.com>
Signed-off-by: Sesidhar Baddela <sebaddel@cisco.com>
Signed-off-by: Anil Chintalapati <achintal@cisco.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r-- | drivers/scsi/fnic/fnic.h | 2 | ||||
-rw-r--r-- | drivers/scsi/fnic/fnic_trace.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/fnic/fnic.h b/drivers/scsi/fnic/fnic.h index 69dee6838678..dbc69ad2d1c4 100644 --- a/drivers/scsi/fnic/fnic.h +++ b/drivers/scsi/fnic/fnic.h | |||
@@ -39,7 +39,7 @@ | |||
39 | 39 | ||
40 | #define DRV_NAME "fnic" | 40 | #define DRV_NAME "fnic" |
41 | #define DRV_DESCRIPTION "Cisco FCoE HBA Driver" | 41 | #define DRV_DESCRIPTION "Cisco FCoE HBA Driver" |
42 | #define DRV_VERSION "1.6.0.12" | 42 | #define DRV_VERSION "1.6.0.13" |
43 | #define PFX DRV_NAME ": " | 43 | #define PFX DRV_NAME ": " |
44 | #define DFX DRV_NAME "%d: " | 44 | #define DFX DRV_NAME "%d: " |
45 | 45 | ||
diff --git a/drivers/scsi/fnic/fnic_trace.c b/drivers/scsi/fnic/fnic_trace.c index acf1f95cb5c5..65a9bde26974 100644 --- a/drivers/scsi/fnic/fnic_trace.c +++ b/drivers/scsi/fnic/fnic_trace.c | |||
@@ -624,12 +624,12 @@ int fnic_fc_trace_set_data(u32 host_no, u8 frame_type, | |||
624 | if (frame_type == FNIC_FC_RECV) { | 624 | if (frame_type == FNIC_FC_RECV) { |
625 | eth_fcoe_hdr_len = sizeof(struct ethhdr) + | 625 | eth_fcoe_hdr_len = sizeof(struct ethhdr) + |
626 | sizeof(struct fcoe_hdr); | 626 | sizeof(struct fcoe_hdr); |
627 | fc_trc_frame_len = fc_trc_frame_len + eth_fcoe_hdr_len; | ||
628 | memset((char *)fc_trace, 0xff, eth_fcoe_hdr_len); | 627 | memset((char *)fc_trace, 0xff, eth_fcoe_hdr_len); |
629 | /* Copy the rest of data frame */ | 628 | /* Copy the rest of data frame */ |
630 | memcpy((char *)(fc_trace + eth_fcoe_hdr_len), (void *)frame, | 629 | memcpy((char *)(fc_trace + eth_fcoe_hdr_len), (void *)frame, |
631 | min_t(u8, fc_trc_frame_len, | 630 | min_t(u8, fc_trc_frame_len, |
632 | (u8)(FC_TRC_SIZE_BYTES - FC_TRC_HEADER_SIZE))); | 631 | (u8)(FC_TRC_SIZE_BYTES - FC_TRC_HEADER_SIZE |
632 | - eth_fcoe_hdr_len))); | ||
633 | } else { | 633 | } else { |
634 | memcpy((char *)fc_trace, (void *)frame, | 634 | memcpy((char *)fc_trace, (void *)frame, |
635 | min_t(u8, fc_trc_frame_len, | 635 | min_t(u8, fc_trc_frame_len, |