Re: [2.6.15] running tcpdump on 3c905b causes freeze (reproducable)

2006-01-09 Thread Andrew Morton
Folkert van Heusden <[EMAIL PROTECTED]> wrote: > > > > Have you tried enabling the NMI watchdog? Enable CONFIG_X86_LOCAL_APIC > > > and > > > boot with `nmi_watchdog=1' on the command line, make sure that the NMI > > > line > > > of /proc/interrupts is incrementing. > > I'll give it a try. I've

Re: State of the Union: Wireless

2006-01-09 Thread Denis Vlasenko
On Friday 06 January 2006 06:22, Jeff Garzik wrote: > > State of the Union - Wireless > January 5, 2006 [ snip ] > * Wireless drivers and the wireless stack need to be maintained IN-TREE > as a COLLECTIVE ENTITY, not piecemeal maintenance as its done now. > >

RFC: kill acx100-devel, migrate to netdev@vger.kernel.org

2006-01-09 Thread Denis Vlasenko
Hi folks, Please read http://lkml.org/lkml/2006/1/5/671 What about moving all acx development discussion to [EMAIL PROTECTED] If yes, can acx100-devel address be automatically redirected? -- vda - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAI

[2.6.15 patch] wireless/atmel: add IWENCODEEXT, IWAUTH, and association event support

2006-01-09 Thread Dan Williams
Hi, This patch allows the Atmel driver to work correctly with wpa_supplicant and other programs that require some conformance with WEXT-18. It should not affect current behavior of the driver. The patch does four things: 1) Implements SIOCSIWENCODEEXT, SIOCGIWENCODEEXT, SIOCSIWAUTH, and SIOCGIW

[PATCH 1/2 RESEND- 2.6.15] net: 32 bit (socket layer) ioctl emulation for 64 bit kernels

2006-01-09 Thread Shaun Pereira
Hi Arnd, Arnaldo Thanks for your comments. I initially did not wish to change any of the other modules, but based on Arnd's comments I have removed the extra macro, SOCKOPS_COMPAT_WRAP and use the original SOCKOPS_WRAP. I'm a bit pressed for time to use the lock_sock() in each of the functions p

[PATCH 2/2 - 2.6.15]net:32 bit (socket layer) ioctl emulation for 64 bit kernels

2006-01-09 Thread Shaun Pereira
x25 module patch diff -uprN -X dontdiff linux-2.6.15-vanilla/include/net/x25.h linux-2.6.15/include/net/x25.h --- linux-2.6.15-vanilla/include/net/x25.h 2006-01-03 14:21:10.0 +1100 +++ linux-2.6.15/include/net/x25.h 2006-01-10 16:15:16.0 +1100 @@ -223,6 +223,18 @@ extern

[PATCH netdev-2.6 3/3] e100: Fix whitespace

2006-01-09 Thread Jeff Kirsher
e100 whitespace fixes These are whitespace only fixes. Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> --- drivers/net/e100.c | 74 ++-- 1 files

[PATCH netdev-2.6 2/3] e100: Handle return values from pci_* functions

2006-01-09 Thread Jeff Kirsher
Handle the return values from pci_* functions This is to resolve warnings during compile time. Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> --- drivers/net/e100.c | 30 ++

[PATCH netdev-2.6 1/3] e100: Fix TX hang and RMCP ping

2006-01-09 Thread Jeff Kirsher
Fix TX hang and RMCP Ping issue (due to a microcode loading issue) The large number of lines changed for this patch are due to several fuctions moving in order to be called from a new function. Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Sig

[PATCH netdev-2.6 0/3] e100: driver update

2006-01-09 Thread Jeff Kirsher
e100 driver update Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> 1. Fix TX hang and RMCP Ping issue (due to a microcode loading issue) 2. Handle the return values from pci_* functions 3. e100 whi

Re: PROBLEM: bug in e1000 module causes very high CPU load

2006-01-09 Thread Jesse Brandeburg
On 12/23/05, Leroy van Logchem <[EMAIL PROTECTED]> wrote: > > > Yes, let the server act as usual, it just starts happening out of the blue. > > No new hardware has been added or removed, no new programs has been > > installed. > > "Me too" > Is there a method which can give hints about what was

Re: [PATCH] Change memcmp(,,ETH_ALEN) to compare_ether_addr()

2006-01-09 Thread Pete Zaitcev
On Mon, 9 Jan 2006 11:48:49 -0800, "Kris Katterjohn" <[EMAIL PROTECTED]> wrote: > This is a diff from 2.6.15. It compiles fine and seems to work fine. > - else if (memcmp(eth->h_dest, dev->dev_addr, ETH_ALEN)) > + else if (compare_ether_addr(eth->h_dest, dev->dev_addr)) Please never mind

[PATCH] Fix grammar for comment for compare_ether_addr()

2006-01-09 Thread Kris Katterjohn
This fixes the wording in the comment for compare_ether_addr(). Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> This is a diff from 2.6.15-git5. Thanks! --- x/include/linux/etherdevice.h 2006-01-09 12:16:58.0 -0600 +++ y/include/linux/etherdevice.h 2006-01-09 20:10:12.000

Re: [PATCH] Change memcmp(,,ETH_ALEN) to compare_ether_addr()

2006-01-09 Thread Pete Zaitcev
On Mon, 9 Jan 2006 11:48:49 -0800, "Kris Katterjohn" <[EMAIL PROTECTED]> wrote: > - if (memcmp(eth->h_dest, dev->broadcast, ETH_ALEN) == 0) > + if (!compare_ether_addr(eth->h_dest, dev->broadcast)) Wait a second. compare_ether_addr returns a boolean, not an error code.

[PATCH] Fix spelling error in debug message

2006-01-09 Thread Kris Katterjohn
This fixes the misspelling of the word "receive" in a debugging message. Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> This is a diff from 2.6.15-git5. Thanks! --- x/net/ieee80211/ieee80211_rx.c 2006-01-09 17:28:34.0 -0600 +++ y/net/ieee80211/ieee80211_rx.c 2006-01-09 19:

[PATCH] happy-meal-pci-probing

2006-01-09 Thread Jiri Slaby
against 2.6.15-mm2 happy-meal-pci-probing Pci probing functions added, some functions were rewritten. Use PCI_DEVICE macro. Signed-off-by: Jiri Slaby <[EMAIL PROTECTED]> --- commit eb724d05644c4a6fa80fc7f4beaeabfcd7a19905 tree a75be76af0e6a59f2f1526c7cce188403cff63cf parent 43aabaed071931849052

Re: [PATCH 1/7] skge: sparse warning fix

2006-01-09 Thread Jeff Garzik
Stephen Hemminger wrote: On 64 bit platform MAX_SCHEDULE_TIMEOUT is 64 bits, so sparse throws a warning on the check in the blink code. Just recode to a simpler version. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/drivers/net/skge.c +++ pro-2.6/drivers/net/skge.c can

Re: [PATCH] sk_chk_filter() filter length should be unsigned

2006-01-09 Thread Kris Katterjohn
From: Patrick McHardy Sent: 1/9/2006 4:24:18 PM > Kris Katterjohn wrote: > > This makes the filter length in sk_chk_filter() unsigned as it should be. > > > > Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> > > > > This is a diff from 2.6.15. > > > > The length should never be negative, and i

Re: [PATCH] sk_chk_filter() filter length should be unsigned

2006-01-09 Thread Patrick McHardy
Patrick McHardy wrote: Kris Katterjohn wrote: This makes the filter length in sk_chk_filter() unsigned as it should be. Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> This is a diff from 2.6.15. The length should never be negative, and if the length were negative, the for loop would fa

Re: [PATCH] sk_chk_filter() filter length should be unsigned

2006-01-09 Thread Patrick McHardy
Kris Katterjohn wrote: This makes the filter length in sk_chk_filter() unsigned as it should be. Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> This is a diff from 2.6.15. The length should never be negative, and if the length were negative, the for loop would fail. -

Re: [PATCH] sk_chk_filter() filter length should be unsigned

2006-01-09 Thread Kris Katterjohn
From: Kris Katterjohn Sent: 1/9/2006 1:36:49 PM > This makes the filter length in sk_chk_filter() unsigned as it should be. > > Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> > > This is a diff from 2.6.15. Here's a new patch against 2.6.15-git5: --- x/net/core/filter.c 2006-01-09 12:17:03.

Re: [PATCH] Change memcmp(,,ETH_ALEN) to compare_ether_addr()

2006-01-09 Thread David S. Miller
From: "Kris Katterjohn" <[EMAIL PROTECTED]> Date: Mon, 9 Jan 2006 15:35:05 -0800 > Okey-dokey. It patched fine on git5 for me. Applied, thanks. - 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.ker

Re: [PATCH] congestion and af_ops can be const

2006-01-09 Thread David S. Miller
From: Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> Date: Mon, 9 Jan 2006 21:22:40 -0200 > On 1/9/06, Stephen Hemminger <[EMAIL PROTECTED]> wrote: > > The congestion ops and af_ops in the inet_connection_sock > > can be const. > > > > Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> > > Signed

Re: [PATCH] netlink oops fix due to incorrect error code

2006-01-09 Thread David S. Miller
From: Patrick McHardy <[EMAIL PROTECTED]> Date: Tue, 10 Jan 2006 00:50:52 +0100 > Kirill Korotaev wrote: > > Fixed oops after failed netlink socket creation. > > Wrong parathenses in if() statement caused err to be 1, > > instead of negative value. > > Trivial fix, not trivial to find though. > >

Re: [PATCH] netlink oops fix due to incorrect error code

2006-01-09 Thread Patrick McHardy
Kirill Korotaev wrote: Fixed oops after failed netlink socket creation. Wrong parathenses in if() statement caused err to be 1, instead of negative value. Trivial fix, not trivial to find though. Signed-Off-By: Dmitry Mishin <[EMAIL PROTECTED]> Signed-Off-By: Kirill Korotaev <[EMAIL PROTECTED]>

Re: SiS190 on ASUS. monodirectional traffic

2006-01-09 Thread Francois Romieu
Marco Atzeri <[EMAIL PROTECTED]> : [...] > I see that from 1469 and over the ASUS do not recognize the ping request The patch below is yucky at will but I am really curious to know what the device has really received. Add a "-" in front of the file in the /etc/syslogd.conf record for the kernel me

Re: [PATCH] Change memcmp(,,ETH_ALEN) to compare_ether_addr()

2006-01-09 Thread Kris Katterjohn
From: David S. Miller Sent: 1/9/2006 3:02:35 PM > From: "Kris Katterjohn" <[EMAIL PROTECTED]> > Date: Mon, 9 Jan 2006 11:48:49 -0800 > > > This changes some memcmp(one,two,ETH_ALEN) to compare_ether_addr(one,two). > > > > Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> > > Patch doesn't appl

[PATCH 1/7] skge: sparse warning fix

2006-01-09 Thread Stephen Hemminger
On 64 bit platform MAX_SCHEDULE_TIMEOUT is 64 bits, so sparse throws a warning on the check in the blink code. Just recode to a simpler version. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/drivers/net/skge.c +++ pro-2.6/drivers/net/skge.c @@ -57,7 +57,6 @@ #define ETH_J

[PATCH 6/7] ip: missing prototype

2006-01-09 Thread Stephen Hemminger
ip_output needs to get prototype for xfrm4_output. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/net/ipv4/ip_output.c +++ pro-2.6/net/ipv4/ip_output.c @@ -76,6 +76,7 @@ #include #include #include +#include #include #include #include -- Stephen Hemminger <[EMA

[PATCH 2/7] sky2: sparse warning fix

2006-01-09 Thread Stephen Hemminger
On 64 bit platform MAX_SCHEDULE_TIMEOUT is 64 bits, so sparse throws a warning on the check in the blink code. Just recode to a simpler version. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/drivers/net/sky2.c +++ pro-2.6/drivers/net/sky2.c @@ -2606,15 +2606,9 @@ static in

[PATCH 5/7] net_em: sparse warning fix

2006-01-09 Thread Stephen Hemminger
Get rid of sparse warning in em_meta API. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/net/sched/em_meta.c +++ pro-2.6/net/sched/em_meta.c @@ -384,7 +384,7 @@ META_COLLECTOR(int_sk_sndbuf) META_COLLECTOR(int_sk_alloc) { SKIP_NONLOCAL(skb); - dst->value = s

[PATCH 7/7] ipmr: sparse warning

2006-01-09 Thread Stephen Hemminger
Cleanup sparse warning where ipmr is doing dev ioctl. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/net/ipv4/ipmr.c +++ pro-2.6/net/ipv4/ipmr.c @@ -140,9 +140,10 @@ struct net_device *ipmr_new_tunnel(struc p.iph.ihl = 5; p.iph.protocol = IPP

[PATCH 3/7] bonding: sparse fix

2006-01-09 Thread Stephen Hemminger
Cleanup sparse warnings in the bonding driver. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/drivers/net/bonding/bond_main.c +++ pro-2.6/drivers/net/bonding/bond_main.c @@ -593,7 +593,7 @@ static int bond_update_speed_duplex(stru ioctl = slave_dev->do_ioctl;

[PATCH 4/7] net_cls: sparse warning fix

2006-01-09 Thread Stephen Hemminger
Get rid of warnings by using ifdef instead of putting an attribute on a label. The sparse tool doesn't understand attributes on labels, and the rest of the kernel doesn't do that. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/net/sched/cls_api.c +++ pro-2.6/net/sched/cls_a

Re: [PATCH] congestion and af_ops can be const

2006-01-09 Thread Arnaldo Carvalho de Melo
On 1/9/06, Stephen Hemminger <[EMAIL PROTECTED]> wrote: > The congestion ops and af_ops in the inet_connection_sock > can be const. > > Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> Signed-off-by: Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "u

[PATCH] congestion and af_ops can be const

2006-01-09 Thread Stephen Hemminger
The congestion ops and af_ops in the inet_connection_sock can be const. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- pro-2.6.orig/include/net/inet_connection_sock.h +++ pro-2.6/include/net/inet_connection_sock.h @@ -83,8 +83,8 @@ struct inet_connection_sock { struct timer_lis

Re: [PATCH 1/4][INET_DIAG]: Use inet_twsk() with TIME_WAIT sockets

2006-01-09 Thread Arnaldo Carvalho de Melo
On 1/9/06, David S. Miller <[EMAIL PROTECTED]> wrote: > From: Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> > Date: Mon, 9 Jan 2006 17:29:16 -0200 > > > [INET_DIAG]: Use inet_twsk() with TIME_WAIT sockets > > > > The fields being accessed in inet_diag_dump are outside sock_common, the > > common par

Fw: [Bugme-new] [Bug 5857] New: errors in ppp

2006-01-09 Thread Andrew Morton
ppp regression. Begin forwarded message: Date: Mon, 9 Jan 2006 06:48:39 -0800 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [Bugme-new] [Bug 5857] New: errors in ppp http://bugzilla.kernel.org/show_bug.cgi?id=5857 Summary: errors in ppp Kernel Version: 2.6.15

Re: [PATCH] Change memcmp(,,ETH_ALEN) to compare_ether_addr()

2006-01-09 Thread David S. Miller
From: "Kris Katterjohn" <[EMAIL PROTECTED]> Date: Mon, 9 Jan 2006 11:48:49 -0800 > This changes some memcmp(one,two,ETH_ALEN) to compare_ether_addr(one,two). > > Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> Patch doesn't apply, in fact due to a patch you merged to me the other day :-) > -

Re: [PATCH 1/4][INET_DIAG]: Use inet_twsk() with TIME_WAIT sockets

2006-01-09 Thread David S. Miller
From: Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> Date: Mon, 9 Jan 2006 17:29:16 -0200 > [INET_DIAG]: Use inet_twsk() with TIME_WAIT sockets > > The fields being accessed in inet_diag_dump are outside sock_common, the > common part of struct sock and struct inet_timewait_sock. > > Signed-off-by

cs89x0: fix Kconfig help text

2006-01-09 Thread Lennert Buytenhek
From: Jean Delvare <[EMAIL PROTECTED]> Fix the help text of the cs89x0 network driver Kconfig entry. Signed-off-by: Jean Delvare <[EMAIL PROTECTED]> --- linux-2.6.15-git.orig/drivers/net/Kconfig 2006-01-09 18:29:50.0 +0100 +++ linux-2.6.15-git/drivers/net/Kconfig2006-01-09 20:

[patch] ax25/mkiss: misc little fixes

2006-01-09 Thread Francois Romieu
Ralf Baechle <[EMAIL PROTECTED]> : [...] > No, with your patch the spinlock is dropped only after the > tty->driver->write() call which might sleep. @#$!* Ok, try #2. - remove duplicate code: mkiss_open() is the sole user of ax_open() and it has already issued spin_lock_init() when ax_open()

[PATCH] sk_chk_filter() filter length should be unsigned

2006-01-09 Thread Kris Katterjohn
This makes the filter length in sk_chk_filter() unsigned as it should be. Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> This is a diff from 2.6.15. The length should never be negative, and if the length were negative, the for loop would fail. Thanks! --- x/net/core/filter.c 2006-01-02 21:

RE: [PATCH netdev-2.6] bonding: UPDATED hash-table corruption in bond_alb.c

2006-01-09 Thread ODonnell, Michael
IIRC, it was easy to reproduce by cranking the rebalance freq up (1s or even faster) and also introducing a delay of a few milliseconds in that bond_alb.c:tlb_clear_slave() routine between where we drop the lock and call tlb_init_slave() --Michael O'Donnell -- Stratus Technologies, Maynard, MA

[PATCH netdev-2.6] bonding: UPDATED hash-table corruption in bond_alb.c

2006-01-09 Thread Jay Vosburgh
I believe I see the race Michael refers to (tlb_choose_channel may set head, which tlb_init_slave clears), although I was not able to reproduce it. I have updated his patch for the current netdev-2.6.git tree and added a version update. His original comment follows: Our systems have bee

[PATCH] Change memcmp(,,ETH_ALEN) to compare_ether_addr()

2006-01-09 Thread Kris Katterjohn
This changes some memcmp(one,two,ETH_ALEN) to compare_ether_addr(one,two). Signed-off-by: Kris Katterjohn <[EMAIL PROTECTED]> This is a diff from 2.6.15. It compiles fine and seems to work fine. Thanks! --- x/net/8021q/vlan_dev.c 2006-01-02 21:21:10.0 -0600 +++ y/net/8021q/vlan_dev

Re: [2.6.15] running tcpdump on 3c905b causes freeze (reproducable)

2006-01-09 Thread Folkert van Heusden
> > Have you tried enabling the NMI watchdog? Enable CONFIG_X86_LOCAL_APIC and > > boot with `nmi_watchdog=1' on the command line, make sure that the NMI line > > of /proc/interrupts is incrementing. > I'll give it a try. I've added it to the append-line in the lilo config. > Am now compiling the

