Tiny patch to make gcc 2.95.4 happy. Declare a variable before code
preceeds it.
-- DN
Daniel
===== net/core/dev.c 1.147 vs edited =====
--- 1.147/net/core/dev.c 2004-06-20 17:35:52 -07:00
+++ edited/net/core/dev.c 2004-06-21 04:36:04 -07:00
@@ -1406,8 +1406,10 @@
Either shot noqueue qdisc, it is even simpler 8)
*/
if (dev->flags & IFF_UP) {
+ int cpu;
+
preempt_disable();
- int cpu = smp_processor_id();
+ cpu = smp_processor_id();
if (dev->xmit_lock_owner != cpu) {