diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-16 09:47:58 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-12-16 09:47:58 -0800 |
commit | 3bd82263a0d770d2ab3efd37144993f4433a179c (patch) | |
tree | 0082aa8c22eb0b6ba97368b5eb42edcb241ab0f3 | |
parent | eef70b217a7ab46e8e0cf75982ad75d8305d5591 (diff) | |
parent | f9d62c009637f9581cdd7f6e430f8eec511c8587 (diff) | |
download | blackbird-op-linux-3bd82263a0d770d2ab3efd37144993f4433a179c.tar.gz blackbird-op-linux-3bd82263a0d770d2ab3efd37144993f4433a179c.zip |
Merge branch 'sh/for-2.6.28' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6
* 'sh/for-2.6.28' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6:
sh: Disable GENERIC_HARDIRQS_NO__DO_IRQ for unconverted platforms.
sh: maple: Do not pass SLAB_POISON to kmem_cache_create()
-rw-r--r-- | arch/sh/Kconfig | 2 | ||||
-rw-r--r-- | drivers/sh/maple/maple.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 80119b3398e7..5c9cbfc14c4d 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig @@ -55,6 +55,8 @@ config GENERIC_HARDIRQS config GENERIC_HARDIRQS_NO__DO_IRQ def_bool y + depends on SUPERH32 && (!SH_DREAMCAST && !SH_SH4202_MICRODEV && \ + !SH_7751_SYSTEMH && !HD64461) config GENERIC_IRQ_PROBE def_bool y diff --git a/drivers/sh/maple/maple.c b/drivers/sh/maple/maple.c index d1812d32f47d..63f0de29aa14 100644 --- a/drivers/sh/maple/maple.c +++ b/drivers/sh/maple/maple.c @@ -827,7 +827,7 @@ static int __init maple_bus_init(void) maple_queue_cache = kmem_cache_create("maple_queue_cache", 0x400, 0, - SLAB_POISON|SLAB_HWCACHE_ALIGN, NULL); + SLAB_HWCACHE_ALIGN, NULL); if (!maple_queue_cache) goto cleanup_bothirqs; |