Re: r8169: hard freezes on TX

2007-05-22 Thread Rolf Eike Beer
Francois Romieu wrote: > Rolf Eike Beer <[EMAIL PROTECTED]> : > [...] Ok, just tested. I used a file of 200MB and copied it to another host on the LAN. If I used our 100 MBit switch nothing happened. When I put a 10 MBit hub in the middle it died at 77 MB. > > I often see freezes when I do much

Re: r8169: hard freezes on TX

2007-05-22 Thread Rolf Eike Beer
gt; although I thought it became better some versions ago. I wont bet on it, > > it might just have been luck. > > You can/should try: > http://www.fr.zoreil.com/linux/kernel/2.6.x/2.6.22-rc2 (patch-kit) > or: > http://www.fr.zoreil.com/people/francois/misc/20070522-2.6.22-rc2-r8169.pa

RE: [PATCH] s2io: don't run MSI handlers if device is offline.

2007-05-22 Thread Sivakumar Subramani
Fix looks good. No comments. ~Siva -Original Message- From: Linas Vepstas [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 23, 2007 4:20 AM To: Jeff Garzik; Andrew Morton Cc: [EMAIL PROTECTED]; netdev@vger.kernel.org; Ramkrishna Vepa; Sivakumar Subramani; Sreenivasa Honnur; Rastapur Santos

Re: [Cbe-oss-dev] [PATCH 4/10] spidernet: zero out a pointer.

2007-05-22 Thread Benjamin Herrenschmidt
> Here's a delusional reply: I didn't see any point to it. > 1) a wmb would add overhead > 2) the hardware is supposed to be looking at the status flag, >anyway, and not misbehaving. > 3) there is a wmb when the descr is actually refilled in such >a way as to actually mean something to th

Re: [PATCH] [-mm] ACPI: export ACPI events via netlink

2007-05-22 Thread Zhang Rui
On Tue, 2007-05-22 at 07:03 -0400, jamal wrote: > Hi Zhang Rui, > > Really cool stuff. Can you instead use genetlink? > http://linux-net.osdl.org/index.php/Generic_Netlink_HOWTO > should help. And if you have more questions post on netdev (not lk). > That's really helpful, thanks. Will post the

[no subject]

2007-05-22 Thread Inaky Perez-Gonzalez
subscribe [EMAIL PROTECTED] - 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

Re: [Cbe-oss-dev] [PATCH 4/10] spidernet: zero out a pointer.

2007-05-22 Thread Segher Boessenkool
If you're going to be paranoid, shouldn't you do something here to make sure the value's hit the device? I thought the whole point of paranoia is that its inexplicable. Here's a delusional reply: I didn't see any point to it. 1) a wmb would add overhead A wmb() doesn't guarantee the write ha

Re: IFF_PROMISC again

2007-05-22 Thread Ben Greear
David Miller wrote: From: Ben Greear <[EMAIL PROTECTED]> Date: Tue, 22 May 2007 17:08:18 -0700 Anyone know the reasoning for masking out the PROMISC flag in dev_get_flags() ? Because promiscuous status is a counter, not a binary on-off state. You can't expect to just clear it and expect all

Re: IFF_PROMISC again

2007-05-22 Thread David Miller
From: Ben Greear <[EMAIL PROTECTED]> Date: Tue, 22 May 2007 17:08:18 -0700 > Anyone know the reasoning for masking out the PROMISC flag > in dev_get_flags() ? Because promiscuous status is a counter, not a binary on-off state. You can't expect to just clear it and expect all the other promiscuou

Re: IFF_PROMISC again

2007-05-22 Thread Ben Greear
Martín Ferrari wrote: Hi, for the nth time I send this email, hoping that majordomo won't eat it again. I know this has been extensibly discussed circa 2001, but I found that there's still problems: in debian (at least) neither ifconfig nor ip can tell that the interface is in promiscuous mode.

