diff options
author | Abhijeet Joglekar <abjoglek@cisco.com> | 2011-06-13 21:21:01 -0700 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-06-29 16:05:41 -0500 |
commit | 0c79c74272b25bbcfb0149d5a4627ed768795d2d (patch) | |
tree | d9684dfd8a26ecc7192d7ee4a99cfb023d186468 /drivers/scsi/fnic/fnic.h | |
parent | 7bb66fc06eb8ac1b823f8221ff1eb574ec3bacb1 (diff) | |
download | talos-op-linux-0c79c74272b25bbcfb0149d5a4627ed768795d2d.tar.gz talos-op-linux-0c79c74272b25bbcfb0149d5a4627ed768795d2d.zip |
[SCSI] fnic: fix incorrect use of SLAB_CACHE_DMA flag
Driver was incorrectly using the SLAB_CACHE_DMA flag when creating a cache
for SGLs. fnic device does not have 24-bit DMA restrictions. Remove the flag
and allocations from ZONE_DMA.
Thanks to Roland Dreier and David Rientjes for pointing out the bug.
Signed-off-by: Abhijeet Joglekar <abjoglek@cisco.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/fnic/fnic.h')
-rw-r--r-- | drivers/scsi/fnic/fnic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fnic/fnic.h b/drivers/scsi/fnic/fnic.h index 671cde9d4060..95a5ba29320d 100644 --- a/drivers/scsi/fnic/fnic.h +++ b/drivers/scsi/fnic/fnic.h @@ -37,7 +37,7 @@ #define DRV_NAME "fnic" #define DRV_DESCRIPTION "Cisco FCoE HBA Driver" -#define DRV_VERSION "1.5.0.1" +#define DRV_VERSION "1.5.0.2" #define PFX DRV_NAME ": " #define DFX DRV_NAME "%d: " |