patch-2.3.15 linux/net/core/profile.c
Next file: linux/net/core/rtnetlink.c
Previous file: linux/net/core/netfilter.c
Back to the patch index
Back to the overall index
- Lines: 46
- Date:
Wed Aug 25 14:46:02 1999
- Orig file:
v2.3.14/linux/net/core/profile.c
- Orig date:
Wed Aug 18 11:38:48 1999
diff -u --recursive --new-file v2.3.14/linux/net/core/profile.c linux/net/core/profile.c
@@ -126,10 +126,8 @@
len-=(offset-begin);
if(len>length)
len=length;
- if (len < 0) {
+ if (len < 0)
len = 0;
- printk(KERN_CRIT "Yep, guys... our template for proc_*_read is crappy :-)\n");
- }
if (offset == 0) {
cli();
net_prof_total.active = 0;
@@ -212,7 +210,7 @@
return stats;
}
-__initfunc(int whitehole_init(struct net_device *dev))
+int __init whitehole_init(struct net_device *dev)
{
dev->priv = kmalloc(sizeof(struct net_device_stats), GFP_KERNEL);
if (dev->priv == NULL)
@@ -262,7 +260,7 @@
}
-__initfunc(int net_profile_init(void))
+int __init net_profile_init(void)
{
int i;
@@ -282,7 +280,6 @@
return -1;
}
#endif
- start_bh_atomic();
#ifdef __alpha__
alpha_tick(0);
#endif
@@ -298,7 +295,6 @@
}
net_prof_total.hits = 0;
net_profile_stamp(&net_prof_total.entered);
- end_bh_atomic();
return 0;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)