Re: [RTNETLINK]: Remove remains of wireless extensions over rtnetlink

2007-05-22 Thread David Miller
From: Johannes Berg <[EMAIL PROTECTED]> Date: Tue, 22 May 2007 11:27:46 +0200 > > > [RTNETLINK]: Remove remains of wireless extensions over rtnetlink > > > > Remove some unused variables and function arguments related to the recently > > removed wireless extensions over rtnetlink. > > Still mor

Re: [RTNETLINK]: Allow changing of subsets of netdevice flags in rtnl_setlink

2007-05-22 Thread David Miller
Applied, thanks for finding this interface deficiency. :-) - 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 10/10] spidernet: increase the NAPI weight

2007-05-22 Thread Linas Vepstas
Another way of minimizing the likelyhood of RX ram from overflowing is to empty out the entire rx ring every chance we get. Change the crazy watchdog timeout from 50 seconds to 3 seconds, while we're here. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> drivers/net/spider_net.h |9 +++

[PATCH 9/10] spidernet: service TX later.

2007-05-22 Thread Linas Vepstas
When entering the netdev poll routine, empty out the RX chain first, before cleaning up the TX chain. This should help avoid RX buffer overflows. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> drivers/net/spider_net.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: net

[PATCH 8/10] spidernet: reset the card when an rxramfull is seen

2007-05-22 Thread Linas Vepstas
Some versions of the spider have a firmware bug, where the RX ring sequencer goes crazy when the RX RAM on the device fills up. Appearently the only viable wrkaround is a soft reset of the card. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> drivers/net/spider_net.c | 14 +++---

[PATCH 7/10] spidernet: enhance the dump routine

2007-05-22 Thread Linas Vepstas
Crazy device problems are hard to debug, when one does not have good trace info. This patch makes a major enhancement to the device dump routine. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> drivers/net/spider_net.c | 62 --- 1 file changed

[PATCH 6/10] spidernet: Don't terminate the RX ring

2007-05-22 Thread Linas Vepstas
There is no real reason to terminate the RX ring; it doesn't make the operation any smooother, and it does require an extra sync. So don't do it. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> drivers/net/spider_net.c | 18 +- 1 file changed, 9 insertions(+), 9 deletion

[PATCH 5/10] spidernet: null out skb pointer after its been used.

2007-05-22 Thread Linas Vepstas
If the ethernet interface is brought down while there is still RX traffic in flight, the device shutdown routine can end up trying to double-free an skb, leading to a crash in mm/slab.c Avoid the double-free by nulling out the skb pointer. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> d

[PATCH 4/10] spidernet: zero out a pointer.

2007-05-22 Thread Linas Vepstas
Invalidate a pointer as its pci_unmap'ed; this is a bit of paranoia to make sure hardware doesn't continue trying to DMA to it. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> drivers/net/spider_net.c |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) Index: netdev-2.6/dri

Re: [Cbe-oss-dev] [PATCH 4/10] spidernet: zero out a pointer.

2007-05-22 Thread Linas Vepstas
On Thu, May 17, 2007 at 09:32:56AM +1000, Michael Ellerman wrote: > > + hwdescr->buf_addr = 0x0; > > If you're going to be paranoid, shouldn't you do something here to make > sure the value's hit the device? I thought the whole point of paranoia is that its inexplicable. Here's a delusional re

Re: UDP checksum broken since 2.6.18?

2007-05-22 Thread Thomas B. Rücker
Stephen Hemminger wrote: > The packet passed to packet capture programs may not have a valid checksum > if you have checksum offload configured on the device. What kind of hardware > do you have on sender and receiver? The c-snippet uses 127.x.x.x --> loopback I think Philipp tested this on real

[PATCH 3/10] spidernet: move a block of code around

2007-05-22 Thread Linas Vepstas
Put the enable and disable routines next to one-another, as this makes verifying thier symmetry that much easier. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> drivers/net/spider_net.c | 28 ++-- 1 file changed, 14 insertions(+), 14 deletions(-) Index: netdev