[PATCH 1/4][INET_DIAG]: Use inet_twsk() with TIME_WAIT sockets

2006-01-09 Thread Arnaldo Carvalho de Melo
Hi David, Please consider pulling from: master.kernel.org:/pub/scm/linux/kernel/git/acme/net-2.6.git Best Regards, - Arnaldo tree e28be60d944faa8bc8c97f554d39fcb38d64b365 parent 53927b62ae8c8eb2958046ad7660601605ae991d author Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> 1136826022 -0200 commit

[PATCH 3/4][INET_DIAG]: Introduce inet_twsk_diag_dump & inet_twsk_diag_fill

2006-01-09 Thread Arnaldo Carvalho de Melo
Hi David, Please consider pulling from: master.kernel.org:/pub/scm/linux/kernel/git/acme/net-2.6.git Best Regards, - Arnaldo tree 61f746002fb4d78f93ead4c3e095b01267c35b1d parent 20026cb4c8573a36eea417acac80620a98048e70 author Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> 1136829432 -0200 commit

[PATCH 4/4][INET_DIAG]: Introduce sk_diag_fill

2006-01-09 Thread Arnaldo Carvalho de Melo
Hi David, Please consider pulling from: master.kernel.org:/pub/scm/linux/kernel/git/acme/net-2.6.git Best Regards, - Arnaldo tree 064901483ba7876e3bc9b4fa8dc9131cfcd9118b parent 771afe39fecad0e567cd8cc75f6c74a8ff426ab8 author Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> 1136834604 -0200 commit

[PATCH 2/4][INET_DIAG]: whitespace/simple cleanups

2006-01-09 Thread Arnaldo Carvalho de Melo
Hi David, Please consider pulling from: master.kernel.org:/pub/scm/linux/kernel/git/acme/net-2.6.git Best Regards, - Arnaldo tree 774bb91dabc36c0689ca69e9fc99045e895806a8 parent 547f8b8fc1bdf3770a9ff66ff89f55e826db948f author Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> 1136826601 -0200 commit

[PATCH] smc91x: allow for dynamic bus access configs

2006-01-09 Thread Nicolas Pitre
All accessor's different methods are now selected with C code and unused ones statically optimized away at compile time instead of being selected with #if's and #ifdef's. This has many advantages such as allowing the compiler to validate the syntax of the whole code, making it cleaner and easi

Re: [PATCH] smc91x: allow for dynamic bus access configs

2006-01-09 Thread Nicolas Pitre
On Mon, 9 Jan 2006, Jeff Garzik wrote: > Nicolas Pitre wrote: > > All accessor's different methods are now selected with C code and unused > > ones statically optimized away at compile time instead of being selected > > with #if's and #ifdef's. This has many advantages such as allowing the > > co

Re: [Bcm43xx-dev] [Fwd: State of the Union: Wireless]

2006-01-09 Thread Ingo Oeser
David S. Miller wrote: > From: David Lang <[EMAIL PROTECTED]> > Date: Fri, 6 Jan 2006 14:16:17 -0800 (PST) > > > character devices are far easier to script. this really sounds like the > > type of configuration stuff that sysfs was designed for. can we avoid yet > > another configuration tool th

[git patches] 2.6.x net driver updates

2006-01-09 Thread Jeff Garzik
Please pull from 'upstream-linus' branch of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git to receive the following updates: Documentation/networking/bonding.txt |2 MAINTAINERS |1 drivers/net/3c503.c | 16 +-- drivers/n

Subject: spidernet: fix missing include

2006-01-09 Thread Arnd Bergmann
Including in.h is now required to avoid drivers/net/spider_net.c:844: error: 'IPPROTO_TCP' undeclared Signed-off-by: Arnd Bergmann <[EMAIL PROTECTED]> Index: linux-2.6.16-rc/drivers/net/spider_net.c === --- linux-2.6.16-rc.orig/drive

cs89x0: fix setting of ALLOW_DMA

2006-01-09 Thread Lennert Buytenhek
There's an ifdef in cs89x0.c that seems to have been the wrong way round since it was merged (and noone seems to have noticed) -- the IXDP2x01 doesn't support ISA-style DMA, but when building for IXDP2x01, cs89x0's ALLOW_DMA is set to 1, and when building for another platform, ALLOW_DMA is set to 0

[PATCH] ipw2200 - do not sleep in ipw_request_direct_scan

2006-01-09 Thread Olaf Kirch
Hi, We have been seeing frequent deadlocks involving wpa_supplicant on an ipw2200 card, which rendered the system close to unusable. The scenario is - wpa_supplicant requests a network scan - For some odd reason, the SCAN_COMPLETED notification never arrives, possibly because

[patch] ipw2100: support WEXT-18 enc_capa v3

2006-01-09 Thread Dan Williams
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 <[EMAIL PROTECTED]> --- a/drivers

[patch] ipw2100: support WEXT-18 enc_capa v2

2006-01-09 Thread Dan Williams
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 <[EMAIL PROTECTED]> --- ipw2100.c

Re: [patch] ipw2100: support WEXT-18 enc_capa v2

2006-01-09 Thread Jeff Garzik
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 <[EMAIL PROT

Re: [PATCH] smc91x: allow for dynamic bus access configs

2006-01-09 Thread Jeff Garzik
Nicolas Pitre wrote: All accessor's different methods are now selected with C code and unused ones statically optimized away at compile time instead of being selected with #if's and #ifdef's. This has many advantages such as allowing the compiler to validate the syntax of the whole code, makin

Re: [patch] ipw2100: support WEXT-18 enc_capa

2006-01-09 Thread Jeff Garzik
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 <[EMAIL PROT

[patch] ipw2100: support WEXT-18 enc_capa

2006-01-09 Thread Dan Williams
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 <[EMAIL PROTECTED]> --- ipw2100.c

Re: [2.6.15] running tcpdump on 3c905b causes freeze (reproducable)

2006-01-09 Thread Folkert van Heusden
> > My system freezes (crashes) when I run tcpdump on the interface > > connected to a 3c905b card. > Works for me with a 3c980-TX. I can dig out a 905b. > Please send the exact commands which you're using to demonstrate this - > sufficient info for me to get as close as possible to what you're d

[PATCH] rt2x00core: fix mismatched rwsem calls

2006-01-09 Thread Olaf Kirch
I'm not sure if netdev is the right list to post problems in this driver to, but here we go... Subject: rt2x00core: fix mismatched rwsem calls rt2x00_update_config pairs a down_write with an up_read call on the same semaphore. Similarly, rt2x00_link_down pairs a down_read call with an up_wri

Re: [2.6.15] running tcpdump on 3c905b causes freeze (reproducable)

2006-01-09 Thread Andrew Morton
Folkert van Heusden <[EMAIL PROTECTED]> wrote: > > My system freezes (crashes) when I run tcpdump on the interface > connected to a 3c905b card. Works for me with a 3c980-TX. I can dig out a 905b. Please send the exact commands which you're using to demonstrate this - sufficient info for me to

Re: [PATCH] net: 32 bit (socket layer) ioctl emulation for 64 bit kernels

2006-01-09 Thread Arnaldo Carvalho de Melo
On 1/9/06, Arnd Bergmann <[EMAIL PROTECTED]> wrote: > On Monday 09 January 2006 06:46, Shaun Pereira wrote: > > Since we are interested in ioctl's from userspace I have not added the > > .compat_ioctl function pointer to struct net_device. The assumption > > being once the userspace data has reach

Re: [PATCH] net: 32 bit (socket layer) ioctl emulation for 64 bit kernels

2006-01-09 Thread Arnd Bergmann
On Monday 09 January 2006 06:46, Shaun Pereira wrote: > Hi all, > The attached patch is a follow up to a post made earlier to this site > with regard to 32 bit (socket layer) ioctl emulation for 64 bit kernels. Ok, cool. Note that I also posted a longer series of patches that does this and much mo

Re: SiS190 on ASUS. monodirectional traffic

2006-01-09 Thread Marco Atzeri
On Mon, Jan 09, 2006 at 12:47:06AM +0100, Francois Romieu wrote: > > In both the two directions I noted that from 1469 and over the loss is 100% > > 4 bytes too soon. Sh*t. > > Can you try the patch below and send the dump of a simple > for i in $(seq 1467 1473); do ping -c 1 -s $i 192.168.1.2; d