Re: [2.6 patch] let IPW2{1,2}00 select IEEE80211

2006-02-05 Thread Zhu Yi
On Sun, 2006-02-05 at 16:13 +0100, Adrian Bunk wrote: > From: Jan Niehusmann <[EMAIL PROTECTED]> > > This patch makes the IPW2100 and IPW2200 options available in > the configuration menu even if IEEE80211 has not been selected before. > This behaviour is more intuitive for people which are not fa

Re: [2.6 patch] wrong firmware location in IPW2100 Kconfig entry

2006-02-05 Thread Zhu Yi
On Tue, 2006-01-31 at 17:11 +0100, Adrian Bunk wrote: > From: Jesper Juhl <[EMAIL PROTECTED]> > > Firmware should go into /lib/firmware, not /etc/firmware. > > Found by Alejandro Bonilla. > > > Signed-off-by: Jesper Juhl <[EMAIL PROTECTED]> > Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Acke

Re: [Acx100-devel] [PATCH] acx: Transform semaphore to mutex

2006-02-05 Thread Denis Vlasenko
On Sunday 05 February 2006 17:56, Carlos Martín wrote: > Hi, > > The attached patch transform the semaphore to a mutex. That's how we use it, > it's faster and makes the binary smaller. It also deletes the semaphore debug > functions because I the kernel takes care of that now. Just yell if I'v

Re: instrumentation for TCP MTU probing

2006-02-05 Thread David S. Miller
From: John Heffner <[EMAIL PROTECTED]> Date: Thu, 2 Feb 2006 13:29:14 -0500 > This is a patch which adds instruments to the TCP MTU probing. It > breaks netstat -s because it extends the line length of > /proc/net/netstat past 1024 characters, so it is not safe to apply. > I'm sending it for refe

Re: [PATCH] TCP MTU probing

2006-02-05 Thread David S. Miller
From: John Heffner <[EMAIL PROTECTED]> Date: Thu, 2 Feb 2006 14:09:49 -0500 > On Thursday 02 February 2006 13:23, John Heffner wrote: > > Implementation of packetization layer path mtu discovery for TCP, based on > > the internet-draft currently found at > >

[Fwd: Re: [ipw2200] add monitor and qos entries to Kconfig]

2006-02-05 Thread Zhu Yi
Below patch is still not in upstream. Please apply. Acked-by: Zhu Yi <[EMAIL PROTECTED]> Thanks, -yi Forwarded Message From: Andreas Happe <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED], linux-kernel@vger.kernel.org Subject: Re: [ipw2200] add monitor and qos en

Re: [PATCH 6/6 revised] bnx2: Update version

2006-02-05 Thread David S. Miller
From: "Michael Chan" <[EMAIL PROTECTED]> Date: Thu, 02 Feb 2006 22:05:30 -0800 > Update version to 1.4.37. > > Add missing flush_scheduled_work() in bnx2_suspend as noted by Jeff > Garzik. > > Signed-off-by: Michael Chan <[EMAIL PROTECTED]> Looks good, added to net-2.6.17 Thanks Michael. - To

[PATCH][RFC] Shrink ip_vs_*.c includes

2006-02-05 Thread Roberto Nibali
Hello, This patch against the latest GIT HEAD reduces the includes to the necessary ones. I've compile-tested it against following (and s/y/m/) configuration on x86: CONFIG_IP_VS=y CONFIG_IP_VS_DEBUG=y CONFIG_IP_VS_TAB_BITS=12 CONFIG_IP_VS_PROTO_TCP=y CONFIG_IP_VS_PROTO_UDP=y CONFIG_IP_VS_PRO

Re: [PATCH 4/4] tg3: Update version and reldate

2006-02-05 Thread David S. Miller
From: "Michael Chan" <[EMAIL PROTECTED]> Date: Sun, 05 Feb 2006 14:14:07 -0800 > Update version to 3.50. > > Signed-off-by: Michael Chan <[EMAIL PROTECTED]> All 4 patches applied to net-2.6.17, thanks a lot Michael. - To unsubscribe from this list: send the line "unsubscribe netdev" in the body

[PATCH 4/4] tg3: Update version and reldate

2006-02-05 Thread Michael Chan
Update version to 3.50. Signed-off-by: Michael Chan <[EMAIL PROTECTED]> diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index e435b24..f147d73 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c @@ -69,8 +69,8 @@ #define DRV_MODULE_NAME"tg3" #define PFX DRV_MODULE_NAME

[PATCH 3/4] tg3: Support shutdown WoL.

2006-02-05 Thread Michael Chan
Support WoL during shutdown by calling tg3_set_power_state(tp, PCI_D3hot) during tg3_close(). Change the power state parameter to pci_power_t type and use constants defined in pci.h. Certain ethtool operations cannot be performed after tg3_close() because the device will go to low power state. Ad

[PATCH 2/4] tg3: Enable TSO by default

2006-02-05 Thread Michael Chan
Enable TSO by default on newer chips that support TSO in hardware. Leave TSO off by default on older chips that do firmware TSO because performance is slightly lower. Signed-off-by: Michael Chan <[EMAIL PROTECTED]> diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index c847b3e..fdf1cfe 100644

[PATCH 1/4] tg3: Add support for 5714S and 5715S

2006-02-05 Thread Michael Chan
Add support for 5714S and 5715S. Signed-off-by: Michael Chan <[EMAIL PROTECTED]> diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index e7dc653..c847b3e 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c @@ -223,8 +223,12 @@ static struct pci_device_id tg3_pci_tbl[ PCI_ANY_ID, PC

Re: [PATCH 3/3] wireless/atmel: convert constants to ieee80211 layer equivalents

2006-02-05 Thread Dan Williams
On Sun, 2006-02-05 at 17:57 -0500, Dan Williams wrote: > @@ -3096,11 +3058,13 @@ > } > } > > - if (status == C80211_MGMT_SC_AuthAlgNotSupported) { > + if (status == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) { > /* Do opensystem first, then try sharedkey */ > -

[PATCH] wireless/airo: fix setting TX key index plus key in ENCODEEXT

2006-02-05 Thread Dan Williams
The previous patch that added ENCODEEXT and AUTH support to the airo driver contained a slight error which would cause setting the TX key index ignore a valid key-set request at the same time. This patch allows any combination of setting the TX key index and setting an encryption key. Signed-off-

[PATCH 3/3] wireless/atmel: convert constants to ieee80211 layer equivalents

2006-02-05 Thread Dan Williams
This patch converts the Atmel driver-only IEEE 802.11 constants to their equivalents from the kernel's ieee80211 layer headers. Signed-off-by: Dan Williams <[EMAIL PROTECTED]> --- a/drivers/net/wireless/atmel.c 2006-02-05 12:06:45.0 -0500 +++ b/drivers/net/wireless/atmel.c 2006-

[PATCH 2/3] wireless/atmel: fix Open System authentication process bugs

2006-02-05 Thread Dan Williams
This patch fixes a number of bugs in the authentication process: 1) When falling back to Shared Key authentication mode from Open System, a missing 'return' would cause the auth request to be sent, but would drop the card into Management Error state. When falling back, the driver should also indi

[PATCH 1/3] wireless/atmel: fix setting TX key only in ENCODEEXT

2006-02-05 Thread Dan Williams
The previous patch that added ENCODEEXT and AUTH support to the atmel driver contained a slight error which would cause just setting the TX key index to also set the encryption key again. This patch allows any combination of setting the TX key index and setting an encryption key. Signed-off-by: D

[PATCH 0/3] wireless/atmel: WEXT and authentication fixes, constant conversion

2006-02-05 Thread Dan Williams
These patches are against John's wireless-2.6 tree. They replace the Atmel driver patches posted by me on Thu 02 Feb. The first two fix bugs in the handling of setting TX keys for ENCODEEXT functionality and the authentication process for Open System networks. The third converts 802.11-related c

Re: open bugzilla reports

2006-02-05 Thread Pavel Machek
On So 04-02-06 23:14:26, Russell King wrote: > On Sat, Feb 04, 2006 at 08:47:29AM -0800, Martin J. Bligh wrote: > > > > > > [Bug 5958] CF bluetooth card oopses machine when > > > > http://bugzilla.kernel.org/show_bug.cgi?id=5958 > > > > > > This isn't a serial bug - it's a bluetooth ldisc

Multicast trouble with Sun GEM in iBook

2006-02-05 Thread Juha-Matti Tapio
I have problems with receiving multicast on iBook's Sun GEM. 0002:20:0f.0 Ethernet controller: Apple Computer Inc. UniNorth 2 GMAC (Sun GEM) (rev 80) When I bring the interface up, it does not at first receive IPv6 multicast (waiting for a while does not help) which means that it does not proces

[Fwd: Problems with de2104x...]

2006-02-05 Thread John Bäckstrand
Original Message Subject: Problems with de2104x... Date: Sun, 05 Feb 2006 15:36:20 +0100 From: John Bäckstrand <[EMAIL PROTECTED]> To: linux-kernel@vger.kernel.org CC: [EMAIL PROTECTED] As others have reported on lkml ("Bad interaction between uhci_hcd and de2104x"), I'm havin

Re: [PATCH 0/2] wireless/atmel: WEXT and authentication fixes

2006-02-05 Thread Dan Williams
On Thu, 2006-02-02 at 11:42 -0500, Dan Williams wrote: > These two patches fix bugs in the Atmel driver's handing of WEXT and > authentication. The first fixes setting of the TX key only for the > ENCODEEXT functionality I added last week. The second fixes some bugs > in the authentication proces

[PATCH] acx: Transform semaphore to mutex

2006-02-05 Thread Carlos Martín
Hi, The attached patch transform the semaphore to a mutex. That's how we use it, it's faster and makes the binary smaller. It also deletes the semaphore debug functions because I the kernel takes care of that now. Just yell if I've misunderstood. textdata bss dec hex filena

[2.6 patch] let IPW2{1,2}00 select IEEE80211

2006-02-05 Thread Adrian Bunk
From: Jan Niehusmann <[EMAIL PROTECTED]> This patch makes the IPW2100 and IPW2200 options available in the configuration menu even if IEEE80211 has not been selected before. This behaviour is more intuitive for people which are not familiar with the driver internals. The suggestion for this change