linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs/Kconfig: more consistent configuration of XFS
@ 2005-04-28  7:55 aq
  2005-04-28  8:05 ` Chris Wedgwood
  2005-04-28  8:09 ` Christoph Hellwig
  0 siblings, 2 replies; 10+ messages in thread
From: aq @ 2005-04-28  7:55 UTC (permalink / raw)
  To: Andrew Morton, hch; +Cc: lkml

[-- Attachment #1: Type: text/plain, Size: 986 bytes --]

hello,

At the moment, the configuration interface of Filesystem is not very consistent:

- All other filesystem configurations (like Reiserfs, JFS, ext3,...)
is in fs/Kconfig, but only XFS is in a separate file fs/xfs/Kconfig
- All other filesystem configuration is processed in the same screen
(using a kind of drop-down interface), but XFS configuration is done
in a separate screen.

Here is the patch to fix the problem: it moves XFS configuration from
fs/xfs/Kconfig to fs/Kconfig, makes it to do all the configuration in
the same screen (by removing "menu" directive), and removes the
unnecessary fs/xfs/Kconfig.

This patch is against 2.6.12-rc3. Please apply.

# diffstat makefile.fs.patch 
 Kconfig     |   82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 xfs/Kconfig |   85 ------------------------------------------------------------
 2 files changed, 81 insertions(+), 86 deletions(-)

Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com>

[-- Attachment #2: makefile.fs.patch --]
[-- Type: application/octet-stream, Size: 7054 bytes --]

diff -Nurp -X dontdiff-aq a/2.6.12-rc3/fs/Kconfig b/2.6.12-rc3/fs/Kconfig
--- a/2.6.12-rc3/fs/Kconfig	2005-04-28 00:25:54.000000000 +0900
+++ b/2.6.12-rc3/fs/Kconfig	2005-04-28 00:17:59.000000000 +0900
@@ -304,7 +304,87 @@ config FS_POSIX_ACL
 	depends on EXT2_FS_POSIX_ACL || EXT3_FS_POSIX_ACL || JFS_POSIX_ACL || REISERFS_FS_POSIX_ACL || NFSD_V4
 	default y
 
-source "fs/xfs/Kconfig"
+config XFS_FS
+	tristate "XFS filesystem support"
+	select EXPORTFS if NFSD!=n
+	help
+	  XFS is a high performance journaling filesystem which originated
+	  on the SGI IRIX platform.  It is completely multi-threaded, can
+	  support large files and large filesystems, extended attributes,
+	  variable block sizes, is extent based, and makes extensive use of
+	  Btrees (directories, extents, free space) to aid both performance
+	  and scalability.
+
+	  Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
+	  for complete details.  This implementation is on-disk compatible
+	  with the IRIX version of XFS.
+
+	  To compile this file system support as a module, choose M here: the
+	  module will be called xfs.  Be aware, however, that if the file
+	  system of your root partition is compiled as a module, you'll need
+	  to use an initial ramdisk (initrd) to boot.
+
+config XFS_RT
+	bool "Realtime support (EXPERIMENTAL)"
+	depends on XFS_FS && EXPERIMENTAL
+	help
+	  If you say Y here you will be able to mount and use XFS filesystems
+	  which contain a realtime subvolume. The realtime subvolume is a
+	  separate area of disk space where only file data is stored. The
+	  realtime subvolume is designed to provide very deterministic
+	  data rates suitable for media streaming applications.
+
+	  See the xfs man page in section 5 for a bit more information.
+
+	  This feature is unsupported at this time, is not yet fully
+	  functional, and may cause serious problems.
+
+	  If unsure, say N.
+
+config XFS_QUOTA
+	bool "Quota support"
+	depends on XFS_FS
+	help
+	  If you say Y here, you will be able to set limits for disk usage on
+	  a per user and/or a per group basis under XFS.  XFS considers quota
+	  information as filesystem metadata and uses journaling to provide a
+	  higher level guarantee of consistency.  The on-disk data format for
+	  quota is also compatible with the IRIX version of XFS, allowing a
+	  filesystem to be migrated between Linux and IRIX without any need
+	  for conversion.
+
+	  If unsure, say N.  More comprehensive documentation can be found in
+	  README.quota in the xfsprogs package.  XFS quota can be used either
+	  with or without the generic quota support enabled (CONFIG_QUOTA) -
+	  they are completely independent subsystems.
+
+config XFS_SECURITY
+	bool "Security Label support"
+	depends on XFS_FS
+	help
+	  Security labels support alternative access control models
+	  implemented by security modules like SELinux.  This option
+	  enables an extended attribute namespace for inode security
+	  labels in the XFS filesystem.
+
+	  If you are not using a security module that requires using
+	  extended attributes for inode security labels, say N.
+
+config XFS_POSIX_ACL
+	bool "POSIX ACL support"
+	depends on XFS_FS
+	help
+	  POSIX Access Control Lists (ACLs) support permissions for users and
+	  groups beyond the owner/group/world scheme.
+
+	  To learn more about Access Control Lists, visit the POSIX ACLs for
+	  Linux website <http://acl.bestbits.at/>.
+
+	  If you don't know what Access Control Lists are, say N.
+
+config XFS_EXPORT
+	bool
+	default y if XFS_FS && EXPORTFS
 
 config MINIX_FS
 	tristate "Minix fs support"
diff -Nurp -X dontdiff-aq a/2.6.12-rc3/fs/xfs/Kconfig b/2.6.12-rc3/fs/xfs/Kconfig
--- a/2.6.12-rc3/fs/xfs/Kconfig	2005-03-02 16:38:08.000000000 +0900
+++ b/2.6.12-rc3/fs/xfs/Kconfig	1970-01-01 09:00:00.000000000 +0900
@@ -1,85 +0,0 @@
-menu "XFS support"
-
-config XFS_FS
-	tristate "XFS filesystem support"
-	select EXPORTFS if NFSD!=n
-	help
-	  XFS is a high performance journaling filesystem which originated
-	  on the SGI IRIX platform.  It is completely multi-threaded, can
-	  support large files and large filesystems, extended attributes,
-	  variable block sizes, is extent based, and makes extensive use of
-	  Btrees (directories, extents, free space) to aid both performance
-	  and scalability.
-
-	  Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
-	  for complete details.  This implementation is on-disk compatible
-	  with the IRIX version of XFS.
-
-	  To compile this file system support as a module, choose M here: the
-	  module will be called xfs.  Be aware, however, that if the file
-	  system of your root partition is compiled as a module, you'll need
-	  to use an initial ramdisk (initrd) to boot.
-
-config XFS_EXPORT
-	bool
-	default y if XFS_FS && EXPORTFS
-
-config XFS_RT
-	bool "Realtime support (EXPERIMENTAL)"
-	depends on XFS_FS && EXPERIMENTAL
-	help
-	  If you say Y here you will be able to mount and use XFS filesystems
-	  which contain a realtime subvolume. The realtime subvolume is a
-	  separate area of disk space where only file data is stored. The
-	  realtime subvolume is designed to provide very deterministic
-	  data rates suitable for media streaming applications.
-
-	  See the xfs man page in section 5 for a bit more information.
-
-	  This feature is unsupported at this time, is not yet fully
-	  functional, and may cause serious problems.
-
-	  If unsure, say N.
-
-config XFS_QUOTA
-	bool "Quota support"
-	depends on XFS_FS
-	help
-	  If you say Y here, you will be able to set limits for disk usage on
-	  a per user and/or a per group basis under XFS.  XFS considers quota
-	  information as filesystem metadata and uses journaling to provide a
-	  higher level guarantee of consistency.  The on-disk data format for
-	  quota is also compatible with the IRIX version of XFS, allowing a
-	  filesystem to be migrated between Linux and IRIX without any need
-	  for conversion.
-
-	  If unsure, say N.  More comprehensive documentation can be found in
-	  README.quota in the xfsprogs package.  XFS quota can be used either
-	  with or without the generic quota support enabled (CONFIG_QUOTA) -
-	  they are completely independent subsystems.
-
-config XFS_SECURITY
-	bool "Security Label support"
-	depends on XFS_FS
-	help
-	  Security labels support alternative access control models
-	  implemented by security modules like SELinux.  This option
-	  enables an extended attribute namespace for inode security
-	  labels in the XFS filesystem.
-
-	  If you are not using a security module that requires using
-	  extended attributes for inode security labels, say N.
-
-config XFS_POSIX_ACL
-	bool "POSIX ACL support"
-	depends on XFS_FS
-	help
-	  POSIX Access Control Lists (ACLs) support permissions for users and
-	  groups beyond the owner/group/world scheme.
-
-	  To learn more about Access Control Lists, visit the POSIX ACLs for
-	  Linux website <http://acl.bestbits.at/>.
-
-	  If you don't know what Access Control Lists are, say N.
-
-endmenu

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-28  7:55 [PATCH] fs/Kconfig: more consistent configuration of XFS aq
@ 2005-04-28  8:05 ` Chris Wedgwood
  2005-04-28  8:09 ` Christoph Hellwig
  1 sibling, 0 replies; 10+ messages in thread
From: Chris Wedgwood @ 2005-04-28  8:05 UTC (permalink / raw)
  To: aq; +Cc: Andrew Morton, hch, lkml

On Thu, Apr 28, 2005 at 04:55:48PM +0900, aq wrote:

> Here is the patch to fix the problem: it moves XFS configuration
> from fs/xfs/Kconfig to fs/Kconfig, makes it to do all the
> configuration in the same screen (by removing "menu" directive), and
> removes the unnecessary fs/xfs/Kconfig.

XFS has several more configuration option not in the mainline tree.
Doing this makes keeping things in sync harder.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-28  7:55 [PATCH] fs/Kconfig: more consistent configuration of XFS aq
  2005-04-28  8:05 ` Chris Wedgwood
@ 2005-04-28  8:09 ` Christoph Hellwig
  2005-04-28  8:38   ` aq
  1 sibling, 1 reply; 10+ messages in thread
From: Christoph Hellwig @ 2005-04-28  8:09 UTC (permalink / raw)
  To: aq; +Cc: Andrew Morton, hch, lkml

On Thu, Apr 28, 2005 at 04:55:48PM +0900, aq wrote:
> hello,
> 
> At the moment, the configuration interface of Filesystem is not very consistent:
> 
> - All other filesystem configurations (like Reiserfs, JFS, ext3,...)
> is in fs/Kconfig, but only XFS is in a separate file fs/xfs/Kconfig
> - All other filesystem configuration is processed in the same screen
> (using a kind of drop-down interface), but XFS configuration is done
> in a separate screen.
> 
> Here is the patch to fix the problem: it moves XFS configuration from
> fs/xfs/Kconfig to fs/Kconfig, makes it to do all the configuration in
> the same screen (by removing "menu" directive), and removes the
> unnecessary fs/xfs/Kconfig.

The screen bits is fine, btu please keep fs/xfs/Kconfig.  It make maintaince
a lot a easier for us XFS people.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-28  8:09 ` Christoph Hellwig
@ 2005-04-28  8:38   ` aq
  2005-04-28  8:39     ` Christoph Hellwig
  0 siblings, 1 reply; 10+ messages in thread
From: aq @ 2005-04-28  8:38 UTC (permalink / raw)
  To: Christoph Hellwig, Andrew Morton, lkml

[-- Attachment #1: Type: text/plain, Size: 1586 bytes --]

On 4/28/05, Christoph Hellwig <hch@infradead.org> wrote:
> On Thu, Apr 28, 2005 at 04:55:48PM +0900, aq wrote:
> > hello,
> >
> > At the moment, the configuration interface of Filesystem is not very consistent:
> >
> > - All other filesystem configurations (like Reiserfs, JFS, ext3,...)
> > is in fs/Kconfig, but only XFS is in a separate file fs/xfs/Kconfig
> > - All other filesystem configuration is processed in the same screen
> > (using a kind of drop-down interface), but XFS configuration is done
> > in a separate screen.
> >
> > Here is the patch to fix the problem: it moves XFS configuration from
> > fs/xfs/Kconfig to fs/Kconfig, makes it to do all the configuration in
> > the same screen (by removing "menu" directive), and removes the
> > unnecessary fs/xfs/Kconfig.
> 
> The screen bits is fine, btu please keep fs/xfs/Kconfig.  It make maintaince
> a lot a easier for us XFS people.
> 
> 

I dont see why we should keep a file in kernel tree without using it
(since the patch removes "source xfs/Kconfig). Anyway, here is another
patch that doesnt remove fs/xfs/Kconfig.

Also note that this patch (and the last one, too) moves "config
XFS_EXPOR" to the bottom, so the menu intems aligns better and
consistently with others (like what Reiserfs, JFS,... are doing)

Andrew, please pick one of these two. Thank you.

# diffstat makefile.fs2.patch 
 Kconfig |   82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 81 insertions(+), 1 deletion(-)

Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com>\

[-- Attachment #2: makefile.fs2.patch --]
[-- Type: application/octet-stream, Size: 3611 bytes --]

diff -Nurp -X dontdiff-aq a/2.6.12-rc3/fs/Kconfig b/2.6.12-rc3/fs/Kconfig
--- a/2.6.12-rc3/fs/Kconfig	2005-04-28 00:25:54.000000000 +0900
+++ b/2.6.12-rc3/fs/Kconfig	2005-04-28 00:17:59.000000000 +0900
@@ -304,7 +304,87 @@ config FS_POSIX_ACL
 	depends on EXT2_FS_POSIX_ACL || EXT3_FS_POSIX_ACL || JFS_POSIX_ACL || REISERFS_FS_POSIX_ACL || NFSD_V4
 	default y
 
-source "fs/xfs/Kconfig"
+config XFS_FS
+	tristate "XFS filesystem support"
+	select EXPORTFS if NFSD!=n
+	help
+	  XFS is a high performance journaling filesystem which originated
+	  on the SGI IRIX platform.  It is completely multi-threaded, can
+	  support large files and large filesystems, extended attributes,
+	  variable block sizes, is extent based, and makes extensive use of
+	  Btrees (directories, extents, free space) to aid both performance
+	  and scalability.
+
+	  Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
+	  for complete details.  This implementation is on-disk compatible
+	  with the IRIX version of XFS.
+
+	  To compile this file system support as a module, choose M here: the
+	  module will be called xfs.  Be aware, however, that if the file
+	  system of your root partition is compiled as a module, you'll need
+	  to use an initial ramdisk (initrd) to boot.
+
+config XFS_RT
+	bool "Realtime support (EXPERIMENTAL)"
+	depends on XFS_FS && EXPERIMENTAL
+	help
+	  If you say Y here you will be able to mount and use XFS filesystems
+	  which contain a realtime subvolume. The realtime subvolume is a
+	  separate area of disk space where only file data is stored. The
+	  realtime subvolume is designed to provide very deterministic
+	  data rates suitable for media streaming applications.
+
+	  See the xfs man page in section 5 for a bit more information.
+
+	  This feature is unsupported at this time, is not yet fully
+	  functional, and may cause serious problems.
+
+	  If unsure, say N.
+
+config XFS_QUOTA
+	bool "Quota support"
+	depends on XFS_FS
+	help
+	  If you say Y here, you will be able to set limits for disk usage on
+	  a per user and/or a per group basis under XFS.  XFS considers quota
+	  information as filesystem metadata and uses journaling to provide a
+	  higher level guarantee of consistency.  The on-disk data format for
+	  quota is also compatible with the IRIX version of XFS, allowing a
+	  filesystem to be migrated between Linux and IRIX without any need
+	  for conversion.
+
+	  If unsure, say N.  More comprehensive documentation can be found in
+	  README.quota in the xfsprogs package.  XFS quota can be used either
+	  with or without the generic quota support enabled (CONFIG_QUOTA) -
+	  they are completely independent subsystems.
+
+config XFS_SECURITY
+	bool "Security Label support"
+	depends on XFS_FS
+	help
+	  Security labels support alternative access control models
+	  implemented by security modules like SELinux.  This option
+	  enables an extended attribute namespace for inode security
+	  labels in the XFS filesystem.
+
+	  If you are not using a security module that requires using
+	  extended attributes for inode security labels, say N.
+
+config XFS_POSIX_ACL
+	bool "POSIX ACL support"
+	depends on XFS_FS
+	help
+	  POSIX Access Control Lists (ACLs) support permissions for users and
+	  groups beyond the owner/group/world scheme.
+
+	  To learn more about Access Control Lists, visit the POSIX ACLs for
+	  Linux website <http://acl.bestbits.at/>.
+
+	  If you don't know what Access Control Lists are, say N.
+
+config XFS_EXPORT
+	bool
+	default y if XFS_FS && EXPORTFS
 
 config MINIX_FS
 	tristate "Minix fs support"

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-28  8:38   ` aq
@ 2005-04-28  8:39     ` Christoph Hellwig
  2005-04-28  9:21       ` aq
  0 siblings, 1 reply; 10+ messages in thread
From: Christoph Hellwig @ 2005-04-28  8:39 UTC (permalink / raw)
  To: aq; +Cc: Christoph Hellwig, Andrew Morton, lkml

On Thu, Apr 28, 2005 at 05:38:40PM +0900, aq wrote:
> I dont see why we should keep a file in kernel tree without using it
> (since the patch removes "source xfs/Kconfig). Anyway, here is another
> patch that doesnt remove fs/xfs/Kconfig.

No, you should not remove usage of it either.


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-28  8:39     ` Christoph Hellwig
@ 2005-04-28  9:21       ` aq
  2005-04-29 21:28         ` Sam Ravnborg
  0 siblings, 1 reply; 10+ messages in thread
From: aq @ 2005-04-28  9:21 UTC (permalink / raw)
  To: Christoph Hellwig, Andrew Morton, lkml

[-- Attachment #1: Type: text/plain, Size: 961 bytes --]

On 4/28/05, Christoph Hellwig <hch@infradead.org> wrote:
> On Thu, Apr 28, 2005 at 05:38:40PM +0900, aq wrote:
> > I dont see why we should keep a file in kernel tree without using it
> > (since the patch removes "source xfs/Kconfig). Anyway, here is another
> > patch that doesnt remove fs/xfs/Kconfig.
> 
> No, you should not remove usage of it either.
> 

OK, here is another patch. It is up to Andrew to pick the approriate.
But I still prefer the first patch, which provides both consistency in
interface and configuration.

What this patch does:

- Remove "menu" directive from fs/xfs/Kconfig, so XFS configuration is
done in the same screen as other filesystems.
- Move "config XFS_EXPORT " to the bottom, so the menu items aligns
better and consistent with others.
 
# diffstat makefile.fs3.patch 
 Kconfig |   11 ++++-------
 1 files changed, 4 insertions(+), 7 deletions(-)

Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com>

[-- Attachment #2: makefile.fs3.patch --]
[-- Type: application/octet-stream, Size: 818 bytes --]

diff -Nurp -X dontdiff-aq a/2.6.12-rc3/fs/xfs/Kconfig c/2.6.12-rc3/fs/xfs/Kconfig
--- a/2.6.12-rc3/fs/xfs/Kconfig	2005-03-02 16:38:08.000000000 +0900
+++ c/2.6.12-rc3/fs/xfs/Kconfig	2005-04-28 17:51:47.000000000 +0900
@@ -1,5 +1,3 @@
-menu "XFS support"
-
 config XFS_FS
 	tristate "XFS filesystem support"
 	select EXPORTFS if NFSD!=n
@@ -20,10 +18,6 @@ config XFS_FS
 	  system of your root partition is compiled as a module, you'll need
 	  to use an initial ramdisk (initrd) to boot.
 
-config XFS_EXPORT
-	bool
-	default y if XFS_FS && EXPORTFS
-
 config XFS_RT
 	bool "Realtime support (EXPERIMENTAL)"
 	depends on XFS_FS && EXPERIMENTAL
@@ -82,4 +76,7 @@ config XFS_POSIX_ACL
 
 	  If you don't know what Access Control Lists are, say N.
 
-endmenu
+config XFS_EXPORT
+	bool
+	default y if XFS_FS && EXPORTFS
+

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-28  9:21       ` aq
@ 2005-04-29 21:28         ` Sam Ravnborg
  2005-04-30  2:02           ` aq
  0 siblings, 1 reply; 10+ messages in thread
From: Sam Ravnborg @ 2005-04-29 21:28 UTC (permalink / raw)
  To: aq; +Cc: Christoph Hellwig, Andrew Morton, lkml

On Thu, Apr 28, 2005 at 06:21:52PM +0900, aq wrote:
> 
> OK, here is another patch. It is up to Andrew to pick the approriate.
> But I still prefer the first patch, which provides both consistency in
> interface and configuration.

We shall do out best to distribute info to places where it belongs.
A much better approch would be to move all ext2 + ext3 stuff out in
their respective directories.
When modifying xfs (or ext2,ext3) no files outside their respective
directories should in need to be touched - this would just impose
additional burden doing parrallel development.

About your modifications:

Skipping the menu part is OK.
While you are modifying Kconfig in xfs/ put a

if XFS_FS
...
endif

around all config options expcept the one defining the XFS_FS option.
This will fix menu identing.

	Sam

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-29 21:28         ` Sam Ravnborg
@ 2005-04-30  2:02           ` aq
  2005-04-30  6:09             ` Sam Ravnborg
  0 siblings, 1 reply; 10+ messages in thread
From: aq @ 2005-04-30  2:02 UTC (permalink / raw)
  To: Sam Ravnborg; +Cc: Christoph Hellwig, Andrew Morton, lkml

On 4/30/05, Sam Ravnborg <sam@ravnborg.org> wrote:
> On Thu, Apr 28, 2005 at 06:21:52PM +0900, aq wrote:
> >
> > OK, here is another patch. It is up to Andrew to pick the approriate.
> > But I still prefer the first patch, which provides both consistency in
> > interface and configuration.
> 
> We shall do out best to distribute info to places where it belongs.
> A much better approch would be to move all ext2 + ext3 stuff out in
> their respective directories.
> When modifying xfs (or ext2,ext3) no files outside their respective
> directories should in need to be touched - this would just impose
> additional burden doing parrallel development.

OK, I agree.

> 
> About your modifications:
> 
> Skipping the menu part is OK.
> While you are modifying Kconfig in xfs/ put a
> 
> if XFS_FS
> ...
> endif
> 
> around all config options expcept the one defining the XFS_FS option.
> This will fix menu identing.

Thanks for pointing this out. But the patch I posted is fair enough.
It just move one menu item around, and change nothing else. Are you
happy with it?

regards,
aq

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-30  2:02           ` aq
@ 2005-04-30  6:09             ` Sam Ravnborg
  2005-05-01 11:26               ` aq
  0 siblings, 1 reply; 10+ messages in thread
From: Sam Ravnborg @ 2005-04-30  6:09 UTC (permalink / raw)
  To: aq; +Cc: Christoph Hellwig, Andrew Morton, lkml

On Sat, Apr 30, 2005 at 11:02:27AM +0900, aq wrote:
> 
> > 
> > About your modifications:
> > 
> > Skipping the menu part is OK.
> > While you are modifying Kconfig in xfs/ put a
> > 
> > if XFS_FS
> > ...
> > endif
> > 
> > around all config options expcept the one defining the XFS_FS option.
> > This will fix menu identing.
> 
> Thanks for pointing this out. But the patch I posted is fair enough.
> It just move one menu item around, and change nothing else. Are you
> happy with it?
If indention is OK for all menu entries in XFS - yes. Otherwise not.
I haven't tested it.

	Sam

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] fs/Kconfig: more consistent configuration of XFS
  2005-04-30  6:09             ` Sam Ravnborg
@ 2005-05-01 11:26               ` aq
  0 siblings, 0 replies; 10+ messages in thread
From: aq @ 2005-05-01 11:26 UTC (permalink / raw)
  To: Sam Ravnborg; +Cc: Christoph Hellwig, Andrew Morton, lkml

On 4/30/05, Sam Ravnborg <sam@ravnborg.org> wrote:
> On Sat, Apr 30, 2005 at 11:02:27AM +0900, aq wrote:
> >
> > >
> > > About your modifications:
> > >
> > > Skipping the menu part is OK.
> > > While you are modifying Kconfig in xfs/ put a
> > >
> > > if XFS_FS
> > > ...
> > > endif
> > >
> > > around all config options expcept the one defining the XFS_FS option.
> > > This will fix menu identing.
> >
> > Thanks for pointing this out. But the patch I posted is fair enough.
> > It just move one menu item around, and change nothing else. Are you
> > happy with it?
> If indention is OK for all menu entries in XFS - yes. Otherwise not.

I have tested it. Identation is fine.

regards,
aq

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2005-05-01 11:26 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-28  7:55 [PATCH] fs/Kconfig: more consistent configuration of XFS aq
2005-04-28  8:05 ` Chris Wedgwood
2005-04-28  8:09 ` Christoph Hellwig
2005-04-28  8:38   ` aq
2005-04-28  8:39     ` Christoph Hellwig
2005-04-28  9:21       ` aq
2005-04-29 21:28         ` Sam Ravnborg
2005-04-30  2:02           ` aq
2005-04-30  6:09             ` Sam Ravnborg
2005-05-01 11:26               ` aq

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).