compile fix net/core/dev.c

From: carbonated beverage
Date: Mon Jun 21 2004 - 07:11:28 EST


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) {

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/