Update of /cvsroot/linux-mips/linux/include/linux
In directory usw-pr-cvs1:/tmp/cvs-serv13548/include/linux
Modified Files:
netdevice.h
Log Message:
Sync to 2.4.7
Index: netdevice.h
===================================================================
RCS file: /cvsroot/linux-mips/linux/include/linux/netdevice.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** netdevice.h 2001/07/09 21:50:55 1.2
--- netdevice.h 2001/08/25 02:19:28 1.3
***************
*** 65,69 ****
#endif
! #define MAX_ADDR_LEN 7 /* Largest hardware address length */
/*
--- 65,69 ----
#endif
! #define MAX_ADDR_LEN 8 /* Largest hardware address length */
/*
***************
*** 493,497 ****
dev->next_sched = softnet_data[cpu].output_queue;
softnet_data[cpu].output_queue = dev;
! __cpu_raise_softirq(cpu, NET_TX_SOFTIRQ);
local_irq_restore(flags);
}
--- 493,497 ----
dev->next_sched = softnet_data[cpu].output_queue;
softnet_data[cpu].output_queue = dev;
! cpu_raise_softirq(cpu, NET_TX_SOFTIRQ);
local_irq_restore(flags);
}
***************
*** 542,546 ****
skb->next = softnet_data[cpu].completion_queue;
softnet_data[cpu].completion_queue = skb;
! __cpu_raise_softirq(cpu, NET_TX_SOFTIRQ);
local_irq_restore(flags);
}
--- 542,546 ----
skb->next = softnet_data[cpu].completion_queue;
softnet_data[cpu].completion_queue = skb;
! cpu_raise_softirq(cpu, NET_TX_SOFTIRQ);
local_irq_restore(flags);
}
|