diff options
author | jogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-05-02 15:28:12 +0000 |
---|---|---|
committer | jogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-05-02 15:28:12 +0000 |
commit | 98bc05922b9cade4b86f2882a781ea3885f559f8 (patch) | |
tree | 9c48fc09fe92263da92faf6c16422a59e85d6bc4 /target/linux/generic/patches-3.7/902-debloat_proc.patch | |
parent | c19817b91fba4eb8c54e17b357c11d8e50733824 (diff) |
kernel: generic: don't strip /proc/irq on SMP
/proc/irq is needed for changing the SMP affinity of interrupts.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36525 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-3.7/902-debloat_proc.patch')
-rw-r--r-- | target/linux/generic/patches-3.7/902-debloat_proc.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/generic/patches-3.7/902-debloat_proc.patch b/target/linux/generic/patches-3.7/902-debloat_proc.patch index 30512de956..390a447d34 100644 --- a/target/linux/generic/patches-3.7/902-debloat_proc.patch +++ b/target/linux/generic/patches-3.7/902-debloat_proc.patch @@ -83,7 +83,7 @@ { char name [MAX_NAMELEN]; -+ if (IS_ENABLED(CONFIG_PROC_STRIPPED)) ++ if (IS_ENABLED(CONFIG_PROC_STRIPPED) && !IS_ENABLED(CONFIG_SMP)) + return; + if (!root_irq_dir || (desc->irq_data.chip == &no_irq_chip) || desc->dir) @@ -93,7 +93,7 @@ { char name [MAX_NAMELEN]; -+ if (IS_ENABLED(CONFIG_PROC_STRIPPED)) ++ if (IS_ENABLED(CONFIG_PROC_STRIPPED) && !IS_ENABLED(CONFIG_SMP)) + return; + if (!root_irq_dir || !desc->dir) @@ -103,7 +103,7 @@ unsigned int irq; struct irq_desc *desc; -+ if (IS_ENABLED(CONFIG_PROC_STRIPPED)) ++ if (IS_ENABLED(CONFIG_PROC_STRIPPED) && !IS_ENABLED(CONFIG_SMP)) + return; + /* create /proc/irq */ |