Re: [1/1] connector: fix compilation breakage introduced recently.

2006-12-18 Thread Evgeniy Polyakov
On Sun, Dec 17, 2006 at 05:09:58PM -0800, David Miller ([EMAIL PROTECTED]) wrote: From: Evgeniy Polyakov [EMAIL PROTECTED] Date: Sun, 17 Dec 2006 14:29:46 +0300 Linus has changed work queue structure and has not tested it with connector compiled in, his changes break the build.

RE: [PATCH 6/6] d80211: add sysfs interface for QoS functions

2006-12-18 Thread Zhu Yi
On Thu, 2006-12-14 at 21:35 -0800, Simon Barber wrote: This is all part of the client MLME - it would be much better to add this functionality to wpa_supplicant, rather than adding it to the kernel. Nothing here needs to be in the kernel for any reason. Theoretically, the whole network stack

RE: [PATCH 4/6] d80211: add IEEE802.11e/WMM Traffic Stream (TS) Management support

2006-12-18 Thread Zhu Yi
On Thu, 2006-12-14 at 21:45 -0800, Simon Barber wrote: This policing of media time must be done in the qdisc - and made to work per DA (Destination Address) - in order that AP mode will work as well as STA mode. In addition the count of used time should be updated AFTER the frame has been

RE: [PATCH 5/6] d80211: add IEEE 802.11e Direct Link Setup (DLS) support

2006-12-18 Thread Zhu Yi
On Thu, 2006-12-14 at 21:48 -0800, Simon Barber wrote: Again - this DLS management frame processing code should not be in the kernel - it should be in wpa_supplicant. Only the frame processing code should be in the kernel. OK. The DLS management process code needs the decision making from

Re: [1/1] connector: replace delayed work with usual work queue.

2006-12-18 Thread David Miller
From: Evgeniy Polyakov [EMAIL PROTECTED] Date: Mon, 18 Dec 2006 12:44:35 +0300 Signed-off-by: Evgeniy Polyakov [EMAIL PROTECTED] Applied, thanks Evegniy. - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at

[PATCH 1/5] myri10ge: match number of save_state and restore

2006-12-18 Thread Brice Goglin
Since pci_save_state() pushes MSI and PCIe states on a kind of stack, myri10ge saving the state in advance for parity recovery will push the state again on the stack on suspend. This leads to some memory leak. We add a couple additional calls to save_state and restore_state so that we don't leak

[PATCH 2/5] myri10ge: move request_irq to myri10ge_open

2006-12-18 Thread Brice Goglin
Request IRQ in myri10ge_open() and free in close() instead of probe() and remove() to eliminate potential race between the watchdog and the interrupt handler. Additionaly, the interrupt handler won't get called on shared irq anymore when the interface is down. Signed-off-by: Brice Goglin [EMAIL

[PATCH 3/5] myri10ge: make msi configurable at runtime through sysfs

2006-12-18 Thread Brice Goglin
Now that IRQ are requested is called on open() and freed on close(), we can safely switch from/to MSI without unloading the module. We are guaranteed to correctly free IRQ even if the sysfs file got written in the meantime since the MSI initialization is stored in mgp-msi_enabled. Signed-off-by:

[PATCH 5/5] myri10ge: handle failures in suspend and resume

2006-12-18 Thread Brice Goglin
On suspend, handle pci_set_power_state errors, and on resume handle failures in pci_resume_state(). Signed-off-by: Brice Goglin [EMAIL PROTECTED] Signed-off-by: Stephen Hemminger [EMAIL PROTECTED] --- drivers/net/myri10ge/myri10ge.c | 12 +++- 1 file changed, 7 insertions(+), 5

[PATCH 0/5] myri10ge: IRQ and pci state cleanups

2006-12-18 Thread Brice Goglin
Hi Jeff, While testing Stephen Hemminger's patch to cleanup the save/restore_state in myri10ge, we discovered some problems in our code. First, since the MSI and PCIe state is saved on a kind of stack, we leak some memory by saving the state both for parity recovery and on suspend. Additionaly,

[PATCH 4/5] myri10ge: no need to save MSI and PCIe state in the driver

2006-12-18 Thread Brice Goglin
The PCI MSI and express state are already saved and restored by the current versions of pci_save_state/pci_restore_state. Therefore it is no longer necessary for the driver to do it. Signed-off-by: Brice Goglin [EMAIL PROTECTED] Signed-off-by: Stephen Hemminger [EMAIL PROTECTED] ---

Re: [PATCH] [IPVS] transparent proxying

2006-12-18 Thread Thomas Graf
* Horms [EMAIL PROTECTED] 2006-12-18 12:19 On Wed, Nov 29, 2006 at 11:46:22PM +0900, Horms wrote: On Wed, Nov 29, 2006 at 03:15:23PM +0100, Thomas Graf wrote: [split] This patch seems to be based on an old tree, I've renamed nfmark to mark in net-2.6.20. The term fwmark and nfmark

[PATCH 7/8] NetXen: Fix for PPC machines.

2006-12-18 Thread Amit S. Kale
Signed-off-by: Amit S. Kale [EMAIL PROTECTED] netxen_nic.h |2 +- netxen_nic_init.c | 12 ++-- netxen_nic_main.c |4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/net/netxen/netxen_nic.h b/drivers/net/netxen/netxen_nic.h index

[PATCH 8/8] NetXen: Reducing ring sizes for IOMMU issue.

2006-12-18 Thread Amit S. Kale
Signed-off-by: Amit S. Kale [EMAIL PROTECTED] netxen_nic.h | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/net/netxen/netxen_nic.h b/drivers/net/netxen/netxen_nic.h index fe9bff0..32032b0 100644 --- a/drivers/net/netxen/netxen_nic.h +++

[PATCH 4/8] NetXen: Multiple adapter fix.

2006-12-18 Thread Amit S. Kale
Signed-off-by: Amit S. Kale [EMAIL PROTECTED] netxen_nic.h |3 +-- netxen_nic_main.c | 12 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/drivers/net/netxen/netxen_nic.h b/drivers/net/netxen/netxen_nic.h index b5410be..421a074 100644 ---

[PATCH 6/8] NetXen: work queue fixes.

2006-12-18 Thread Amit S. Kale
Signed-off-by: Amit S. Kale [EMAIL PROTECTED] netxen_nic.h |3 +-- netxen_nic_init.c |2 +- netxen_nic_main.c | 15 +++ 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/drivers/net/netxen/netxen_nic.h b/drivers/net/netxen/netxen_nic.h index

[PATCH 0/8] NetXen: 1G/10G Ethernet Driver updates

2006-12-18 Thread Amit S. Kale
I will be sending NetXen: 1G/10G Ethernet Driver updates in subsequent emails. Thanks, --Amit - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH 5/8] NetXen: Link status message correction for quad port cards.

2006-12-18 Thread Amit S. Kale
Signed-off-by: Amit S. Kale [EMAIL PROTECTED] netxen_nic_isr.c |3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/netxen/netxen_nic_isr.c b/drivers/net/netxen/netxen_nic_isr.c index 1b45f50..06847d4 100644 --- a/drivers/net/netxen/netxen_nic_isr.c +++

OOPS, bug in geth.c ?

2006-12-18 Thread Joakim Tjernlund
Someone just looped the ethernet in the lab and this happend in my 2.6.19-rc5 when booting. After 180 seconds the system tried to restart but that resulted in another OOPS and so on. Jocke NETDEV WATCHDOG: eth0: transmit timed out Badness in free_irq at kernel/irq/manage.c:353 Call Trace:

Re: [PATCH] Update ucc_geth.c for new workqueue structure

2006-12-18 Thread Kumar Gala
Jeff, Can you pickup this patch for 2.6.20 as it fixes a compile issue due to the workqueue changes. - kumar On Dec 13, 2006, at 5:08 PM, [EMAIL PROTECTED] wrote: From: Timur Tabi [EMAIL PROTECTED] The workqueue interface changed with David Howell's patch on 11/22/2006 (SHA

