patch-2.4.20 linux-2.4.20/net/8021q/vlan.c
Next file: linux-2.4.20/net/8021q/vlan_dev.c
Previous file: linux-2.4.20/mm/vmscan.c
Back to the patch index
Back to the overall index
- Lines: 128
- Date:
Thu Nov 28 15:53:15 2002
- Orig file:
linux-2.4.19/net/8021q/vlan.c
- Orig date:
Fri Aug 2 17:39:46 2002
diff -urN linux-2.4.19/net/8021q/vlan.c linux-2.4.20/net/8021q/vlan.c
@@ -91,9 +91,9 @@
/* proc file system initialization */
err = vlan_proc_init();
if (err < 0) {
- printk(KERN_ERR __FUNCTION__
- "%s: can't create entry in proc filesystem!\n",
- VLAN_NAME);
+ printk(KERN_ERR
+ "%s %s: can't create entry in proc filesystem!\n",
+ __FUNCTION__, VLAN_NAME);
return 1;
}
@@ -203,11 +203,11 @@
int i, ret;
#ifdef VLAN_DEBUG
- printk(VLAN_DBG __FUNCTION__ ": VID: %i\n", vlan_id);
+ printk(VLAN_DBG "%s: VID: %i\n", __FUNCTION__, vlan_id);
#endif
/* sanity check */
- if ((vlan_id >= VLAN_VID_MASK) || (vlan_id <= 0))
+ if (vlan_id >= VLAN_VID_MASK)
return -EINVAL;
spin_lock_bh(&vlan_group_lock);
@@ -289,16 +289,16 @@
if (ret == 1)
ret = 0;
} else {
- printk(VLAN_ERR __FUNCTION__
- ": ERROR: Tried to remove a non-vlan device "
+ printk(VLAN_ERR
+ "%s: ERROR: Tried to remove a non-vlan device "
"with VLAN code, name: %s priv_flags: %hX\n",
- dev->name, dev->priv_flags);
+ __FUNCTION__, dev->name, dev->priv_flags);
dev_put(dev);
ret = -EPERM;
}
} else {
#ifdef VLAN_DEBUG
- printk(VLAN_DBG __FUNCTION__ ": WARNING: Could not find dev.\n");
+ printk(VLAN_DBG "%s: WARNING: Could not find dev.\n", __FUNCTION__);
#endif
ret = -EINVAL;
}
@@ -320,8 +320,8 @@
int r;
#ifdef VLAN_DEBUG
- printk(VLAN_DBG __FUNCTION__ ": if_name -:%s:- vid: %i\n",
- eth_IF_name, VLAN_ID);
+ printk(VLAN_DBG "%s: if_name -:%s:- vid: %i\n",
+ __FUNCTION__, eth_IF_name, VLAN_ID);
#endif
if (VLAN_ID >= VLAN_VID_MASK)
@@ -333,24 +333,24 @@
goto out_ret_null;
if (real_dev->features & NETIF_F_VLAN_CHALLENGED) {
- printk(VLAN_DBG __FUNCTION__ ": VLANs not supported on %s.\n",
- real_dev->name);
+ printk(VLAN_DBG "%s: VLANs not supported on %s.\n",
+ __FUNCTION__, real_dev->name);
goto out_put_dev;
}
if ((real_dev->features & NETIF_F_HW_VLAN_RX) &&
(real_dev->vlan_rx_register == NULL ||
real_dev->vlan_rx_kill_vid == NULL)) {
- printk(VLAN_DBG __FUNCTION__ ": Device %s has buggy VLAN hw accel.\n",
- real_dev->name);
+ printk(VLAN_DBG "%s: Device %s has buggy VLAN hw accel.\n",
+ __FUNCTION__, real_dev->name);
goto out_put_dev;
}
if ((real_dev->features & NETIF_F_HW_VLAN_FILTER) &&
(real_dev->vlan_rx_add_vid == NULL ||
real_dev->vlan_rx_kill_vid == NULL)) {
- printk(VLAN_DBG __FUNCTION__ ": Device %s has buggy VLAN hw accel.\n",
- real_dev->name);
+ printk(VLAN_DBG "%s: Device %s has buggy VLAN hw accel.\n",
+ __FUNCTION__, real_dev->name);
goto out_put_dev;
}
@@ -371,7 +371,7 @@
if (r) {
/* was already registered. */
- printk(VLAN_DBG __FUNCTION__ ": ALREADY had VLAN registered\n");
+ printk(VLAN_DBG "%s: ALREADY had VLAN registered\n", __FUNCTION__);
goto out_unlock;
}
@@ -626,7 +626,7 @@
ret = unregister_vlan_dev(dev,
VLAN_DEV_INFO(vlandev)->vlan_id);
- unregister_netdev(vlandev);
+ unregister_netdevice(vlandev);
/* Group was destroyed? */
if (ret == 1)
@@ -665,7 +665,7 @@
args.u.device2[23] = 0;
#ifdef VLAN_DEBUG
- printk(VLAN_DBG __FUNCTION__ ": args.cmd: %x\n", args.cmd);
+ printk(VLAN_DBG "%s: args.cmd: %x\n", __FUNCTION__, args.cmd);
#endif
switch (args.cmd) {
@@ -728,8 +728,8 @@
default:
/* pass on to underlying device instead?? */
- printk(VLAN_DBG __FUNCTION__ ": Unknown VLAN CMD: %x \n",
- args.cmd);
+ printk(VLAN_DBG "%s: Unknown VLAN CMD: %x \n",
+ __FUNCTION__, args.cmd);
return -EINVAL;
};
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)