-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scsi: qedi: Add QLogic FastLinQ offload iSCSI driver framework.
The QLogic FastLinQ Driver for iSCSI (qedi) is the iSCSI specific module for 41000 Series Converged Network Adapters by QLogic. This patch consists of following changes: - MAINTAINERS Makefile and Kconfig changes for qedi, - PCI driver registration, - iSCSI host level initialization, - Debugfs and log level infrastructure. The following indiviual changes are merged into this commit: qedi: Add LL2 iSCSI interface for offload iSCSI. qedi: Add support for iSCSI session management. qedi: Add support for data path. Signed-off-by: Nilesh Javali <[email protected]> Signed-off-by: Adheer Chandravanshi <[email protected]> Signed-off-by: Chad Dupuis <[email protected]> Signed-off-by: Saurav Kashyap <[email protected]> Signed-off-by: Arun Easi <[email protected]> Signed-off-by: Manish Rangankar <[email protected]> Reviewed-by: Johannes Thumshirn <[email protected]> Reviewed-by: Hannes Reinecke <[email protected]> Reviewed-by: Martin K. Petersen <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
- Loading branch information
1 parent
775a2e2
commit ace7f46
Showing
17 changed files
with
7,470 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10079,6 +10079,12 @@ F: drivers/net/ethernet/qlogic/qed/ | |
F: include/linux/qed/ | ||
F: drivers/net/ethernet/qlogic/qede/ | ||
|
||
QLOGIC QL41xxx ISCSI DRIVER | ||
M: [email protected] | ||
L: [email protected] | ||
S: Supported | ||
F: drivers/scsi/qedi/ | ||
|
||
QNX4 FILESYSTEM | ||
M: Anders Larsen <[email protected]> | ||
W: http://www.alarsen.net/linux/qnx4fs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
config QEDI | ||
tristate "QLogic QEDI 25/40/100Gb iSCSI Initiator Driver Support" | ||
depends on PCI && SCSI | ||
depends on QED | ||
select SCSI_ISCSI_ATTRS | ||
select QED_LL2 | ||
select QED_ISCSI | ||
---help--- | ||
This driver supports iSCSI offload for the QLogic FastLinQ | ||
41000 Series Converged Network Adapters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
obj-$(CONFIG_QEDI) := qedi.o | ||
qedi-y := qedi_main.o qedi_iscsi.o qedi_fw.o qedi_sysfs.o \ | ||
qedi_dbg.o | ||
|
||
qedi-$(CONFIG_DEBUG_FS) += qedi_debugfs.o |
Oops, something went wrong.