Re: [PATCH] Fix phy_read/write redefinition errors in ucc_geth_phy.c

2006-12-18 Thread Kumar Gala
Jeff, Can you pickup this patch for 2.6.20. It addresses a name conflict issue with the phylib and the phy handling in the ucc driver. thanks - k On Dec 13, 2006, at 5:08 PM, [EMAIL PROTECTED] wrote: From: Timur Tabi [EMAIL PROTECTED] The local versions of phy_read() and phy_write() in

Re: [PATCH 0/2] A bugfix patchset for NetLabel

2006-12-18 Thread Paul Moore
James Morris wrote: On Fri, 15 Dec 2006, [EMAIL PROTECTED] wrote: This patch set fixes two bugs that were found recently when adding new CIPSOv4 DOI definitions. These patches are pretty small and have been tested by a few different people on several different platforms. Applied to

Re: [PATCH] ieee80211: WLAN_GET_SEQ_SEQ fix

2006-12-18 Thread Larry Finger
Zhu Yi wrote: Signed-off-by: Zhu Yi [EMAIL PROTECTED] diff --git a/include/net/ieee80211.h b/include/net/ieee80211.h index e6af381..e02d85f 100644 --- a/include/net/ieee80211.h +++ b/include/net/ieee80211.h @@ -218,7 +218,7 @@ struct ieee80211_snap_hdr { #define WLAN_FC_GET_STYPE(fc) ((fc)

Re: [PATCH 0/2] A bugfix patchset for NetLabel

2006-12-18 Thread James Morris
On Mon, 18 Dec 2006, Paul Moore wrote: ... however, I still think this might qualify for the 2.6.19 stable kernel. When a MLS sensitivity level or category maps to zero then whenever the NetLabel subsystem is called to resolve the security attributes of a packet it will, in certain

Re: [PATCH] d80211: add radiotap support

2006-12-18 Thread David Kimdon
On Sat, Dec 16, 2006 at 06:01:03PM -0500, Michael Wu wrote: skb-mac.raw = skb-data; skb-ip_summed = CHECKSUM_UNNECESSARY; skb-pkt_type = PACKET_OTHERHOST; - skb-protocol = htons(ETH_P_802_2); + skb-protocol = __constant_htons(ETH_P_802_2); memset(skb-cb, 0,

Re: [PATCH] d80211: add radiotap support

2006-12-18 Thread Michael Wu
On Monday 18 December 2006 12:20, David Kimdon wrote: htons and friends can handle determining the argument is a constant on their own, so this change should be dropped. Hm, appears so. Didn't know that. I'll resend the patch without this change. Thanks, -Michael Wu pgpAgXQMS5hq0.pgp

Re: [PATCH 5/5] myri10ge: handle failures in suspend and resume

2006-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2006 11:52:34 +0100 Brice Goglin [EMAIL PROTECTED] wrote: On suspend, handle pci_set_power_state errors, and on resume handle failures in pci_resume_state(). Thanks for working on this, it looks like I kicked over a rock... -- Stephen Hemminger [EMAIL PROTECTED] - To

Re: 2.6.20-rc1 sky2 problems (regression?)

2006-12-18 Thread Alex Romosan
Stephen Hemminger [EMAIL PROTECTED] writes: I fixed a bunch of stuff (see ChangeLog) and made a 2.6.19 or later version see: http://developer.osdl.org/shemminger/prototypes/sk98lin-8.41.tar.gz It is too noisy in the console log, because it shows how many times the driver dope slaps

Re: 2.6.20-rc1 sky2 problems (regression?)

2006-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2006 10:24:59 -0800 Alex Romosan [EMAIL PROTECTED] wrote: Stephen Hemminger [EMAIL PROTECTED] writes: I fixed a bunch of stuff (see ChangeLog) and made a 2.6.19 or later version see: http://developer.osdl.org/shemminger/prototypes/sk98lin-8.41.tar.gz It is too

Re: [PATCH] d80211: add radiotap support

2006-12-18 Thread Michael Wu
On Monday 18 December 2006 14:31, Jiri Benc wrote: Shouldn't the stack create the radiotap header for the driver? I will replace the current avs header generating code with basic (fixed len header) radiotap code too, but since radiotap is a variable length header, it is easier for the driver

Re: [PATCH] p54: Fix compilation for d80211 hwmode API change

2006-12-18 Thread Jiri Benc
On Fri, 15 Dec 2006 23:37:41 +0100, Michael Buesch wrote: So, I think it should also work, if you call register_hwmode before register_hw. Jiri? Yes, that works. --- Subject: [PATCH] d80211: small documentation fix ieee80211_register_hwmode is allowed to be called before

Re: [PATCH] Marvell Libertas 8388 802.11b/g USB driver

2006-12-18 Thread Marcelo Tosatti
/* Channel flags. */ Did you send this part to netbsd also? We really don't want to fork radiotap. ;) Also, this should be in a separate patch, but I'm guessing it's all rolled together for convenience. No, especially since NetBSD is where I keep the authoritative definitions.

[PATCH] d80211: add radiotap support (v2)

2006-12-18 Thread Michael Wu
d80211: add radiotap support This patch adds support for radiotap to d80211. The driver must set IEEE80211_HW_MONITOR_DURING_OPER as well as IEEE80211_HW_RADIOTAP_SUPPORTED, and it must send radiotap frames when there is at least one monitor interface up. Tested with zd1211rw-d80211.

Re: Fw: [Bugme-new] [Bug 7696] New: b44 driver doesn't work under heavy load

2006-12-18 Thread Michael Chan
On Sun, 2006-12-17 at 02:50 -0800, Andrew Morton wrote: Begin forwarded message: Date: Sun, 17 Dec 2006 02:20:59 -0800 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [Bugme-new] [Bug 7696] New: b44 driver doesn't work under heavy load

Re: [Bugme-new] [Bug 7708] New: unregister_netdev() should return unregister_netdevice() return code

2006-12-18 Thread Andrew Morton
On Mon, 18 Dec 2006 14:56:31 -0800 [EMAIL PROTECTED] wrote: http://bugzilla.kernel.org/show_bug.cgi?id=7708 Summary: unregister_netdev() should return unregister_netdevice() return code Kernel Version: 2.6.19.1 Status: NEW Severity:

Re: [Bugme-new] [Bug 7708] New: unregister_netdev() should return unregister_netdevice() return code

2006-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2006 15:21:11 -0800 Andrew Morton [EMAIL PROTECTED] wrote: On Mon, 18 Dec 2006 14:56:31 -0800 [EMAIL PROTECTED] wrote: http://bugzilla.kernel.org/show_bug.cgi?id=7708 Summary: unregister_netdev() should return unregister_netdevice()

Re: [ANN] Acrypto asynchronous crypto layer 2.6.19 release.

2006-12-18 Thread Evgeniy Polyakov
On Mon, Dec 18, 2006 at 08:38:54AM +0100, Andreas Jellinghaus ([EMAIL PROTECTED]) wrote: Does acrypto still have the same size restrictions I ran into with the last release? Actually I do not recall what is 'size retrictions' - if you talk about possibility to use software crypto provider,

Re: [BUG KERNEL 2.6.20-rc1] ftp: get or put stops during file-transfer

2006-12-18 Thread Komuro
What network cards are in the client and the server? DL10022-based pcmcia network card(both client and server) The driver name is pcnet_cs. Are there any error messages your client gives or in the log files? no error messages. I capture the packet of ftp transfer by ethereal. I found the

Re: [ANN] Acrypto asynchronous crypto layer 2.6.19 release.

2006-12-18 Thread Evgeniy Polyakov
On Mon, Dec 18, 2006 at 02:00:26PM +0100, Andreas Jellinghaus ([EMAIL PROTECTED]) wrote: Evgeniy Polyakov wrote: Actually I do not recall what is 'size retrictions' - if you talk about possibility to use software crypto provider, which supports one cipher in a time, then yes, but it is

Re: [ANN] Acrypto asynchronous crypto layer 2.6.19 release.

2006-12-18 Thread Andreas Jellinghaus
Evgeniy Polyakov wrote: Actually I do not recall what is 'size retrictions' - if you talk about possibility to use software crypto provider, which supports one cipher in a time, then yes, but it is intended to be used with hardware though. Otherwise I do not recall any problems pointed to me.

Re: watchdog timeout panic in e1000 driver

2006-12-18 Thread Kenzo Iwami
Hi, Previously, I posted a patch that fixed this problem without using spinlocks nor disabling interrupts. I have rebased this patch for 2.6.20-rc1. Does this patch have problems? I welcome any comments. -- Kenzo Iwami ([EMAIL PROTECTED]) Signed-off-by: Kenzo Iwami [EMAIL PROTECTED] diff

Re: [PATCH]Fix BUG of ip_rt_send_redirect()

2006-12-18 Thread David Miller
From: Li Yewang [EMAIL PROTECTED] Date: Tue, 19 Dec 2006 09:45:25 +0800 David Miller [EMAIL PROTECTED] wrote: Applied, but I had to fix many errors in your patch by hand. Please take care of these details next time. Here, your email client wrapped the lines in the patch, corrupting

Re: [PATCH] ieee80211: WLAN_GET_SEQ_SEQ fix

2006-12-18 Thread Zhu Yi
On Mon, 2006-12-18 at 10:50 -0600, Larry Finger wrote: Shouldn't this fix have some commit message like The WLAN_GET_SEQ_SEQ(seq) macro in ieee80211 is selecting the wrong region.? That said, the fix conforms with the IEEE802.11 specs. Signed-off-by: Larry Finger [EMAIL PROTECTED] OK.

[PATCH] via-velocity uses INET interfaces

2006-12-18 Thread Randy Dunlap
From: Randy Dunlap [EMAIL PROTECTED] via-velocity doesn't build when CONFIG_INET=n: drivers/built-in.o: In function `velocity_unregister_notifier': via-velocity.c:(.text+0xe9b46): undefined reference to `unregister_inetaddr_notifier' drivers/built-in.o: In function `velocity_init_module':

Re: Bug#396185: sky2 freezes in 2.6.17-2-686. Maintainer confirms that it should be fixed in 2.6.19-git tree.

2006-12-18 Thread Evgeniy Polyakov
On Mon, Dec 18, 2006 at 09:17:28AM -0800, Stephen Hemminger ([EMAIL PROTECTED]) wrote: Bug with freeze also exists in 2.6.18-3 (package version 2.6.18-7) - no messages in dmesg, no interrupts. It is dual lan board with only one port being used. rmmod/modprobe sequence brings NIC back to

[2.6 patch] drivers/atm/fore200e.c: cleanups

2006-12-18 Thread Adrian Bunk
This patch contains the following transformations from custom functions to standard kernel version: - fore200e_kmalloc() - kzalloc() - fore200e_kfree() - kfree() - fore200e_swap() - cpu_to_be32() Signed-off-by: Adrian Bunk [EMAIL PROTECTED] --- drivers/atm/fore200e.c | 166

[2.6 patch] drivers/atm/Kconfig: remove dead ATM_TNETA1570 option

2006-12-18 Thread Adrian Bunk
This patch removes the unconverted ATM_TNETA1570 option that also lacks any code in the kernel. Signed-off-by: Adrian Bunk [EMAIL PROTECTED] --- linux-2.6.20-rc1-mm1/drivers/atm/Kconfig.old2006-12-19 04:42:00.0 +0100 +++ linux-2.6.20-rc1-mm1/drivers/atm/Kconfig2006-12-19