diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-05-02 15:28:12 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-05-02 15:28:12 +0000 |
commit | 8f15326acca2d34200d3b1142bb4c184fa6c1e07 (patch) | |
tree | 9f59a6473396e02b93f85b4a16e284a3abff3cb3 /target/linux/generic/patches-3.9 | |
parent | a80a4f3ec26e475d11fa108311ff2668e3aaa7c4 (diff) | |
download | mtk-20170518-8f15326acca2d34200d3b1142bb4c184fa6c1e07.zip mtk-20170518-8f15326acca2d34200d3b1142bb4c184fa6c1e07.tar.gz mtk-20170518-8f15326acca2d34200d3b1142bb4c184fa6c1e07.tar.bz2 |
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>
SVN-Revision: 36525
Diffstat (limited to 'target/linux/generic/patches-3.9')
-rw-r--r-- | target/linux/generic/patches-3.9/902-debloat_proc.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/generic/patches-3.9/902-debloat_proc.patch b/target/linux/generic/patches-3.9/902-debloat_proc.patch index 48ad12c..318db63 100644 --- a/target/linux/generic/patches-3.9/902-debloat_proc.patch +++ b/target/linux/generic/patches-3.9/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 */ |