From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758190AbWK0NUc (ORCPT ); Mon, 27 Nov 2006 08:20:32 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758191AbWK0NUc (ORCPT ); Mon, 27 Nov 2006 08:20:32 -0500 Received: from mx1.redhat.com ([66.187.233.31]:52617 "EHLO mx1.redhat.com") by vger.kernel.org with ESMTP id S1758190AbWK0NUb (ORCPT ); Mon, 27 Nov 2006 08:20:31 -0500 Subject: Re: [GFS2] Fix Kconfig wrt CRC32 [8/9] From: Steven Whitehouse To: Randy Dunlap Cc: Patrick Caulfield , linux-kernel@vger.kernel.org, cluster-devel@redhat.com, Toralf =?ISO-8859-1?Q?F=F6rster?= In-Reply-To: <20061124214338.0e4d0510.randy.dunlap@oracle.com> References: <1164360889.3392.146.camel@quoit.chygwyn.com> <20061124214338.0e4d0510.randy.dunlap@oracle.com> Content-Type: text/plain; charset=UTF-8 Organization: Red Hat (UK) Ltd Date: Mon, 27 Nov 2006 13:24:14 +0000 Message-Id: <1164633855.3392.167.camel@quoit.chygwyn.com> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 (2.2.2-5) Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Fri, 2006-11-24 at 21:43 -0800, Randy Dunlap wrote: > On Fri, 24 Nov 2006 09:34:49 +0000 Steven Whitehouse wrote: > > > >From 6f788fd00c82533d4cd5587a9706f8468658a24d Mon Sep 17 00:00:00 2001 > > From: Steven Whitehouse > > Date: Mon, 20 Nov 2006 10:04:49 -0500 > > Subject: [PATCH] [GFS2] Fix Kconfig wrt CRC32 > > Content-Type: text/plain; charset=UTF-8 > > Content-Transfer-Encoding: 8bit > > > > GFS2 requires the CRC32 library function. This was reported by > > Toralf Förster. > > > > Cc: Toralf Förster > > Signed-off-by: Steven Whitehouse > > --- > > fs/gfs2/Kconfig | 1 + > > 1 files changed, 1 insertions(+), 0 deletions(-) > > > > diff --git a/fs/gfs2/Kconfig b/fs/gfs2/Kconfig > > index 8c27de8..c0791cb 100644 > > --- a/fs/gfs2/Kconfig > > +++ b/fs/gfs2/Kconfig > > @@ -2,6 +2,7 @@ config GFS2_FS > > tristate "GFS2 file system support" > > depends on EXPERIMENTAL > > select FS_POSIX_ACL > > + select CRC32 > > help > > A cluster filesystem. > > Hi, > > Do you also have Kconfig patches for DLM needing SYSFS > and DLM needing CONFIG_NET ? > > --- > ~Randy My original reply to this seemed to disappear into my email system somewhere, so apologies if this is the second copy you get. The DLM shouldn't depend upon SYSFS at all. I believe that its perfectly ok whether or not thats compiled in. There is a patch relating to the Kconfig for DLM which is in my -nmw tree: http://www.kernel.org/git/?p=linux/kernel/git/steve/gfs2-2.6-nmw.git;a=commitdiff;h=8758fbc8724c2da8a6a062f2b61d79c8f2a55c5f This applies after the patch adding the TCP communications layer to DLM which is also in -nmw. The patches in -nmw (next merge window) are a superset of the ones I just requested that Linus pull since it contains the newer features and more involved bug fixes and clean ups. I believe that the Kconfig in -nmw is correct for DLM, though I'm willing to be proved wrong. I'm also copying in Patrick in case he wants to comment further as its more his area than mine, Steve.