patch-2.3.14 linux/net/core/dev_mcast.c
Next file: linux/net/core/dst.c
Previous file: linux/net/core/dev.c
Back to the patch index
Back to the overall index
- Lines: 45
- Date:
Wed Aug 18 11:38:48 1999
- Orig file:
v2.3.13/linux/net/core/dev_mcast.c
- Orig date:
Wed Jun 9 14:45:36 1999
diff -u --recursive --new-file v2.3.13/linux/net/core/dev_mcast.c linux/net/core/dev_mcast.c
@@ -68,7 +68,7 @@
* Update the multicast list into the physical NIC controller.
*/
-void dev_mc_upload(struct device *dev)
+void dev_mc_upload(struct net_device *dev)
{
/* Don't do anything till we up the interface
[dev_open will call this function so the list will
@@ -97,7 +97,7 @@
* Delete a device level multicast
*/
-int dev_mc_delete(struct device *dev, void *addr, int alen, int glbl)
+int dev_mc_delete(struct net_device *dev, void *addr, int alen, int glbl)
{
int err = 0;
struct dev_mc_list *dmi, **dmip;
@@ -144,7 +144,7 @@
* Add a device level multicast
*/
-int dev_mc_add(struct device *dev, void *addr, int alen, int glbl)
+int dev_mc_add(struct net_device *dev, void *addr, int alen, int glbl)
{
int err = 0;
struct dev_mc_list *dmi, *dmi1;
@@ -194,7 +194,7 @@
* Discard multicast list when a device is downed
*/
-void dev_mc_discard(struct device *dev)
+void dev_mc_discard(struct net_device *dev)
{
write_lock_bh(&dev_mc_lock);
while (dev->mc_list!=NULL) {
@@ -215,7 +215,7 @@
off_t pos=0, begin=0;
struct dev_mc_list *m;
int len=0;
- struct device *dev;
+ struct net_device *dev;
read_lock(&dev_base_lock);
for (dev = dev_base; dev; dev = dev->next) {
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)