From: Mike Christie <michaelc@cs.wisc.edu>
To: linux-scsi@vger.kernel.org
Subject: [PATCH 1/10][RFC] linux-iscsi driver
Date: Mon, 10 Jan 2005 14:56:45 -0800 [thread overview]
Message-ID: <41E3082D.1@cs.wisc.edu> (raw)
[-- Attachment #1: Type: text/plain, Size: 25 bytes --]
Add Makefile and Kconfig
[-- Attachment #2: 01-kconfig-mk.patch --]
[-- Type: text/x-patch, Size: 3055 bytes --]
diff -Naurp scsi-misc-2.6.orig/drivers/scsi/iscsi-sfnet/Kconfig scsi-misc-2.6.test/drivers/scsi/iscsi-sfnet/Kconfig
--- scsi-misc-2.6.orig/drivers/scsi/iscsi-sfnet/Kconfig 1969-12-31 16:00:00.000000000 -0800
+++ scsi-misc-2.6.test/drivers/scsi/iscsi-sfnet/Kconfig 2005-01-05 01:15:07.712291051 -0800
@@ -0,0 +1,25 @@
+config SCSI_ISCSI_SFNET
+ tristate "Software iSCSI support"
+ depends on SCSI && INET
+ select SCSI_ISCSI_ATTRS
+ select CRYPTO
+ select CRYPTO_MD5
+ select CRYPTO_CRC32C
+ ---help---
+ To compile this driver as a module, choose M here: the
+ module will be called iscsi_sfnet.
+
+ The iSCSI Driver provides a host with the ability to access
+ storage through an IP network. The driver uses the iSCSI
+ protocol to transport SCSI requests and responses over an IP
+ network between the host (the "initiator") and "targets".
+ Architecturally, the iSCSI driver combines with the host's
+ TCP/IP stack, network drivers, and Network Interface Card
+ (NIC) to provide the same functions as a SCSI or a Fibre
+ Channel (FC) adapter driver with a Host Bus Adapter (HBA).
+
+ The userspace component needed to initialize the driver,
+ documentation, and sample configuration files can be found
+ here:
+
+ http://linux-iscsi.sourceforge.net
diff -Naurp scsi-misc-2.6.orig/drivers/scsi/iscsi-sfnet/Makefile scsi-misc-2.6.test/drivers/scsi/iscsi-sfnet/Makefile
--- scsi-misc-2.6.orig/drivers/scsi/iscsi-sfnet/Makefile 1969-12-31 16:00:00.000000000 -0800
+++ scsi-misc-2.6.test/drivers/scsi/iscsi-sfnet/Makefile 2005-01-05 01:15:18.661906339 -0800
@@ -0,0 +1,16 @@
+#
+# Makefile for Software iSCSI driver
+#
+obj-$(CONFIG_SCSI_ISCSI_SFNET) += iscsi_sfnet.o
+iscsi_sfnet-objs := iscsi-initiator.o
+iscsi_sfnet-objs += iscsi-attr.o \
+ iscsi-session.o \
+ iscsi-task.o \
+ iscsi-portal.o \
+ iscsi-ioctl.o \
+ iscsi-network.o \
+ iscsi-recv-pdu.o \
+ iscsi-xmit-pdu.o \
+ iscsi-auth.o \
+ iscsi-login.o \
+ iscsi-auth-client.o
diff -Naurp scsi-misc-2.6.orig/drivers/scsi/Kconfig scsi-misc-2.6.test/drivers/scsi/Kconfig
--- scsi-misc-2.6.orig/drivers/scsi/Kconfig 2005-01-05 01:13:32.951273657 -0800
+++ scsi-misc-2.6.test/drivers/scsi/Kconfig 2005-01-05 01:14:37.771077311 -0800
@@ -854,6 +854,8 @@ config SCSI_PPA
To compile this driver as a module, choose M here: the
module will be called ppa.
+source "drivers/scsi/iscsi-sfnet/Kconfig"
+
config SCSI_IMM
tristate "IOMEGA parallel port (imm - newer drives)"
depends on SCSI && PARPORT
diff -Naurp scsi-misc-2.6.orig/drivers/scsi/Makefile scsi-misc-2.6.test/drivers/scsi/Makefile
--- scsi-misc-2.6.orig/drivers/scsi/Makefile 2005-01-05 01:13:33.221239510 -0800
+++ scsi-misc-2.6.test/drivers/scsi/Makefile 2005-01-05 01:14:33.208654238 -0800
@@ -132,6 +132,7 @@ obj-$(CONFIG_SCSI_SATA_SIS) += libata.o
obj-$(CONFIG_SCSI_SATA_SX4) += libata.o sata_sx4.o
obj-$(CONFIG_SCSI_SATA_NV) += libata.o sata_nv.o
obj-$(CONFIG_SCSI_SATA_ULI) += libata.o sata_uli.o
+obj-$(CONFIG_SCSI_ISCSI_SFNET) += iscsi-sfnet/
obj-$(CONFIG_ARM) += arm/
reply other threads:[~2005-01-10 22:56 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=41E3082D.1@cs.wisc.edu \
--to=michaelc@cs.wisc.edu \
--cc=linux-scsi@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.