Commit 8b752e3ef6e3f5cde87afc649dd51d92b1e549c1

Authored by Liming Wang
Committed by Ingo Molnar
1 parent ed313489ba

softirq: remove useless function __local_bh_enable

Impact: remove unused code

__local_bh_enable has been replaced with _local_bh_enable.
As comments says "it always nests inside local_bh_enable() sections"
has not been valid now. Also there is no reason to use __local_bh_enable
anywhere, so we can remove this useless function.

Signed-off-by: Liming Wang <liming.wang@windriver.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 2 changed files with 0 additions and 15 deletions Side-by-side Diff

include/linux/bottom_half.h
... ... @@ -2,7 +2,6 @@
2 2 #define _LINUX_BH_H
3 3  
4 4 extern void local_bh_disable(void);
5   -extern void __local_bh_enable(void);
6 5 extern void _local_bh_enable(void);
7 6 extern void local_bh_enable(void);
8 7 extern void local_bh_enable_ip(unsigned long ip);
... ... @@ -102,20 +102,6 @@
102 102  
103 103 EXPORT_SYMBOL(local_bh_disable);
104 104  
105   -void __local_bh_enable(void)
106   -{
107   - WARN_ON_ONCE(in_irq());
108   -
109   - /*
110   - * softirqs should never be enabled by __local_bh_enable(),
111   - * it always nests inside local_bh_enable() sections:
112   - */
113   - WARN_ON_ONCE(softirq_count() == SOFTIRQ_OFFSET);
114   -
115   - sub_preempt_count(SOFTIRQ_OFFSET);
116   -}
117   -EXPORT_SYMBOL_GPL(__local_bh_enable);
118   -
119 105 /*
120 106 * Special-case - softirqs can safely be enabled in
121 107 * cond_resched_softirq(), or by __do_softirq(),