Re: UDP checksum broken since 2.6.18?

2007-05-22 Thread Stephen Hemminger
On Tue, 22 May 2007 21:47:22 + "Thomas B. Rücker" <[EMAIL PROTECTED]> wrote: > hi, > > a friend of mine recently contacted me about what he at first thought > were IPv6 issues with some java software. > > As it turns out it probably is a general IP issue with the Linux kernel: > > He wrote

[PATCH 2/10] spidernet: beautify error messages

2007-05-22 Thread Linas Vepstas
Make error messages print which interface they apply to. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> drivers/net/spider_net.c | 10 ++ drivers/net/spider_net.h |2 +- 2 files changed, 7 insertions(+), 5 deletions(-) Index: netdev-2.6/drivers/net/spider_net.c ===

Re: [IPSEC]: Fix warnings with casting int to pointer

2007-05-22 Thread David Miller
From: Herbert Xu <[EMAIL PROTECTED]> Date: Tue, 22 May 2007 21:27:03 +1000 > Hi Dave: > > Here's patch to fix the warnings. > > [IPSEC]: Fix warnings with casting int to pointer > > This patch adds some casts to shut up the warnings introduced by my > last patch that added a common interator fu

Re: [RFC] New driver API to speed up small packets xmits

2007-05-22 Thread Herbert Xu
On Tue, May 22, 2007 at 03:36:36PM -0700, David Miller wrote: > > > > Yep, for any NIC that supports SG but not TSO then software GSO will > > > be a big win. When the NIC doesn't support SG then the win is mostly > > > offset by the need to copy the packet again. ... > SKB's from TSO are comp

[PATCH 1/10] spidernet: skb used after netif_receive_skb

2007-05-22 Thread Linas Vepstas
From: Florin Malita <[EMAIL PROTECTED]> The stats update code in spider_net_pass_skb_up() is touching the skb after it's been passed up to the stack. To avoid that, just update the stats first. Signed-off-by: Florin Malita <[EMAIL PROTECTED]> Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> ---

Re: [RFC] New driver API to speed up small packets xmits

2007-05-22 Thread David Miller
From: Shirley Ma <[EMAIL PROTECTED]> Date: Tue, 22 May 2007 15:58:05 -0700 > Sorry for the confusion. I am thinking to avoid copy in skb_segment() for > GSO. The way could be in tcp_sendmsg() to allocate small discontiguous > buffers (equal = MTU) instead of allocating pages. The SKB splitting al

[PATCH] s2io: don't run MSI handlers if device is offline.

2007-05-22 Thread Linas Vepstas
Don't run any of the MSI handlers if the channel is off; also don't gather device statatistics. Also, netif_wake not needed, per suggestions from Sivakumar Subramani <[EMAIL PROTECTED]>. Signed-off-by: Linas Vepstas <[EMAIL PROTECTED]> Cc: Ramkrishna Vepa <[EMAIL PROTECTED]> Cc: Sivakumar Subram

Re: [PATCH 1/2 v4] s2io: add PCI error recovery support

2007-05-22 Thread Jeff Garzik
Linas Vepstas wrote: On Mon, May 21, 2007 at 06:51:45PM -0400, Jeff Garzik wrote: The part that confuses me is that I'd gotten a message from Jeff back in March (well before 2.6.21 came out), saying it was in his development tree; yet, the patch its not in 2.6.22-rc; Torvalds hasn't yet pulled f

Re: [PATCH 1/2 v4] s2io: add PCI error recovery support

2007-05-22 Thread Linas Vepstas
On Mon, May 21, 2007 at 06:51:45PM -0400, Jeff Garzik wrote: > > >The part that confuses me is that I'd gotten a message from Jeff > >back in March (well before 2.6.21 came out), saying it was in his > >development tree; yet, the patch its not in 2.6.22-rc; Torvalds > >hasn't yet pulled from it? >

