* [patch] ipw2100: support WEXT-18 enc_capa v2
[not found] ` <43C282A5.6010609@pobox.com>
@ 2006-01-09 15:39 ` Dan Williams
2006-01-09 15:43 ` Jeff Garzik
2006-01-09 15:54 ` [patch] ipw2100: support WEXT-18 enc_capa v3 Dan Williams
1 sibling, 1 reply; 4+ messages in thread
From: Dan Williams @ 2006-01-09 15:39 UTC (permalink / raw)
To: Jeff Garzik; +Cc: jketreno, netdev, ipw2100-devel
Hi,
This patch allows ipw2100 driver to advertise the WPA-related encryption
options that it does really support. It's necessary to work correctly
with NetworkManager and other programs that actually check driver & card
capabilities.
Signed-off-by: Dan Williams <dcbw@redhat.com>
--- ipw2100.c.nowpa 2006-01-08 14:04:00.000000000 -0500
+++ ipw2100.c 2006-01-08 15:47:37.000000000 -0500
@@ -7236,7 +7236,7 @@
/* Set the Wireless Extension versions */
range->we_version_compiled = WIRELESS_EXT;
- range->we_version_source = 16;
+ range->we_version_source = 18;
// range->retry_capa; /* What retry options are supported */
// range->retry_flags; /* How to decode max/min retry limit */
@@ -7262,6 +7262,9 @@
}
range->num_frequency = val;
+ range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
+ IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
+
IPW_DEBUG_WX("GET Range\n");
return 0;
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] ipw2100: support WEXT-18 enc_capa v2
2006-01-09 15:39 ` [patch] ipw2100: support WEXT-18 enc_capa v2 Dan Williams
@ 2006-01-09 15:43 ` Jeff Garzik
0 siblings, 0 replies; 4+ messages in thread
From: Jeff Garzik @ 2006-01-09 15:43 UTC (permalink / raw)
To: Dan Williams; +Cc: jketreno, netdev, ipw2100-devel
Dan Williams wrote:
> Hi,
>
> This patch allows ipw2100 driver to advertise the WPA-related encryption
> options that it does really support. It's necessary to work correctly
> with NetworkManager and other programs that actually check driver & card
> capabilities.
>
> Signed-off-by: Dan Williams <dcbw@redhat.com>
>
> --- ipw2100.c.nowpa 2006-01-08 14:04:00.000000000 -0500
> +++ ipw2100.c 2006-01-08 15:47:37.000000000 -0500
Malformed patch:
Applying 'ipw2100: support WEXT-18 enc_capa v2'
error: ipw2100.c: does not exist in index
Please resend in correct format (applies with 'patch -sp1').
Jeff
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
^ permalink raw reply [flat|nested] 4+ messages in thread
* [patch] ipw2100: support WEXT-18 enc_capa v3
[not found] ` <43C282A5.6010609@pobox.com>
2006-01-09 15:39 ` [patch] ipw2100: support WEXT-18 enc_capa v2 Dan Williams
@ 2006-01-09 15:54 ` Dan Williams
2006-01-12 21:38 ` Jeff Garzik
1 sibling, 1 reply; 4+ messages in thread
From: Dan Williams @ 2006-01-09 15:54 UTC (permalink / raw)
To: Jeff Garzik; +Cc: jketreno, netdev, ipw2100-devel
Hi,
This patch allows ipw2100 driver to advertise the WPA-related encryption
options that it does really support. It's necessary to work correctly
with NetworkManager and other programs that actually check driver & card
capabilities.
Signed-off-by: Dan Williams <dcbw@redhat.com>
--- a/drivers/net/wireless/ipw2100.c 2006-01-08 14:04:00.000000000 -0500
+++ b/drivers/net/wireless/ipw2100.c 2006-01-08 15:47:37.000000000 -0500
@@ -7236,7 +7236,7 @@
/* Set the Wireless Extension versions */
range->we_version_compiled = WIRELESS_EXT;
- range->we_version_source = 16;
+ range->we_version_source = 18;
// range->retry_capa; /* What retry options are supported */
// range->retry_flags; /* How to decode max/min retry limit */
@@ -7262,6 +7262,9 @@
}
range->num_frequency = val;
+ range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
+ IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
+
IPW_DEBUG_WX("GET Range\n");
return 0;
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] ipw2100: support WEXT-18 enc_capa v3
2006-01-09 15:54 ` [patch] ipw2100: support WEXT-18 enc_capa v3 Dan Williams
@ 2006-01-12 21:38 ` Jeff Garzik
0 siblings, 0 replies; 4+ messages in thread
From: Jeff Garzik @ 2006-01-12 21:38 UTC (permalink / raw)
To: Dan Williams; +Cc: jketreno, netdev, ipw2100-devel
Dan Williams wrote:
> Hi,
>
> This patch allows ipw2100 driver to advertise the WPA-related encryption
> options that it does really support. It's necessary to work correctly
> with NetworkManager and other programs that actually check driver & card
> capabilities.
>
> Signed-off-by: Dan Williams <dcbw@redhat.com>
content OK, but:
[jgarzik@pretzel netdev-2.6]$ git-applymbox /g/tmp/mbox ~/info/signoff.txt
1 patch(es) to process.
Applying 'ipw2100: support WEXT-18 enc_capa v3'
error: patch failed: drivers/net/wireless/ipw2100.c:7236
error: drivers/net/wireless/ipw2100.c: patch does not apply
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-01-12 21:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1136820457.7941.4.camel@dhcp83-115.boston.redhat.com>
[not found] ` <43C282A5.6010609@pobox.com>
2006-01-09 15:39 ` [patch] ipw2100: support WEXT-18 enc_capa v2 Dan Williams
2006-01-09 15:43 ` Jeff Garzik
2006-01-09 15:54 ` [patch] ipw2100: support WEXT-18 enc_capa v3 Dan Williams
2006-01-12 21:38 ` Jeff Garzik
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).