netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: David Miller <davem@davemloft.net>
To: shemminger@vyatta.com
Cc: netdev@vger.kernel.org
Subject: Re: rndis_wlan netdev ops
Date: Wed, 25 Mar 2009 00:04:06 -0700 (PDT)	[thread overview]
Message-ID: <20090325.000406.207637897.davem@davemloft.net> (raw)
In-Reply-To: <20090323.143119.121196854.davem@davemloft.net>

From: David Miller <davem@davemloft.net>
Date: Mon, 23 Mar 2009 14:31:19 -0700 (PDT)

> From: Stephen Hemminger <shemminger@vyatta.com>
> Date: Mon, 23 Mar 2009 14:00:57 -0700
> 
> > On Mon, 23 Mar 2009 13:43:18 -0700 (PDT)
> > David Miller <davem@davemloft.net> wrote:
> > 
> > > Probably what we'll have to do for this case is allocate a
> > > netdev_ops copy so that the ->set_multicast_list can be set
> > > to a new value.  But that defeats the whole purpose of netdev
> > > ops so I assume you have other plans :-)
> > 
> > Why not just turn off the multicast bit in the device, or maybe
> > the hardware developer can implement set_multicast_list
> 
> We could just import the parent OPS into a local const netdevice_ops
> instance, that's how we handle this everywhere else.
> 
> To prevent changes in the parent being lost in the rndis driver we can
> encapsulate the ops assignments into a macro used by both.  Taking the
> set_multicast_list as an arg.
> 
> Alternatively the parent can provide a hook function pointer for this
> multicast operation, which the parent runs when non-NULL.

Here is how I ended up fixing this:

rndis_wlan: Fix build with netdev_ops compat disabled.

Instead of storing a private ->set_multicast_list, just
have a private netdev ops.

Signed-off-by: David S. Miller <davem@davemloft.net>
---
 drivers/net/wireless/rndis_wlan.c |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/rndis_wlan.c b/drivers/net/wireless/rndis_wlan.c
index 82af21e..db91db7 100644
--- a/drivers/net/wireless/rndis_wlan.c
+++ b/drivers/net/wireless/rndis_wlan.c
@@ -2524,6 +2524,17 @@ static int bcm4320_early_init(struct usbnet *usbdev)
 	return 0;
 }
 
+/* same as rndis_netdev_ops but with local multicast handler */
+static const struct net_device_ops rndis_wext_netdev_ops = {
+	.ndo_open		= usbnet_open,
+	.ndo_stop		= usbnet_stop,
+	.ndo_start_xmit		= usbnet_start_xmit,
+	.ndo_tx_timeout		= usbnet_tx_timeout,
+	.ndo_set_mac_address 	= eth_mac_addr,
+	.ndo_validate_addr	= eth_validate_addr,
+	.ndo_set_multicast_list	= rndis_wext_set_multicast_list,
+};
+
 
 static int rndis_wext_bind(struct usbnet *usbdev, struct usb_interface *intf)
 {
@@ -2559,7 +2570,8 @@ static int rndis_wext_bind(struct usbnet *usbdev, struct usb_interface *intf)
 	 * rndis_host wants to avoid all OID as much as possible
 	 * so do promisc/multicast handling in rndis_wext.
 	 */
-	usbdev->net->set_multicast_list = rndis_wext_set_multicast_list;
+	usbdev->net->netdev_ops = &rndis_wext_netdev_ops;
+
 	tmp = RNDIS_PACKET_TYPE_DIRECTED | RNDIS_PACKET_TYPE_BROADCAST;
 	retval = rndis_set_oid(usbdev, OID_GEN_CURRENT_PACKET_FILTER, &tmp,
 								sizeof(tmp));
-- 
1.6.2.1.222.g570cc


      reply	other threads:[~2009-03-25  7:04 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-23 20:43 rndis_wlan netdev ops David Miller
2009-03-23 21:00 ` Stephen Hemminger
2009-03-23 21:31   ` David Miller
2009-03-25  7:04     ` David Miller [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090325.000406.207637897.davem@davemloft.net \
    --to=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=shemminger@vyatta.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).