Re: UDP packet loss when running lsof

2007-05-22 Thread John Miller
Hi Eric, > It's a HP system with two dual core CPUs at 3GHz, the Then you might try to bind network IRQ to one CPU (echo 1 >/proc/irq/XX/smp_affinity) XX being your NIC interrupt (cat /proc/interrupts to catch it) and bind your user program to another cpu(s) the NIC was already fixed

Re: [RFC] New driver API to speed up small packets xmits

2007-05-22 Thread David Miller
From: Shirley Ma <[EMAIL PROTECTED]> Date: Tue, 22 May 2007 15:22:35 -0700 > > Yep, for any NIC that supports SG but not TSO then software GSO will > > be a big win. When the NIC doesn't support SG then the win is mostly > > offset by the need to copy the packet again. > > > > Cheers, > > -- > >

Re: [PATCH] fix e100 rx path on ARM (was [PATCH] e100 rx: or s and el bits)

2007-05-22 Thread David Acker
Milton Miller wrote: Proceeding with the review: Coding style: (1) if body on seperate line. (2) space after if before ( (3) The other enums in this driver are not ALL_CAPS (4) This driver doesn't do CONSTANT != value but value != enum (see nic->mac for examples) I sent Milton my copy of t

UDP checksum broken since 2.6.18?

2007-05-22 Thread Thomas B. Rücker
hi, a friend of mine recently contacted me about what he at first thought were IPv6 issues with some java software. As it turns out it probably is a general IP issue with the Linux kernel: He wrote this piece of c which sends an UDP packet to 127.28.50.50 - http://www2.futureware.at/~philipp/udp

Re: r8169: hard freezes on TX

2007-05-22 Thread Francois Romieu
rnel, latest I > tested was 2.6.21-rc7. But I've seen this on many previous version, although > I thought it became better some versions ago. I wont bet on it, it might just > have been luck. You can/should try: http://www.fr.zoreil.com/linux/kernel/2.6.x/2.6.22-rc2 (patch-kit) or: htt

Re: select(0, ..) is valid ?

2007-05-22 Thread Steve Fox
On Tue, 2007-05-22 at 07:34 -0700, Nishanth Aravamudan wrote: > On 22.05.2007 [09:16:37 -0500], Steve Fox wrote: > > > > Andy put this through a couple machines on test.kernel.org and elm3b6 > > was fixed, however elm3b239 still had a boot error. > > > > BUG: at mm/slab.c:777 __find_general_cache

Re: [PATCH] e1000: Don't enable polling in open() (was: e1000: assertion hit in e1000_clean(), kernel 2.6.21.1)

2007-05-22 Thread Kok, Auke
Chuck Ebbert wrote: Herbert Xu wrote: On Mon, May 21, 2007 at 07:42:39PM -0400, Jeff Garzik wrote: applied, though as a poster (DaveJ?) noted, I'm not sure it completely fixes the bug It should fix the problem completely in 2.6.22. For 2.6.21, we need a different fix because e1000_open is dir

Please pull 'upstream-fixes' branch of wireless-2.6

2007-05-22 Thread John W. Linville
The following changes since commit 55b637c6a003a8c4850b41a2c2fd6942d8a7f530: Linus Torvalds (1): Linux v2.6.22-rc2 are found in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git upstream-fixes Eugene Teo (2): drivers/net/wireless/li

Re: [PATCH] e1000: Don't enable polling in open() (was: e1000: assertion hit in e1000_clean(), kernel 2.6.21.1)

2007-05-22 Thread Chuck Ebbert
Herbert Xu wrote: > On Mon, May 21, 2007 at 07:42:39PM -0400, Jeff Garzik wrote: >> applied, though as a poster (DaveJ?) noted, I'm not sure it completely >> fixes the bug > > It should fix the problem completely in 2.6.22. For 2.6.21, we need > a different fix because e1000_open is directly cal

Re: [PATCH] fix e100 rx path on ARM (was [PATCH] e100 rx: or s and el bits)

2007-05-22 Thread Milton Miller
On May 21, 2007, at 12:45 PM, Kok, Auke wrote: Milton Miller wrote: On May 18, 2007, at 12:11 PM, David Acker wrote: Kok, Auke wrote: First impression just came in: It seems RX performance is dropped to 10mbit. TX is unaffected and runs at 94mbit/tcp, but RX the new code seems to misbehave

Re: [Xen-devel] Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Kieran Mansley
On Tue, 2007-05-22 at 08:05 -0700, Stephen Hemminger wrote: > The same thing is already done to handle network protocols already. > RCU is used for the object handle (including function pointers). > You need to use: > * put rcu structure in accelerator list member > and initialize it to the

[patch 29/33] xen: Add the Xen virtual network device driver.

2007-05-22 Thread Jeremy Fitzhardinge
The network device frontend driver allows the kernel to access network devices exported exported by a virtual machine containing a physical network device driver. Signed-off-by: Jeremy Fitzhardinge <[EMAIL PROTECTED]> Signed-off-by: Chris Wright <[EMAIL PROTECTED]> Cc: Ian Pratt <[EMAIL PROTECTE

Re: [Xen-devel] Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Stephen Hemminger
On Tue, 22 May 2007 13:44:28 +0100 Kieran Mansley <[EMAIL PROTECTED]> wrote: > On Tue, 2007-05-22 at 08:48 +0100, Keir Fraser wrote: > > > > > > On 22/5/07 08:28, "Kieran Mansley" <[EMAIL PROTECTED]> wrote: > > > > > On Tue, 2007-05-22 at 08:15 +0100, Kieran Mansley wrote: > > >> RCU on its own

Re: select(0, ..) is valid ?

2007-05-22 Thread Nishanth Aravamudan
On 22.05.2007 [09:16:37 -0500], Steve Fox wrote: > On Wed, 2007-05-16 at 17:59 -0700, Badari Pulavarty wrote: > > > Here it is .. > > > > Should I do one for poll() also ? > > > > Thanks, > > Badari > > > > Optimize select by a using stack space for small fd sets. > > core_sys_select() already

Re: [Xen-devel] Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Kieran Mansley
On Tue, 2007-05-22 at 15:07 +0100, Keir Fraser wrote: > On 22/5/07 13:44, "Kieran Mansley" <[EMAIL PROTECTED]> wrote: > > >> Eagerly zap the function pointers, then wait one RCU period so every CPU > >> goes through a quiescent point before unloading the module? > >> > >> -- Keir > > > > Am I r

Re: select(0, ..) is valid ?

2007-05-22 Thread Steve Fox
On Wed, 2007-05-16 at 17:59 -0700, Badari Pulavarty wrote: > Here it is .. > > Should I do one for poll() also ? > > Thanks, > Badari > > Optimize select by a using stack space for small fd sets. > core_sys_select() already has this optimization. This is > for compat version. > > Signed-off-b

Re: [Xen-devel] Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Keir Fraser
On 22/5/07 13:44, "Kieran Mansley" <[EMAIL PROTECTED]> wrote: >> Eagerly zap the function pointers, then wait one RCU period so every CPU >> goes through a quiescent point before unloading the module? >> >> -- Keir > > Am I right in thinking that if one of the functions that was protected > by

Re: [Xen-devel] Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Kieran Mansley
On Tue, 2007-05-22 at 08:48 +0100, Keir Fraser wrote: > > > On 22/5/07 08:28, "Kieran Mansley" <[EMAIL PROTECTED]> wrote: > > > On Tue, 2007-05-22 at 08:15 +0100, Kieran Mansley wrote: > >> RCU on its own wouldn't > >> prevent the accelerated plugin being unloaded while netfront was using > >> o

[PATCH 2/2] ucc_geth:trivial fix

2007-05-22 Thread Li Yang
Remove redundant includes. Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- drivers/net/ucc_geth.c |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c index 864b1aa..3b27b6d 100644 --- a/drivers/net/ucc_geth.c +++ b/drivers/net/u

[PATCH 1/2] ucc_geth: Fix MODULE_DEVICE_TABLE() duplication

2007-05-22 Thread Li Yang
Fix MODULE_DEVICE_TABLE() duplication in ucc_geth.c and ucc_geth_mii.c for ucc_geth to be compiled as module. Signed-off-by: Li Yang <[EMAIL PROTECTED]> --- drivers/net/ucc_geth_mii.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/net/ucc_geth_mii.c b/drivers/net

[IPSEC]: Fix warnings with casting int to pointer

2007-05-22 Thread Herbert Xu
Hi Dave: Here's patch to fix the warnings. [IPSEC]: Fix warnings with casting int to pointer This patch adds some casts to shut up the warnings introduced by my last patch that added a common interator function for xfrm algorightms. Signed-off-by: Herbert Xu <[EMAIL PROTECTED]> Cheers, -- Vi

Re: [PATCH] [-mm] ACPI: export ACPI events via netlink

2007-05-22 Thread jamal
Hi Zhang Rui, Really cool stuff. Can you instead use genetlink? http://linux-net.osdl.org/index.php/Generic_Netlink_HOWTO should help. And if you have more questions post on netdev (not lk). cheers, jamal On Tue, 2007-22-05 at 17:47 +0800, Zhang Rui wrote: > From: Zhang Rui <[EMAIL PROTECTED]>

Re: TCP_MD5 and Intel e1000

2007-05-22 Thread Marc Donner
On Tuesday 22 May 2007, David Miller wrote: > From: YOSHIFUJI Hideaki / 吉藤英明 <[EMAIL PROTECTED]> > Date: Tue, 22 May 2007 18:36:47 +0900 (JST) > > > In article <[EMAIL PROTECTED]> (at Tue, 22 May 2007 10:57:38 +0200), Eric Dumazet <[EMAIL PROTECTED]> says: > > > > I have tried to set up quagga wit

Re: TCP_MD5 and Intel e1000

2007-05-22 Thread David Miller
From: YOSHIFUJI Hideaki / 吉藤英明 <[EMAIL PROTECTED]> Date: Tue, 22 May 2007 18:36:47 +0900 (JST) > In article <[EMAIL PROTECTED]> (at Tue, 22 May 2007 10:57:38 +0200), Eric > Dumazet <[EMAIL PROTECTED]> says: > > > > I have tried to set up quagga with tcp-md5 support from kernel. All seems > > >

Re: [PATCH] [-mm] ACPI: export ACPI events via netlink

2007-05-22 Thread Evgeniy Polyakov
On Tue, May 22, 2007 at 10:05:00AM -, Samuel Ortiz ([EMAIL PROTECTED]) wrote: > > On 5/22/2007, "Zhang Rui" <[EMAIL PROTECTED]> wrote: > >Index: linux-2.6.22-rc1/include/linux/netlink.h > >=== > >--- linux-2.6.22-rc1.orig/include

Re: [PATCH] [-mm] ACPI: export ACPI events via netlink

2007-05-22 Thread Samuel Ortiz
On 5/22/2007, "Zhang Rui" <[EMAIL PROTECTED]> wrote: >Index: linux-2.6.22-rc1/include/linux/netlink.h >=== >--- linux-2.6.22-rc1.orig/include/linux/netlink.h 2007-05-21 >10:19:00.0 +0800 >+++ linux-2.6.22-rc1/include/lin

[PATCH] [-mm] ACPI: export ACPI events via netlink

2007-05-22 Thread Zhang Rui
From: Zhang Rui <[EMAIL PROTECTED]> Export ACPI events via netlink. A netlink message is broadcasted when an ACPI event is generated. Note: The behaviour of how ACPI event works nowadays is not changed. Netlink is used to export ACPI event instead of /proc/acpi/event someday, but

Re: TCP_MD5 and Intel e1000

2007-05-22 Thread Dunc
Eric Dumazet wrote: > On Tue, 22 May 2007 09:33:29 +0200 > Marc Donner <[EMAIL PROTECTED]> wrote: > >> Hi, >> >> I have tried to set up quagga with tcp-md5 support from kernel. All seems ok >> with a intel e100 NIC, but as i testetd with a intel e1000 NIC the tcp >> packets have an invalid md5 dig

Re: TCP_MD5 and Intel e1000

2007-05-22 Thread YOSHIFUJI Hideaki / 吉藤英明
In article <[EMAIL PROTECTED]> (at Tue, 22 May 2007 10:57:38 +0200), Eric Dumazet <[EMAIL PROTECTED]> says: > > I have tried to set up quagga with tcp-md5 support from kernel. All seems ok > > with a intel e100 NIC, but as i testetd with a intel e1000 NIC the tcp > > packets have an invalid md5 d

Re: [RTNETLINK]: Remove remains of wireless extensions over rtnetlink

2007-05-22 Thread Johannes Berg
> [RTNETLINK]: Remove remains of wireless extensions over rtnetlink > > Remove some unused variables and function arguments related to the recently > removed wireless extensions over rtnetlink. Still more! Sorry about that and thanks! > Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]> Since

Re: TCP_MD5 and Intel e1000

2007-05-22 Thread Eric Dumazet
On Tue, 22 May 2007 09:33:29 +0200 Marc Donner <[EMAIL PROTECTED]> wrote: > Hi, > > I have tried to set up quagga with tcp-md5 support from kernel. All seems ok > with a intel e100 NIC, but as i testetd with a intel e1000 NIC the tcp > packets have an invalid md5 digest. > If i run tcpdump on the

Re: [Xen-devel] Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Kieran Mansley
On Tue, 2007-05-22 at 08:48 +0100, Keir Fraser wrote: > > > On 22/5/07 08:28, "Kieran Mansley" <[EMAIL PROTECTED]> wrote: > > > On Tue, 2007-05-22 at 08:15 +0100, Kieran Mansley wrote: > >> RCU on its own wouldn't > >> prevent the accelerated plugin being unloaded while netfront was using > >> o

Re: [Xen-devel] Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Keir Fraser
On 22/5/07 08:28, "Kieran Mansley" <[EMAIL PROTECTED]> wrote: > On Tue, 2007-05-22 at 08:15 +0100, Kieran Mansley wrote: >> RCU on its own wouldn't >> prevent the accelerated plugin being unloaded while netfront was using >> one of the hooks. > > Hmm, actually I think it could be used to do th

Re: [Xen-devel] Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Kieran Mansley
On Tue, 2007-05-22 at 08:15 +0100, Kieran Mansley wrote: > RCU on its own wouldn't > prevent the accelerated plugin being unloaded while netfront was using > one of the hooks. Hmm, actually I think it could be used to do that. I'll take a look. Kieran - To unsubscribe from this list: send the

Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Kieran Mansley
On Mon, 2007-05-21 at 10:52 -0700, Stephen Hemminger wrote: > On Fri, 18 May 2007 14:16:48 +0100 > Kieran Mansley <[EMAIL PROTECTED]> wrote: > > > Add support to Xen netfront for accelerated plugin module > > > > > > > > +/* > > + * List of all netfront accelerator plugin modules available. Eac

Re: [PATCH 3/4] [Net] Support Xen accelerated network plugin modules

2007-05-22 Thread Kieran Mansley
On Mon, 2007-05-21 at 10:50 -0700, Stephen Hemminger wrote: > Your mailer is word wrapping the patch so it won't apply as is. Apologies - I'll make sure it doesn't for the next revision. There should also have been a copy attached to the email that I would not expect to be wrapped. Thanks Kier