[<prev] [next>] [day] [month] [year] [list]
Message-ID: <alpine.LFD.1.10.0808041347270.7208@localhost.localdomain>
Date: Mon, 4 Aug 2008 13:50:16 -0400 (EDT)
From: "Robert P. J. Day" <rpjday@...shcourse.ca>
To: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
cc: Andrew Morton <akpm@...l.org>, axboe@...nel.dk
Subject: [PATCH] BLOCK: Simplify the Kconfig structure for the BLOCK layer.
Given that everything in block/Kconfig and block/Kconfig.iosched
depends on "BLOCK", might as well just wrap the entire contents in a
single conditional and remove the unnecessary tests.
Signed-off-by: Robert P. J. Day <rpjday@...shcourse.ca>
---
unless there's something tricky or obscure that can happen in the
block layer that *doesn't* depend on BLOCK, this should be a
reasonable simplification.
block/Kconfig | 6 +++---
block/Kconfig.iosched | 4 ----
2 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/block/Kconfig b/block/Kconfig
index 1ab7c15..66cfacd 100644
--- a/block/Kconfig
+++ b/block/Kconfig
@@ -93,11 +93,11 @@ config BLK_DEV_INTEGRITY
T10/SCSI Data Integrity Field or the T13/ATA External Path
Protection. If in doubt, say N.
-endif # BLOCK
-
config BLOCK_COMPAT
bool
- depends on BLOCK && COMPAT
+ depends on COMPAT
default y
source block/Kconfig.iosched
+
+endif # BLOCK
diff --git a/block/Kconfig.iosched b/block/Kconfig.iosched
index 7e803fc..5ada7f1 100644
--- a/block/Kconfig.iosched
+++ b/block/Kconfig.iosched
@@ -1,5 +1,3 @@
-if BLOCK
-
menu "IO Schedulers"
config IOSCHED_NOOP
@@ -69,5 +67,3 @@ config DEFAULT_IOSCHED
default "noop" if DEFAULT_NOOP
endmenu
-
-endif
========================================================================
Robert P. J. Day
Linux Consulting, Training and Annoying Kernel Pedantry:
Have classroom, will lecture.
http://crashcourse.ca Waterloo, Ontario, CANADA
========================================================================
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists