* [PATCH 3/3] kill softirq_pending()
@ 2005-01-16 11:58 Christoph Hellwig
0 siblings, 0 replies; only message in thread
From: Christoph Hellwig @ 2005-01-16 11:58 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel
no more users left, time to kill the various implementations
--- 1.19/include/asm-ia64/hardirq.h 2004-11-16 20:10:08 +01:00
+++ edited/include/asm-ia64/hardirq.h 2005-01-07 13:21:28 +01:00
@@ -19,7 +19,6 @@
#define __ARCH_IRQ_STAT 1
-#define softirq_pending(cpu) (cpu_data(cpu)->softirq_pending)
#define local_softirq_pending() (local_cpu_data->softirq_pending)
#define HARDIRQ_BITS 14
===== include/asm-s390/hardirq.h 1.17 vs edited =====
--- 1.17/include/asm-s390/hardirq.h 2005-01-05 03:48:11 +01:00
+++ edited/include/asm-s390/hardirq.h 2005-01-07 13:21:28 +01:00
@@ -27,15 +27,6 @@
#define local_softirq_pending() (S390_lowcore.softirq_pending)
-/* this is always called with cpu == smp_processor_id() at the moment */
-static inline __u32
-softirq_pending(unsigned int cpu)
-{
- if (cpu == smp_processor_id())
- return local_softirq_pending();
- return lowcore_ptr[cpu]->softirq_pending;
-}
-
#define __ARCH_IRQ_STAT
#define __ARCH_HAS_DO_SOFTIRQ
===== include/linux/irq_cpustat.h 1.11 vs edited =====
--- 1.11/include/linux/irq_cpustat.h 2004-02-04 06:29:31 +01:00
+++ edited/include/linux/irq_cpustat.h 2005-01-07 13:21:28 +01:00
@@ -23,8 +23,8 @@
#endif
/* arch independent irq_stat fields */
-#define softirq_pending(cpu) __IRQ_STAT((cpu), __softirq_pending)
-#define local_softirq_pending() softirq_pending(smp_processor_id())
+#define local_softirq_pending() \
+ __IRQ_STAT(smp_processor_id(), __softirq_pending)
/* arch dependent irq_stat fields */
#define nmi_count(cpu) __IRQ_STAT((cpu), __nmi_count) /* i386 */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-01-16 12:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-16 11:58 [PATCH 3/3] kill softirq_pending() Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox