patch-2.1.100 linux/net/core/dev.c
Next file: linux/net/core/scm.c
Previous file: linux/net/appletalk/ddp.c
Back to the patch index
Back to the overall index
- Lines: 38
- Date:
Wed May 6 10:56:06 1998
- Orig file:
v2.1.99/linux/net/core/dev.c
- Orig date:
Sat May 2 14:19:54 1998
diff -u --recursive --new-file v2.1.99/linux/net/core/dev.c linux/net/core/dev.c
@@ -321,7 +321,7 @@
void dev_load(const char *name)
{
- if(!dev_get(name) && suser())
+ if(!dev_get(name) && capable(CAP_SYS_MODULE))
request_module(name);
}
@@ -1591,7 +1591,7 @@
case SIOCDELMULTI:
case SIOCSIFHWBROADCAST:
case SIOCSIFTXQLEN:
- if (!suser())
+ if (!capable(CAP_NET_ADMIN))
return -EPERM;
dev_load(ifr.ifr_name);
rtnl_lock();
@@ -1764,6 +1764,9 @@
extern int lapbeth_init(void);
extern void arcnet_init(void);
extern void ip_auto_config(void);
+#ifdef CONFIG_8xx
+extern int cpm_enet_init(void);
+#endif /* CONFIG_8xx */
#ifdef CONFIG_PROC_FS
static struct proc_dir_entry proc_net_dev = {
@@ -1845,6 +1848,9 @@
#endif
#if defined(CONFIG_ARCNET)
arcnet_init();
+#endif
+#if defined(CONFIG_8xx)
+ cpm_enet_init();
#endif
/*
* SLHC if present needs attaching so other people see it
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov