From: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
To: David Brownell <david-b@pacbell.net>
Cc: bjd@jooz.net, netdev@vger.kernel.org, linux-wireless@vger.kernel.org
Subject: Re: [PATCH 6/8] [PATCH] Split up rndis_host.c
Date: Thu, 17 Jan 2008 22:40:30 +0200 [thread overview]
Message-ID: <1200602430.16510.0.camel@localhost> (raw)
In-Reply-To: <200801080319.23299.david-b@pacbell.net>
On Tue, 2008-01-08 at 03:19 -0800, David Brownell wrote:
> > Our
> > module version checks OID_GEN_PHYSICAL_MEDIUM in generic_rndis_bind,
> > with rndis_host bind fails if OID is supported and wireless media
type
> > is returned, with rndis_wext if OID isn't supported or type isn't
> > wireless. Should this be ok?
>
> Sounds like if you can go the different-modules route, then
rndis_bind()
> should maybe accept a parameter giving it that option. Then
>
> rndis_wlan_bind(...) == rndis_bind(..., check_wlan_media)
> rndis_generic_bind(...) == rndis_bind(..., non_wlan_media)
>
> That would be getting pretty complicated, since as you say the same
> USB-level binding (hence hotplugging) would need to kick in ... but
> having different modules for different RNDIS flavors would need a
> new hotplug mechanism keying on media type. Ugh.
Different modules works with rndis_generic_bind(..., media type option).
dmesg shows following:
[11214.496773] usb 3-3: new high speed USB device using ehci_hcd and
address 7
[11214.622861] usb 3-3: configuration #1 chosen from 1 choice
[11214.784874] usbcore: registered new interface driver cdc_ether
[11214.805700] rndis_host 3-3:1.0: driver requires wired physical
medium, but device is wireless.
[11214.806823] usbcore: registered new interface driver rndis_host
[11215.190824] wlan0: register 'rndis_wext' at usb-0000:00:10.3-3,
Wireless RNDIS device, 00:xx:xx:xx:xx:xx
[11215.190853] usbcore: registered new interface driver rndis_wext
[11215.398850] rndis_wext 3-3:1.0: rndis media disconnect
I assume that rndis_host gets always bind first as it's first in
alphabetic, so rndis_wext is only loaded if RNDIS device has wireless
media type.
I have new patchset that prepares rndis_host/usbnet for separate
rndis_wext but not sure should I submit (I haven't managed to get into
contact with Bjorge Dijkstra for 3,5 weeks now to have him decide how to
proceed).
- Jussi Kivilinna
WARNING: multiple messages have this Message-ID (diff)
From: Jussi Kivilinna <jussi.kivilinna-E01nCVcF24I@public.gmane.org>
To: David Brownell <david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org>
Cc: bjd-a1rhEgazXTw@public.gmane.org,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 6/8] [PATCH] Split up rndis_host.c
Date: Thu, 17 Jan 2008 22:40:30 +0200 [thread overview]
Message-ID: <1200602430.16510.0.camel@localhost> (raw)
In-Reply-To: <200801080319.23299.david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org>
On Tue, 2008-01-08 at 03:19 -0800, David Brownell wrote:
> > Our
> > module version checks OID_GEN_PHYSICAL_MEDIUM in generic_rndis_bind,
> > with rndis_host bind fails if OID is supported and wireless media
type
> > is returned, with rndis_wext if OID isn't supported or type isn't
> > wireless. Should this be ok?
>
> Sounds like if you can go the different-modules route, then
rndis_bind()
> should maybe accept a parameter giving it that option. Then
>
> rndis_wlan_bind(...) == rndis_bind(..., check_wlan_media)
> rndis_generic_bind(...) == rndis_bind(..., non_wlan_media)
>
> That would be getting pretty complicated, since as you say the same
> USB-level binding (hence hotplugging) would need to kick in ... but
> having different modules for different RNDIS flavors would need a
> new hotplug mechanism keying on media type. Ugh.
Different modules works with rndis_generic_bind(..., media type option).
dmesg shows following:
[11214.496773] usb 3-3: new high speed USB device using ehci_hcd and
address 7
[11214.622861] usb 3-3: configuration #1 chosen from 1 choice
[11214.784874] usbcore: registered new interface driver cdc_ether
[11214.805700] rndis_host 3-3:1.0: driver requires wired physical
medium, but device is wireless.
[11214.806823] usbcore: registered new interface driver rndis_host
[11215.190824] wlan0: register 'rndis_wext' at usb-0000:00:10.3-3,
Wireless RNDIS device, 00:xx:xx:xx:xx:xx
[11215.190853] usbcore: registered new interface driver rndis_wext
[11215.398850] rndis_wext 3-3:1.0: rndis media disconnect
I assume that rndis_host gets always bind first as it's first in
alphabetic, so rndis_wext is only loaded if RNDIS device has wireless
media type.
I have new patchset that prepares rndis_host/usbnet for separate
rndis_wext but not sure should I submit (I haven't managed to get into
contact with Bjorge Dijkstra for 3,5 weeks now to have him decide how to
proceed).
- Jussi Kivilinna
next prev parent reply other threads:[~2008-01-17 20:40 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-12-22 21:51 [PATCH 0/8] RFC: Wireless Extensions for rndis_host Bjorge Dijkstra
2007-12-22 21:51 ` [PATCH 1/8] Fix sparse warning: returning void-valued expression Bjorge Dijkstra
2007-12-22 21:51 ` Bjorge Dijkstra
2007-12-23 0:42 ` David Brownell
2007-12-23 0:42 ` David Brownell
2007-12-22 21:51 ` [PATCH 2/8] [PATCH] Hardwire CDC descriptors when missing Bjorge Dijkstra
2007-12-23 0:49 ` David Brownell
2007-12-22 21:51 ` [PATCH 3/8] [PATCH] Use 1KB buffer in rndis_unbind Bjorge Dijkstra
2007-12-23 0:51 ` David Brownell
2007-12-23 0:51 ` David Brownell
2007-12-22 21:51 ` [PATCH 4/8] [PATCH] Halt device if rndis_bind fails Bjorge Dijkstra
2007-12-22 21:51 ` Bjorge Dijkstra
2007-12-23 0:54 ` David Brownell
2007-12-22 21:51 ` [PATCH 5/8] Fix rndis packet filter flags Bjorge Dijkstra
2007-12-22 21:51 ` Bjorge Dijkstra
2007-12-23 1:06 ` David Brownell
2007-12-22 21:51 ` [PATCH 6/8] [PATCH] Split up rndis_host.c Bjorge Dijkstra
2007-12-23 1:17 ` David Brownell
2008-01-02 20:13 ` Jussi Kivilinna
2008-01-02 20:13 ` Jussi Kivilinna
2008-01-08 11:19 ` David Brownell
2008-01-08 17:32 ` Johannes Berg
2008-01-08 17:32 ` Johannes Berg
2008-01-08 18:49 ` David Brownell
2008-01-08 18:49 ` David Brownell
2008-01-17 20:40 ` Jussi Kivilinna [this message]
2008-01-17 20:40 ` Jussi Kivilinna
2007-12-22 21:51 ` [PATCH 7/8] Add Wireless Extensions to rndis_host Bjorge Dijkstra
2007-12-23 1:27 ` David Brownell
2007-12-23 1:27 ` David Brownell
2007-12-22 21:51 ` [PATCH 8/8] [PATCH] Use wlan device name for RNDIS wireless devices Bjorge Dijkstra
2007-12-22 21:51 ` Bjorge Dijkstra
2007-12-23 1:30 ` David Brownell
2007-12-23 1:30 ` David Brownell
2007-12-23 1:49 ` [PATCH 0/8] RFC: Wireless Extensions for rndis_host David Brownell
2007-12-23 1:49 ` David Brownell
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=1200602430.16510.0.camel@localhost \
--to=jussi.kivilinna@mbnet.fi \
--cc=bjd@jooz.net \
--cc=david-b@pacbell.net \
--cc=linux-wireless@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.