* [PATCH 0/5] powerpc: Kconfig clean patches
@ 2009-10-16 17:21 Kumar Gala
2009-10-16 17:21 ` [PATCH 1/5] powerpc: Limit hugetlbfs support to PPC64 Book-3S machines Kumar Gala
0 siblings, 1 reply; 6+ messages in thread
From: Kumar Gala @ 2009-10-16 17:21 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linux-kernel
This is a series of simple Kconfig cleans related to powerpc intended
for v2.6.33. I'm assuming having them go via the powerpc tree is
probably the easiest.
- k
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/5] powerpc: Limit hugetlbfs support to PPC64 Book-3S machines
2009-10-16 17:21 [PATCH 0/5] powerpc: Kconfig clean patches Kumar Gala
@ 2009-10-16 17:21 ` Kumar Gala
2009-10-16 17:21 ` [PATCH 2/5] powerpc: Limit memory hotplug " Kumar Gala
0 siblings, 1 reply; 6+ messages in thread
From: Kumar Gala @ 2009-10-16 17:21 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linux-kernel
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
fs/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/Kconfig b/fs/Kconfig
index d4bf8ca..f93d0ed 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -135,7 +135,7 @@ config TMPFS_POSIX_ACL
config HUGETLBFS
bool "HugeTLB file system support"
- depends on X86 || IA64 || PPC64 || SPARC64 || (SUPERH && MMU) || \
+ depends on X86 || IA64 || PPC_BOOK3S_64 || SPARC64 || (SUPERH && MMU) || \
(S390 && 64BIT) || SYS_SUPPORTS_HUGETLBFS || BROKEN
help
hugetlbfs is a filesystem backing for HugeTLB pages, based on
--
1.6.0.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/5] powerpc: Limit memory hotplug support to PPC64 Book-3S machines
2009-10-16 17:21 ` [PATCH 1/5] powerpc: Limit hugetlbfs support to PPC64 Book-3S machines Kumar Gala
@ 2009-10-16 17:21 ` Kumar Gala
2009-10-16 17:21 ` [PATCH 3/5] powerpc: cleanup init/Kconfig Kumar Gala
0 siblings, 1 reply; 6+ messages in thread
From: Kumar Gala @ 2009-10-16 17:21 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linux-kernel
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
mm/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/mm/Kconfig b/mm/Kconfig
index 57963c6..7ca3777 100644
--- a/mm/Kconfig
+++ b/mm/Kconfig
@@ -129,7 +129,7 @@ config MEMORY_HOTPLUG
bool "Allow for memory hot-add"
depends on SPARSEMEM || X86_64_ACPI_NUMA
depends on HOTPLUG && !(HIBERNATION && !S390) && ARCH_ENABLE_MEMORY_HOTPLUG
- depends on (IA64 || X86 || PPC64 || SUPERH || S390)
+ depends on (IA64 || X86 || PPC_BOOK3S_64 || SUPERH || S390)
comment "Memory hotplug is currently incompatible with Software Suspend"
depends on SPARSEMEM && HOTPLUG && HIBERNATION && !S390
--
1.6.0.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/5] powerpc: cleanup init/Kconfig
2009-10-16 17:21 ` [PATCH 2/5] powerpc: Limit memory hotplug " Kumar Gala
@ 2009-10-16 17:21 ` Kumar Gala
2009-10-16 17:21 ` [PATCH 4/5] powerpc: clean up sound/ppc/Kconfig Kumar Gala
0 siblings, 1 reply; 6+ messages in thread
From: Kumar Gala @ 2009-10-16 17:21 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linux-kernel
We dont need to depend on PPC64 explicitly as all powerpc platforms
(32-bit and 64-bit) define PPC now.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
init/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/init/Kconfig b/init/Kconfig
index 09c5c64..f515864 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -297,7 +297,7 @@ config AUDIT
config AUDITSYSCALL
bool "Enable system-call auditing support"
- depends on AUDIT && (X86 || PPC || PPC64 || S390 || IA64 || UML || SPARC64|| SUPERH)
+ depends on AUDIT && (X86 || PPC || S390 || IA64 || UML || SPARC64 || SUPERH)
default y if SECURITY_SELINUX
help
Enable low-overhead system-call auditing infrastructure that
--
1.6.0.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 4/5] powerpc: clean up sound/ppc/Kconfig
2009-10-16 17:21 ` [PATCH 3/5] powerpc: cleanup init/Kconfig Kumar Gala
@ 2009-10-16 17:21 ` Kumar Gala
2009-10-16 17:21 ` [PATCH 5/5] powerpc: Cleanup lib/Kconfig.debug Kumar Gala
0 siblings, 1 reply; 6+ messages in thread
From: Kumar Gala @ 2009-10-16 17:21 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linux-kernel
We can replace PPC32 || PPC64 as a dependancy with just PPC as all
powerpc platforms (32-bit and 64-bit) define PPC now.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
sound/ppc/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/ppc/Kconfig b/sound/ppc/Kconfig
index bd2338a..0519c60 100644
--- a/sound/ppc/Kconfig
+++ b/sound/ppc/Kconfig
@@ -2,7 +2,7 @@
menuconfig SND_PPC
bool "PowerPC sound devices"
- depends on PPC64 || PPC32
+ depends on PPC
default y
help
Support for sound devices specific to PowerPC architectures.
--
1.6.0.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 5/5] powerpc: Cleanup lib/Kconfig.debug
2009-10-16 17:21 ` [PATCH 4/5] powerpc: clean up sound/ppc/Kconfig Kumar Gala
@ 2009-10-16 17:21 ` Kumar Gala
0 siblings, 0 replies; 6+ messages in thread
From: Kumar Gala @ 2009-10-16 17:21 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linux-kernel
We don't need an explicit PPC64 in the DEBUG_PREEMPT dependancies as all
PPC platforms now support TRACE_IRQFLAGS_SUPPORT.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
lib/Kconfig.debug | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 30df586..234ceb1 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -392,7 +392,7 @@ config DEBUG_KMEMLEAK_TEST
config DEBUG_PREEMPT
bool "Debug preemptible kernel"
- depends on DEBUG_KERNEL && PREEMPT && (TRACE_IRQFLAGS_SUPPORT || PPC64)
+ depends on DEBUG_KERNEL && PREEMPT && TRACE_IRQFLAGS_SUPPORT
default y
help
If you say Y here then the kernel will use a debug variant of the
--
1.6.0.6
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-10-16 17:21 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-16 17:21 [PATCH 0/5] powerpc: Kconfig clean patches Kumar Gala
2009-10-16 17:21 ` [PATCH 1/5] powerpc: Limit hugetlbfs support to PPC64 Book-3S machines Kumar Gala
2009-10-16 17:21 ` [PATCH 2/5] powerpc: Limit memory hotplug " Kumar Gala
2009-10-16 17:21 ` [PATCH 3/5] powerpc: cleanup init/Kconfig Kumar Gala
2009-10-16 17:21 ` [PATCH 4/5] powerpc: clean up sound/ppc/Kconfig Kumar Gala
2009-10-16 17:21 ` [PATCH 5/5] powerpc: Cleanup lib/Kconfig.debug Kumar Gala
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).