Skip to content

Commit

Permalink
[SCSI] qla2xxx: Set the size of the host buffer used to fetch DCBX an…
Browse files Browse the repository at this point in the history
…d XGMAC parameters to 4K.

Signed-off-by: Giridhar Malavali <giridhar.malavali@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
  • Loading branch information
Giridhar Malavali authored and James Bottomley committed Dec 4, 2009
1 parent 29c5397 commit b5d0329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/scsi/qla2xxx/qla_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -2440,11 +2440,11 @@ struct qla_hw_data {
dma_addr_t edc_data_dma;
uint16_t edc_data_len;

#define XGMAC_DATA_SIZE PAGE_SIZE
#define XGMAC_DATA_SIZE 4096
void *xgmac_data;
dma_addr_t xgmac_data_dma;

#define DCBX_TLV_DATA_SIZE PAGE_SIZE
#define DCBX_TLV_DATA_SIZE 4096
void *dcbx_tlv;
dma_addr_t dcbx_tlv_dma;

Expand Down

0 comments on commit b5d0329

Please sign in to comment.