Commit 71f7a00b authored by Varun Prakash's avatar Varun Prakash Committed by David S. Miller
Browse files

cxgb4i,libcxgbi: add iSCSI DDP support



Add iSCSI DDP support in cxgb4i driver
using common iSCSI DDP Page Pod Manager.

Signed-off-by: default avatarVarun Prakash <varun@chelsio.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5999299f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
ccflags-y += -Idrivers/net/ethernet/chelsio/libcxgb

obj-$(CONFIG_SCSI_CXGB3_ISCSI)	+= libcxgbi.o cxgb3i/
obj-$(CONFIG_SCSI_CXGB4_ISCSI)	+= libcxgbi.o cxgb4i/
+1 −0
Original line number Diff line number Diff line
ccflags-y += -I$(srctree)/drivers/net/ethernet/chelsio/cxgb3
ccflags-y += -I$(srctree)/drivers/net/ethernet/chelsio/libcxgb

obj-$(CONFIG_SCSI_CXGB3_ISCSI) += cxgb3i.o
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ config SCSI_CXGB3_ISCSI
	select ETHERNET
	select NET_VENDOR_CHELSIO
	select CHELSIO_T3
	select CHELSIO_LIB
	select SCSI_ISCSI_ATTRS
	---help---
	  This driver supports iSCSI offload for the Chelsio T3 devices.
+1 −0
Original line number Diff line number Diff line
ccflags-y += -I$(srctree)/drivers/net/ethernet/chelsio/cxgb4
ccflags-y += -I$(srctree)/drivers/net/ethernet/chelsio/libcxgb

obj-$(CONFIG_SCSI_CXGB4_ISCSI) += cxgb4i.o
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ config SCSI_CXGB4_ISCSI
	select ETHERNET
	select NET_VENDOR_CHELSIO
	select CHELSIO_T4
	select CHELSIO_LIB
	select SCSI_ISCSI_ATTRS
	---help---
	  This driver supports iSCSI offload for the Chelsio T4 devices.
Loading