From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758577Ab1ELUMQ (ORCPT ); Thu, 12 May 2011 16:12:16 -0400 Received: from mail.linux-iscsi.org ([67.23.28.174]:50075 "EHLO linux-iscsi.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755077Ab1ELUMP (ORCPT ); Thu, 12 May 2011 16:12:15 -0400 Subject: Re: [PATCH-v3 14/14] iscsi-target: Add Makefile/Kconfig and update TCM top level From: "Nicholas A. Bellinger" To: Randy Dunlap Cc: linux-kernel , linux-scsi , James Bottomley , Christoph Hellwig , Linus Torvalds , Hannes Reinecke , FUJITA Tomonori , Andy Grover , Mike Christie , Boaz Harrosh , Andrew Morton , Martin Svec In-Reply-To: <20110512081357.106419c0.randy.dunlap@oracle.com> References: <1305184041-32189-1-git-send-email-nab@linux-iscsi.org> <1305184041-32189-15-git-send-email-nab@linux-iscsi.org> <20110512081357.106419c0.randy.dunlap@oracle.com> Content-Type: text/plain Date: Thu, 12 May 2011 13:04:10 -0700 Message-Id: <1305230650.19744.188.camel@haakon2.linux-iscsi.org> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 2011-05-12 at 08:13 -0700, Randy Dunlap wrote: > On Thu, 12 May 2011 00:07:21 -0700 Nicholas A. Bellinger wrote: > > > From: Nicholas Bellinger > > > > Add Makefile/Kconfig and update drivers/target/[Makefile,Kconfig] > > to include the fabric module. > > > > Signed-off-by: Nicholas A. Bellinger > > --- > > drivers/target/Kconfig | 1 + > > drivers/target/Makefile | 1 + > > drivers/target/iscsi/Kconfig | 18 ++++++++++++++++++ > > drivers/target/iscsi/Makefile | 20 ++++++++++++++++++++ > > 4 files changed, 40 insertions(+), 0 deletions(-) > > create mode 100644 drivers/target/iscsi/Kconfig > > create mode 100644 drivers/target/iscsi/Makefile > > > > diff --git a/drivers/target/iscsi/Kconfig b/drivers/target/iscsi/Kconfig > > new file mode 100644 > > index 0000000..abdb8f9 > > --- /dev/null > > +++ b/drivers/target/iscsi/Kconfig > > @@ -0,0 +1,18 @@ > > +config ISCSI_TARGET > > + tristate "Linux-iSCSI.org iSCSI Target Mode Stack" > > + depends on m > > + select CRYPTO > > + select CRYPTO_CRC32C > > + select CRYPTO_CRC32C_INTEL if X86 > > + help > > + Say M here to enable the ConfigFS enabled Linux-iSCSI.org iSCSI > > + Target Mode Stack. > > Just curious: why is this available only as a loadable module? > Hi Randy, Thanks for your review. Btw, there is no hard-requirement for iscsi-target to be built as a module here.. Dropping the bogus 'depends on m' section from the above and pushing into lio-core-2.6.git now. James, can you please include this minor change into the initial squashed merge, or do you prefer this be included in a follow-up respin..? Thanks! --nab