[PATCH][IPSEC][0/6] fix conflict of device tunnels with the ipsec tunnel

2007-02-08 Thread Kazunori MIYAZAWA
Hello David and Herbert, Thank you for applying our patches with the fix. I send patches to fix conflict of device tunnels with the inter address family ipsec tunnel. Yoshifuji-san and Kozakai-san noticed me of the confliction. I adopt same approach of tunnel4.c and tunnel6.c. I extend them to

[PATCH][IPSEC][4/6] changing ipip tunnel and xfrm4_tunnel to the API change

2007-02-08 Thread Kazunori MIYAZAWA
Changing ipip tunnel and xfrm4_tunnel to the API xfrm4_tunnel should regitser against both addresses so that it should handle a tunnel packet whose internal address is either IPv4 or IPv6. signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] --- net/ipv4/ipip.c |6 +++---

[PATCH][IPSEC][6/6] making sit tunnel use xfrm4_tunnel_register to work with inter address family IPsec tunnel

2007-02-08 Thread Kazunori MIYAZAWA
making sit tunnel use xfrm4_tunnel_register to work with inter address family IPsec tunnel signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] --- net/ipv6/Kconfig |1 + net/ipv6/sit.c | 30 ++ 2 files changed, 19 insertions(+), 12 deletions(-) diff --git

[PATCH][IPSEC][1/6] extending xfrm4_tunnel utility

2007-02-08 Thread Kazunori MIYAZAWA
This patch extends xfrm4_tunnel utility to support inter address family tunnel, which is IPv6 over IPv4 tunnel (aka sit). signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] --- include/net/xfrm.h |4 ++-- net/ipv4/tunnel4.c | 42 ++

[PATCH][IPSEC][5/6] changing ipv6 tunnel and xfrm6_tunnel to fit the API change

2007-02-08 Thread Kazunori MIYAZAWA
about xfrm6_tunnel, it is same as xfrm4_tunnel. signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] --- net/ipv6/ip6_tunnel.c |6 +++--- net/ipv6/xfrm6_tunnel.c | 12 +--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c

[PATCH][IPSEC][3/6] fix to refer encap_family when comparing with the xfrm_state

2007-02-08 Thread Kazunori MIYAZAWA
Fix the address family to refer encap_family when comparing with a kernel generated xfrm_state Signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] --- net/xfrm/xfrm_policy.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c

[PATCH][IPSEC][2/6] extending xfrm6_tunnel utility

2007-02-08 Thread Kazunori MIYAZAWA
This patch extends xfrm6_tunnel utility to support inter address family tunnel, which is IPv4 over IPv6 tunnel. signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] --- include/net/xfrm.h |4 ++-- net/ipv6/tunnel6.c | 43 +++

Re: [PATCH][IPSEC][0/6] fix conflict of device tunnels with the ipsec tunnel

2007-02-08 Thread YOSHIFUJI Hideaki / 吉藤英明
In article [EMAIL PROTECTED] (at Thu, 8 Feb 2007 17:03:24 +0900), Kazunori MIYAZAWA [EMAIL PROTECTED] says: We need this to use ipcomp with inter address family tunnel. [1/6] extending xfrm4_tunnel utility to support inter address family for sit [2/6] extending xfrm6_tunnel utility to

Re: [Ipw2100-devel] [RFC] Runtime power management on ipw2100

2007-02-08 Thread Zhu Yi
On Tue, 2007-02-06 at 21:44 +, Matthew Garrett wrote: I'm reluctant to drop the IRQ because PCMCIA seems to have a nasty habit of grabbing free looking IRQs and setting them to be edge triggered, which would obviously be bad. Can you provide more details for this problem and why we

[PATCH 0/3] ucc_geth updates for 2.6.21

2007-02-08 Thread Li Yang
Remove iopa() patch from previous series which is still in discussion in powerpc list. - Leo - 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 1/3] ucc_geth: Switch kmalloc to kzalloc and clean some redundant kmalloc casts

2007-02-08 Thread Li Yang
From: Ahmed S. Darwish [EMAIL PROTECTED] Switch kmalloc to kzalloc and clean some redundant kmalloc casts. Signed-off-by: Ahmed S. Darwish [EMAIL PROTECTED] Signed-off-by: Li Yang [EMAIL PROTECTED] --- drivers/net/ucc_geth.c | 21 - 1 files changed, 8 insertions(+), 13

[PATCH 2/3] ucc_geth: Remove obsolete workaround of link speed change

2007-02-08 Thread Li Yang
The workaround used a long delay of 4s which caused problem when two link-changes happens at the same time. Signed-off-by: Li Yang [EMAIL PROTECTED] Signed-off-by: Wu Xiaochuan [EMAIL PROTECTED] --- drivers/net/ucc_geth.c | 71 +++

Re: [PATCH] MAINTAINERS: update DMFE and wireless drivers mailing list

2007-02-08 Thread Tobias Ringström
Randy Dunlap wrote: From: Randy Dunlap [EMAIL PROTECTED] List netdev as the mailing list for DMFE (network driver) instead of lkml. List linux-wireless as the mailing list for wireless network drivers. Signed-off-by: Randy Dunlap [EMAIL PROTECTED] --- MAINTAINERS |4 ++-- 1 file changed,

[PATCH 3/3] ucc_geth: Add support to local-mac-address property

2007-02-08 Thread Li Yang
IEEE-1275 defines “local-mac-address” to be a standard property name to specify preassigned network address. This patch adds support for it. Signed-off-by: Li Yang [EMAIL PROTECTED] --- drivers/net/ucc_geth.c |8 +++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git

Re: [PATCH 0/4] spidernet: support for Celleb

2007-02-08 Thread Jens Osterkamp
PHY patch is mostly Ok except I don't like that medium variable Jens added which isn't used anywhere in sungem_phy. Jens, can you resend a version without that ? If you need that variable in spidernet itself, then put it there :-) That was the idea I had first, I'll change that. Also, the

Re: [PATCH] IPv6: Implement RFC 4429 Optimistic Duplicate Address Detection

2007-02-08 Thread Neil Horman
On Thu, Feb 08, 2007 at 06:52:06AM +0900, YOSHIFUJI Hideaki / 吉藤英明 wrote: In article [EMAIL PROTECTED] (at Wed, 7 Feb 2007 15:55:03 -0500), Neil Horman [EMAIL PROTECTED] says: diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 7b7bd44..8a1ea96 100644 ---

Re: [PATCH 1/4] ucc_geth: Change private immrbar_virt_to_phys to generic iopa

2007-02-08 Thread Timur Tabi
Kumar Gala wrote: Right, so when do you know if you'll be using MURAM or normal memory? Why not just keep around a token that is the physical address at the point you make the decision of MURAM vs normal memory. That's what the original code did, kinda. It called virt_to_phys() if it is

Re: [Lksctp-developers] Fw: Intermittent SCTP multihoming breakage

2007-02-08 Thread Steve Hill
On Wed, 7 Feb 2007, Vlad Yasevich wrote: I think I've tracked this down. Can you apply the attached patch on top of the one I posted before and re-run your test. Using the 2.6.20 kernel on the sending side with both patches applied, the problem seems to be fixed. Thanks. -- - Steve Hill

Re: [Lksctp-developers] Fw: Intermittent SCTP multihoming breakage

2007-02-08 Thread Vlad Yasevich
Steve Hill wrote: On Wed, 7 Feb 2007, Vlad Yasevich wrote: I think I've tracked this down. Can you apply the attached patch on top of the one I posted before and re-run your test. Using the 2.6.20 kernel on the sending side with both patches applied, the problem seems to be fixed.

Re: [PATCH review] b44: Port to ssb subsystem

2007-02-08 Thread Michael Buesch
On Wednesday 07 February 2007 23:36, Gary Zambrano wrote: On Tue, 2007-01-23 at 17:20 +0100, Michael Buesch wrote: This patch ports b44 to the new SSB subsystem and makes it possible to turn off PCI related stuff. This patch is against my tree, where I have implemented the ssb

Re: Funny Routing change since 2.6.16.x

2007-02-08 Thread Ingo Oeser
Hi Patrick, Patrick McHardy schrieb: Ingo Oeser wrote: Patrick McHardy schrieb: My guess is that you're using MASQUERADE on ppp0, which since 2.6.14 doesn't exclude locally generated packets anymore, so it translates them to the primary ppp0 address. For replies it works because NAT is

NetXen driver name

2007-02-08 Thread Amit Kale
Hi, NetXen ethernet driver present in 2.6.20 has name netxen_nic. The product itself is refered to as nx_nic. To make it inline with the product, would it be a good idea to change the name of the driver to nx_nic? Thanks. -Amit - To unsubscribe from this list: send the line unsubscribe netdev

Re: Funny Routing change since 2.6.16.x

2007-02-08 Thread Patrick McHardy
Ingo Oeser wrote: Patrick McHardy schrieb: Since these packets already have the proper source address chosen by routing, there is no need to NAT them anymore. So the easiest fix is to exclude them manually from masquerading based on the address. Just did that (iptables -t nat -I

[PATCH 0/5] [RFC] AF_RXRPC socket family implementation

2007-02-08 Thread David Howells
These patches together supply secure client-side RxRPC connectivity as a Linux kernel socket family. Only the transport/session side is supplied - the presentation side (marshalling the data) is left to the client. The userspace access methods make use of the control data passed to/by sendmsg()

[PATCH 1/5] Add PCBC crypto template support

2007-02-08 Thread David Howells
Add PCBC crypto template support as used by RxRPC. Signed-Off-By: David Howells [EMAIL PROTECTED] --- crypto/Kconfig |9 + crypto/Makefile |1 crypto/pcbc.c | 348 +++ 3 files changed, 358 insertions(+), 0 deletions(-) diff --git

[PATCH 3/5] Crypto: Add blkcipher accessors for using kernel data directly

2007-02-08 Thread David Howells
Add blkcipher accessors for using kernel data directly without the use of scatter lists. Also add a CRYPTO_ALG_DMA algorithm capability flag to permit or deny the use of DMA and hardware accelerators. A hardware accelerator may not be used to access any arbitrary piece of kernel memory lest it

[PATCH 2/5] FCrypt encryption module

2007-02-08 Thread David Howells
Add a crypto module to provide FCrypt encryption as used by RxRPC. Signed-Off-By: David Howells [EMAIL PROTECTED] --- crypto/Kconfig |7 + crypto/Makefile |1 crypto/fcrypt.c | 423 +++ crypto/tcrypt.c | 16 ++ crypto/tcrypt.h |

[PATCH 4/5] Move generic skbuff stuff from XFRM code to generic code

2007-02-08 Thread David Howells
Move generic skbuff stuff from XFRM code to generic code so that AF_RXRPC can use it too. Signed-Off-By: David Howells [EMAIL PROTECTED] --- include/linux/skbuff.h |4 + include/net/esp.h |2 - net/core/skbuff.c | 173

Re: [PATCH] IPv6: Implement RFC 4429 Optimistic Duplicate Address Detection

2007-02-08 Thread Neil Horman
On Thu, Feb 08, 2007 at 07:26:20AM +0900, YOSHIFUJI Hideaki / 吉藤英明 wrote: In article [EMAIL PROTECTED] (at Wed, 7 Feb 2007 15:55:03 -0500), Neil Horman [EMAIL PROTECTED] says: @@ -559,7 +562,7 @@ void ndisc_send_ns(struct net_device *dev, struct neighbour *neigh, return;

Re: [PATCH v2] MAINTAINERS: update DMFE and wireless drivers mailing list

2007-02-08 Thread Randy Dunlap
On Thu, 08 Feb 2007 10:08:53 +0100 Tobias Ringström wrote: While editing that section, would you please remove me (Tobias Ringstrom, [EMAIL PROTECTED]) from the dmfe driver in the MAINTAINERS file. I've not followed development for ages. OK, here's a new version of the patch. --- From:

Re: [PATCH 0/5] [RFC] AF_RXRPC socket family implementation

2007-02-08 Thread YOSHIFUJI Hideaki / 吉藤英明
In article [EMAIL PROTECTED] (at Thu, 08 Feb 2007 16:32:11 +), David Howells [EMAIL PROTECTED] says: (2) A local address can optionally be bound: struct sockaddr_rxrpc srx = { .srx_family = AF_RXRPC, .srx_service= 0, /* we're a client */

Re: [PATCH] [NETDEV] [001] dmfe : trivial/spelling fixes

2007-02-08 Thread Maxim Levitsky
On Thursday 08 February 2007 18:53, you wrote: On Thursday 08 February 2007 18:25, you wrote: On Wed, 2007-02-07 at 10:28 -0800, Levitsky Maxim wrote: --- linux-2.6.20-org/drivers/net/tulip/dmfe.c 2007-02-03 11:47:52.0 +0200 +++ linux-2.6.20-mod/drivers/net/tulip/dmfe.c

Re: [PATCH] IPv6: Implement RFC 4429 Optimistic Duplicate Address Detection

2007-02-08 Thread YOSHIFUJI Hideaki / 吉藤英明
In article [EMAIL PROTECTED] (at Thu, 8 Feb 2007 11:41:52 -0500), Neil Horman [EMAIL PROTECTED] says: diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 7b7bd44..07a5f4d 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -859,6 +859,40 @@ static int

Re: NetXen driver name

2007-02-08 Thread Andi Kleen
Amit Kale [EMAIL PROTECTED] writes: Hi, NetXen ethernet driver present in 2.6.20 has name netxen_nic. The product itself is refered to as nx_nic. To make it inline with the product, would it be a good idea to change the name of the driver to nx_nic? When it's already in a released kernel

Re: [PATCH 1/3] d80211: Add control structure for beacontemplates

2007-02-08 Thread Jiri Benc
On Tue, 6 Feb 2007 00:46:45 +0100, Ivo van Doorn wrote: --- dscape/net/d80211/ieee80211.c 2007-02-06 00:19:38.0 +0100 +++ dscape.control/net/d80211/ieee80211.c 2007-02-06 00:25:26.0 +0100 @@ -1857,7 +1857,8 @@ ieee80211_get_buffered_bc(struct ieee802

Re: [PATCH v3] d80211: Add control structure for beacontemplates

2007-02-08 Thread Jiri Benc
On Tue, 6 Feb 2007 17:03:59 +0100, Ivo van Doorn wrote: Previous send v2 had a null pointer error in it. When rt2500usb and rt73usb will start using beacontemplates, they would also need a control structure to be passed along to correctly set the tx parameters. This patch will add a

ICAS 2007 ICNS 2007, Athens, June 19-25, 2007 DEADLINE EXTENDED FEBRUARY 10

2007-02-08 Thread Dr. Reda
Invitation Please consider contributing to ICAS 2007, ICNS 2007 and the associated workshops listed below. Conference: June 19-25, 2007, Athens, Greece Important deadline for full paper submission: February 10, 2007 Please forward the Call for Submissions to the appropriate groups.

Re: [PATCH 2/5] FCrypt encryption module

2007-02-08 Thread Christoph Hellwig
On Thu, Feb 08, 2007 at 04:32:24PM +, David Howells wrote: +config CRYPTO_FCRYPT + tristate FCrypt cipher algorithm + select CRYPTO_ALGAPI + select CRYPTO_BLKCIPHER + help + FCrypt algorithm used by RxRPC. this probably wants a litte more vebose description :) -

Re: [PATCH] IPv6: Implement RFC 4429 Optimistic Duplicate Address Detection

2007-02-08 Thread Neil Horman
On Fri, Feb 09, 2007 at 02:10:37AM +0900, YOSHIFUJI Hideaki / 吉藤英明 wrote: In article [EMAIL PROTECTED] (at Thu, 8 Feb 2007 11:41:52 -0500), Neil Horman [EMAIL PROTECTED] says: snip These should be placed } here. No? Yes, you're right. After re-reading the logic, its pretty

Re: Network: convert network devices to use struct device instead of class_device

2007-02-08 Thread Jeff Garzik
Linux Kernel Mailing List wrote: Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=43cb76d91ee85f579a69d42bc8efc08bac560278 Commit: 43cb76d91ee85f579a69d42bc8efc08bac560278 Parent: 2943ecf2ed32632473c06f1975db47a7aa98c10f Author: Greg

Re: Network: convert network devices to use struct device instead of class_device

2007-02-08 Thread Stephen Hemminger
On Thu, 08 Feb 2007 07:43:18 -0500 Jeff Garzik [EMAIL PROTECTED] wrote: Linux Kernel Mailing List wrote: Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=43cb76d91ee85f579a69d42bc8efc08bac560278 Commit:

[PATCH] Convert network devices to use struct device instead of class_device

2007-02-08 Thread Kumar Gala
Convert network devices to use struct device instead of class_device. Greg missed this one in his cleanup path. Signed-off-by: Kumar Gala [EMAIL PROTECTED] --- commit 24c316396f71c6164f11ca1398151d8b15fd06e0 tree d02ee36eaf848d200dacf3bf795abaec1e55cbc2 parent

[PATCH][RESEND] gianfar: Convert network devices to use struct device instead of class_device

2007-02-08 Thread Kumar Gala
Convert network devices to use struct device instead of class_device. Greg missed this one in his cleanup path. Signed-off-by: Kumar Gala [EMAIL PROTECTED] --- Got Jeff's email wrong the first time. commit 24c316396f71c6164f11ca1398151d8b15fd06e0 tree d02ee36eaf848d200dacf3bf795abaec1e55cbc2

Re: Network: convert network devices to use struct device instead of class_device

2007-02-08 Thread Dmitry Torokhov
On 2/8/07, Stephen Hemminger [EMAIL PROTECTED] wrote: On Thu, 08 Feb 2007 07:43:18 -0500 Jeff Garzik [EMAIL PROTECTED] wrote: Linux Kernel Mailing List wrote: Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=43cb76d91ee85f579a69d42bc8efc08bac560278

[PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Roland Dreier
Commit 43cb76d9 (Network: convert network devices to use struct device instead of class_device) breaks the just-merged cxgb3 driver, since the code that was merged predates the change and was not in the tree when Greg made the change. This patch fixes cxgb3 to build with the change. It also

Re: [PATCH][IPSEC][0/6] fix conflict of device tunnels with the ipsec tunnel

2007-02-08 Thread David Miller
From: Kazunori MIYAZAWA [EMAIL PROTECTED] Date: Thu, 8 Feb 2007 17:03:24 +0900 I send patches to fix conflict of device tunnels with the inter address family ipsec tunnel. Yoshifuji-san and Kozakai-san noticed me of the confliction. I adopt same approach of tunnel4.c and tunnel6.c. I extend

Re: [PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Greg KH
On Thu, Feb 08, 2007 at 12:41:28PM -0800, Roland Dreier wrote: Commit 43cb76d9 (Network: convert network devices to use struct device instead of class_device) breaks the just-merged cxgb3 driver, since the code that was merged predates the change and was not in the tree when Greg made the

Re: [PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Roland Dreier
But I think Jeff already has a patch in the queue that makes this very change :) Really? I'm not sure I looked everywhere in Jeff's maze of git branches but I didn't see anything obvious in netdev-2.6.git when I looked before sending this. - R. - To unsubscribe from this list: send the

[PATCH 0/5] NET Improve layering of structs dst_entry/rtable/rt6_info/dn_route to get less dcache footprint

2007-02-08 Thread Eric Dumazet
Hi David Large routers/servers spend lot of CPU time in route cache lookups. This is because each item lookup uses two cache lines : the next pointer is at the begining of item, but keys are far away from this pointer. Furthermore, the u unions declared in struct rtable, rt6_info and

Re: [PATCH 1/5] Add PCBC crypto template support

2007-02-08 Thread Herbert Xu
On Thu, Feb 08, 2007 at 04:32:19PM +, David Howells wrote: Add PCBC crypto template support as used by RxRPC. Signed-Off-By: David Howells [EMAIL PROTECTED] This is already in the crypto-2.6 tree that I pushed yesterday. Cheers, -- Visit Openswan at http://www.openswan.org/ Email:

[PATCH 1/5] NET : Introduce union in struct dst_entry to hold 'next' pointer

2007-02-08 Thread Eric Dumazet
This patch introduces an anonymous union to nicely express the fact that all objects inherited from struct dst_entry should access to the generic 'next' pointer but with appropriate type verification. This patch is a prereq before following patches. Signed-off-by: Eric Dumazet [EMAIL

[PATCH 2/5] NET : Convert ipv4 route to use the new dst_entry 'next' pointer

2007-02-08 Thread Eric Dumazet
This patch removes the rt_next pointer from 'struct rtable.u' union, and renames u.rt_next to u.dst_rt_next. It also moves 'struct flowi' right after 'struct dst_entry' to prepare the gain on lookups. Signed-off-by: Eric Dumazet [EMAIL PROTECTED] --- linux-2.6.20/include/net/route.h

[PATCH 3/5] NET : Convert ipv6 route to use the new dst_entry 'next' pointer

2007-02-08 Thread Eric Dumazet
This patch removes the next pointer from 'struct rt6_info.u' union, and renames u.next to u.dst.rt6_next. Signed-off-by: Eric Dumazet [EMAIL PROTECTED] --- linux-2.6.20/include/net/ip6_fib.h 2007-02-08 21:20:31.0 +0100 +++ linux-2.6.20-ed/include/net/ip6_fib.h 2007-02-08

[PATCH 4/5] NET : Convert decnet route to use the new dst_entry 'next' pointer

2007-02-08 Thread Eric Dumazet
This patch removes the next pointer from 'struct rt6_info.u' union, and renames u.next to u.dst.rt6_next. It also moves 'struct flowi' right after 'struct dst_entry' to prepare speedup lookups. Signed-off-by: Eric Dumazet [EMAIL PROTECTED] - To unsubscribe from this list: send the line

[PATCH 5/5] NET : Reorder fields of struct dst_entry

2007-02-08 Thread Eric Dumazet
This last patch (but not least :) ) finally moves the next pointer at the end of struct dst_entry. This permits to perform route cache lookups with a minimal cost of one cache line per entry, instead of two. Both 32bits and 64bits platforms benefit from this new layout. Signed-off-by: Eric

[PATCH 4/5 resend] NET : Convert decnet route to use the new dst_entry 'next' pointer

2007-02-08 Thread Eric Dumazet
This patch removes the next pointer from 'struct rt6_info.u' union, and renames u.next to u.dst.rt6_next. It also moves 'struct flowi' right after 'struct dst_entry' to prepare speedup lookups. Signed-off-by: Eric Dumazet [EMAIL PROTECTED] --- linux-2.6.20/include/net/dn_route.h.orig

Re: [PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Jeff Garzik
Roland Dreier wrote: But I think Jeff already has a patch in the queue that makes this very change :) Really? I'm not sure I looked everywhere in Jeff's maze of git branches but I didn't see anything obvious in netdev-2.6.git when I looked before sending this. Andrew told me to drop it,

Re: [PATCH 0/7] [S390]: Introduction of AF_IUCV sockets support

2007-02-08 Thread David Miller
From: Frank Pavlic [EMAIL PROTECTED] Date: Fri, 2 Feb 2007 13:05:28 +0100 The patch set consists of following patches: [1/7] [S390]: Rewrite of the IUCV base code, part 1 [2/7] [S390]: Rewrite of the IUCV base code, part 2 [3/7] [S390]: Adapt monreader driver to new IUCV API [4/7] [S390]:

Re: [PATCH 0/5] [RFC] AF_RXRPC socket family implementation

2007-02-08 Thread David Miller
From: YOSHIFUJI Hideaki [EMAIL PROTECTED] Date: Fri, 09 Feb 2007 01:55:39 +0900 (JST) In article [EMAIL PROTECTED] (at Thu, 08 Feb 2007 16:32:11 +), David Howells [EMAIL PROTECTED] says: (2) A local address can optionally be bound: struct sockaddr_rxrpc srx = {

Re: [PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Roland Dreier
Andrew told me to drop it, so I dropped it :) That's odd -- do you know why? drivers/net/cxgb3 won't build at all in Linus's tree. I would have thought we want to fix it ASAP. - R. - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL

Re: [PATCH] NET : change layout of ehash table

2007-02-08 Thread David Miller
From: Eric Dumazet [EMAIL PROTECTED] Date: Wed, 7 Feb 2007 11:59:34 +0100 ehash table layout is currently this one : First half of this table is used by sockets not in TIME_WAIT state Second half of it is used by sockets in TIME_WAIT state. This is non optimal because of for a given hash

Re: [PATCH] NET : cleanup sock_from_file()

2007-02-08 Thread David Miller
From: Eric Dumazet [EMAIL PROTECTED] Date: Wed, 07 Feb 2007 00:03:25 +0100 I believe dead code from sock_from_file() can be cleaned up. All sockets are now built using sock_attach_fd(), that puts the 'sock' pointer into file-private_data and socket_file_ops into file-f_op I could not

[PATCH] Fix NULL pointer dereference on ipx unload

2007-02-08 Thread Jiri Bohac
Fixes a null pointer dereference when unloading the ipx module. On initialization of the ipx module, registering certain packet types can fail. When this happens, unloading the module later dereferences NULL pointers. This patch fixes that. Please apply. Signed-off-by: Jiri Bohac [EMAIL

Re: [PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Kumar Gala
On Feb 8, 2007, at 4:02 PM, Roland Dreier wrote: Andrew told me to drop it, so I dropped it :) That's odd -- do you know why? drivers/net/cxgb3 won't build at all in Linus's tree. I would have thought we want to fix it ASAP. I've posted a similar patch for drivers/net/gianfar_sysfs.c

Re: [PATCH] Fix NULL pointer dereference on ipx unload

2007-02-08 Thread David Miller
From: Jiri Bohac [EMAIL PROTECTED] Date: Fri, 9 Feb 2007 00:28:29 +0100 Fixes a null pointer dereference when unloading the ipx module. On initialization of the ipx module, registering certain packet types can fail. When this happens, unloading the module later dereferences NULL pointers.

Re: A potential bug in tcp_vegas.c

2007-02-08 Thread David Miller
From: Xiaoliang (David) Wei [EMAIL PROTECTED] Date: Thu, 1 Feb 2007 13:03:49 -0800 I am testing tcp_vegas.c in Linux with the NS-2 TCP-Linux. It seems that the ssthresh is not correctly reset to 2 in the tcp_vegas_cong_avoid function. The problem might lead to very unfair behavior among

Re: [PATCH][IPSEC][4/6] changing ipip tunnel and xfrm4_tunnel to the API change

2007-02-08 Thread Kazunori MIYAZAWA
Thank you Patrick for your review. I'll fix and send again. BTW, I'm going to use separete xfrm_tunnel_handler to solve the issue which you pointed at the moment. But why does register twice corrupt the list even if I use separate lists for the address family. Thank you, Patrick McHardy wrote:

Re: Crypto Update for 2.6.21

2007-02-08 Thread David Miller
From: Herbert Xu [EMAIL PROTECTED] Date: Thu, 8 Feb 2007 02:47:17 +1100 Here is the crypto update for 2.6.21: Please pull from git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git or master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git Pulled, thanks a

Hermes PCI broken on 2.6.20?

2007-02-08 Thread Deepak Saxena
Running both 2.6.20 and 2.6.18, the hermes PCI driver (CONFIG_HERMES_PCI) gives the following errors. Card is a revision 1 chipset (Dev ID 3873). Note that when iwconfig is run a few times in a row, the error messages go away but they might just be getting ratelimited. Anyone else seen this?

Re: [PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Divy Le Ray
Roland Dreier wrote: But I think Jeff already has a patch in the queue that makes this very change :) Really? I'm not sure I looked everywhere in Jeff's maze of git branches but I didn't see anything obvious in netdev-2.6.git when I looked before sending this. - R. I pushed a fix in

Re: [PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Roland Dreier
I pushed a fix in the -mm tree as soon as the driver got committed there. I saw the patch committed in Jeff's upstream branch yesterday. It looks like it did not make it to Linus'tree though. OK, I missed that. In any case cxgb3 in Linus's tree doesn't build right now. What's the plan to

[RFC] [PATCH] Network Events Connector

2007-02-08 Thread Samir Bellabes
Hi, Here is a new feature which can help firewalls to be more application aware, so more useful for people. Our previous discussion about cn_net and firewalls: http://marc2.theaimsgroup.com/?t=11597695752r=1w=2 Please, I would really like to have feedback and comments on that tool, in order

Re: [PATCH] cxgb3 - convert to user struct device instead of class_device

2007-02-08 Thread Jeff Garzik
Roland Dreier wrote: I pushed a fix in the -mm tree as soon as the driver got committed there. I saw the patch committed in Jeff's upstream branch yesterday. It looks like it did not make it to Linus'tree though. OK, I missed that. In any case cxgb3 in Linus's tree doesn't build right

Re: Hermes PCI broken on 2.6.20?

2007-02-08 Thread Pavel Roskin
Hello! On Thu, 2007-02-08 at 17:28 -0800, Deepak Saxena wrote: Running both 2.6.20 and 2.6.18, the hermes PCI driver (CONFIG_HERMES_PCI) gives the following errors. Card is a revision 1 chipset (Dev ID 3873). Note that when iwconfig is run a few times in a row, the error messages go away but

2.6.20 crash in tcp_tso_segment()

2007-02-08 Thread Mike Accetta
In 2.6.20 (and at least 2.6.19) we occasionally see a crash in tcp_tso_segment() which looks like it is occuring because the sk_buff chain has only a single element. Based on the register dump, the code looks to be crashing at the statement th = skb-h.th; in the loop do {

[PATCH][IPSEC][0/4] fix conflict of device tunnels with the ipsec tunnel

2007-02-08 Thread Kazunori MIYAZAWA
Hello David, I fixed and reconstruted the patch. # I understood my mistake. I'm ashamed. [1/4] changing API of xfrm4_tunnel_register [2/4] make sit use the xfrm4_tunnel_register [3/4] changing API of xfrm6_tunnel_register [4/4] Fix the address family to refer encap_family -- Kazunori Miyazawa

[PATCH][IPSEC][1/4] changing API of xfrm4_tunnel_register

2007-02-08 Thread Kazunori MIYAZAWA
This patch changes xfrm4_tunnel register and deregister interface to prepare for solving the conflict of device tunnels with inter address family IPsec tunnel. signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] --- include/net/xfrm.h |4 ++-- net/ipv4/ipip.c |6 +++---

[PATCH][IPSEC][2/4] make sit use the xfrm4_tunnel_register

2007-02-08 Thread Kazunori MIYAZAWA
This patch makes sit use xfrm4_tunnel_register instead of inet_add_protocol. It solves conflict of sit device with inter address family IPsec tunnel. signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] --- net/ipv6/Kconfig |1 + net/ipv6/sit.c | 30 ++ 2 files

[PATCH][IPSEC][3/4] changing API of xfrm6_tunnel_register

2007-02-08 Thread Kazunori MIYAZAWA
This patch changes xfrm6_tunnel register and deregister interface to prepare for solving the conflict of device tunnels with inter address family IPsec tunnel. There is no device which conflicts with IPv4 over IPv6 IPsec tunnel. signed-off-by Kazunori MIYAZAWA [EMAIL PROTECTED] ---

[PATCH][IPSEC][4/4] Fix the address family to refer encap_family

2007-02-08 Thread Kazunori MIYAZAWA
Fix the address family to refer encap_family when comparing with a kernel generated xfrm_state --- net/xfrm/xfrm_policy.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c index b7e537f..6e7214f 100644 ---

Re: [Bugme-new] [Bug 7962] New: oops in port_carrier_check

2007-02-08 Thread Jarek Poplawski
On 07-02-2007 23:09, Stephen Hemminger wrote: On Wed, 7 Feb 2007 12:52:16 -0800 Andrew Morton [EMAIL PROTECTED] wrote: ... Feb 7 21:20:18 plop kernel: BUG: unable to handle kernel paging request at virtual address 6b6b6b6b Feb 7 21:20:18 plop kernel: printing eip: Feb 7 21:20:18 plop

Re: [PATCH 2/3] X.25: Adds /proc/sys/net/x25/x25_forward to control forwarding.

2007-02-08 Thread Alexey Dobriyan
On Thu, Feb 08, 2007 at 10:14:31AM +1100, ahendry wrote: echo 1 /proc/sys/net/x25/x25_forward To turn on x25_forwarding, defaults to off --- linux-2.6.20-vanilla/include/linux/sysctl.h +++ linux-2.6.20/include/linux/sysctl.h @@ -699,7 +699,8 @@ enum { NET_X25_CALL_REQUEST_TIMEOUT=2,

Re: [PATCH 2/3] X.25: Adds /proc/sys/net/x25/x25_forward to control forwarding.

2007-02-08 Thread Alexey Dobriyan
On Thu, Feb 08, 2007 at 11:19:09PM +0300, Alexey Dobriyan wrote: On Thu, Feb 08, 2007 at 10:14:31AM +1100, ahendry wrote: echo 1 /proc/sys/net/x25/x25_forward To turn on x25_forwarding, defaults to off --- linux-2.6.20-vanilla/include/linux/sysctl.h +++

[PATCH] [RESEND] dmfe: number of fixes and features

2007-02-08 Thread Maxim Levitsky
Hi, I am resending updated version of patches I sent yesterday. Now I use gmail so patches shouldn't be corrupted. Also I cleaned them a lot. Looking for your comments, Your truly, Maxim Levitsky - To unsubscribe from this list: send the line

[PATCH 2.6.20 1/5] dmfe : trivial/spelling fixes

2007-02-08 Thread Maxim Levitsky
From: Maxim Levitsky [EMAIL PROTECTED] Subject: [PATCH 2.6.20 1/5] dmfe : trivial/spelling fixes Fix a typo, wrap lines on 80-th column, change KERN_ERR to KERN_INFO for link status message Signed-off-by: Maxim Levitsky [EMAIL PROTECTED] --- --- linux-2.6.20-orig/drivers/net/tulip/dmfe.c

[PATCH 2.6.20 2/5] dmfe: Fix two bugs

2007-02-08 Thread Maxim Levitsky
From: Maxim Levitsky [EMAIL PROTECTED] Subject : [PATCH 2.6.20 2/5] dmfe: Fix two bugs Fix a oops on module removal due to deallocating memory before unregistring driver Fix a NULL pointer dereference when dev_alloc_skb fails Signed-off-by: Maxim Levitsky [EMAIL PROTECTED] --- ---

[PATCH 2.6.20 3/5] dmfe: Fix link detection

2007-02-08 Thread Maxim Levitsky
From: Maxim Levitsky [EMAIL PROTECTED] Subject: [PATCH 2.6.20 3/5] dmfe: Fix link detection Remove unused 'link_failed' and fix link detection on cards that use external PHY Signed-off-by: Maxim Levitsky [EMAIL PROTECTED] --- --- linux-2.6.20-mod/drivers/net/tulip/dmfe.c 2007-02-08

[PATCH 2.6.20 5/5] dmfe: add support for wake on lan

2007-02-08 Thread Maxim Levitsky
From Maxim Levitsky [EMAIL PROTECTED] Subject: [PATCH 2.6.20 5/5] dmfe: add support for wake on lan This patch adds support for WOL on Magic Packet and on link change Signed-off-by: Maxim Levitsky [EMAIL PROTECTED] --- linux-2.6.20-mod/drivers/net/tulip/dmfe.c 2007-02-08 22:03:07.0

Re: [PATCH 1/3] [RESEND] X.25: Add call forwarding

2007-02-08 Thread David Miller
From: ahendry [EMAIL PROTECTED] Date: Thu, 08 Feb 2007 10:14:25 +1100 Adds call forwarding to X.25, allowing it to operate like an X.25 router. Useful if one needs to manipulate X.25 traffic with tools like tc. This is an update/cleanup based off a patch submitted by Daniel Ferenci a few

Re: [PATCH 2/3] X.25: Adds /proc/sys/net/x25/x25_forward to control forwarding.

2007-02-08 Thread David Miller
From: ahendry [EMAIL PROTECTED] Date: Thu, 08 Feb 2007 10:14:31 +1100 echo 1 /proc/sys/net/x25/x25_forward To turn on x25_forwarding, defaults to off Requires the previous patch. Signed-off-by: Andrew Hendry [EMAIL PROTECTED] Applied. - To unsubscribe from this list: send the line

Re: [PATCH 3/3] X.25: Adds /proc/net/x25/forward to view active forwarded calls.

2007-02-08 Thread David Miller
From: ahendry [EMAIL PROTECTED] Date: Thu, 08 Feb 2007 10:14:39 +1100 View the active forwarded calls cat /proc/net/x25/forward Signed-off-by: Andrew Hendry [EMAIL PROTECTED] Also applied, thank you. - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message

[PATCH 0/2 REVIEW] Multiple transmit/receive queue kernel

2007-02-08 Thread Kok, Auke
Hi, The following two patches are submitted for review. Please provide feedback and comments as usual. This set of patches implements a generic API for multiqueue-capable devices to have network stack support to assign multiple flows into each queue on the NIC. It provides an interface for

[PATCH 1/2] NET: Multiple queue network device support

2007-02-08 Thread Kok, Auke
From: Peter Waskiewicz Jr [EMAIL PROTECTED] Added an API and associated supporting routines for multiqueue network devices. This allows network devices supporting multiple TX queues to configure each queue within the netdevice and manage each queue independantly. Changes to the PRIO Qdisc also

[PATCH 2/2] e1000: Implement the new kernel API for multiqueue TX support.

2007-02-08 Thread Kok, Auke
From: Peter Waskiewicz Jr. [EMAIL PROTECTED] Several newer e1000 chipsets support multiple RX and TX queues. Most commonly, 82571's and ESB2LAN support 2 rx and 2 rx queues. Signed-off-by: Peter Waskiewicz Jr. [EMAIL PROTECTED] Signed-off-by: Auke Kok [EMAIL PROTECTED] --- drivers/net/Kconfig

Re: Network: convert network devices to use struct device instead of class_device

2007-02-08 Thread Greg KH
On Thu, Feb 08, 2007 at 07:43:18AM -0500, Jeff Garzik wrote: Linux Kernel Mailing List wrote: Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=43cb76d91ee85f579a69d42bc8efc08bac560278 Commit: 43cb76d91ee85f579a69d42bc8efc08bac560278 Parent:

Re: Network: convert network devices to use struct device instead of class_device

2007-02-08 Thread Greg KH
On Thu, Feb 08, 2007 at 07:41:30AM -0800, Stephen Hemminger wrote: On Thu, 08 Feb 2007 07:43:18 -0500 Jeff Garzik [EMAIL PROTECTED] wrote: Linux Kernel Mailing List wrote: Gitweb:

Re: Network: convert network devices to use struct device instead of class_device

2007-02-08 Thread Greg KH
On Thu, Feb 08, 2007 at 12:29:12PM -0500, Dmitry Torokhov wrote: On 2/8/07, Stephen Hemminger [EMAIL PROTECTED] wrote: On Thu, 08 Feb 2007 07:43:18 -0500 Jeff Garzik [EMAIL PROTECTED] wrote: Linux Kernel Mailing List wrote: Gitweb:

[patch] bugfixes and new hardware support for arcnet driver

2007-02-08 Thread Jeff Morrow
The modifications and bug fixes noted below were done by Realtime Control Works and Contemporary Control Systems, Inc, Jan 2005. They were incorporated into the 2.6 kernel by Jeff Morrow of Sierra Analytics, Feb 2007. [EMAIL PROTECTED] The changes have been tested on a Contemporary Controls

Re: Network: convert network devices to use struct device instead of class_device

2007-02-08 Thread Dmitry Torokhov
On Thursday 08 February 2007 19:56, Greg KH wrote: On Thu, Feb 08, 2007 at 12:29:12PM -0500, Dmitry Torokhov wrote: On 2/8/07, Stephen Hemminger [EMAIL PROTECTED] wrote: On Thu, 08 Feb 2007 07:43:18 -0500 Jeff Garzik [EMAIL PROTECTED] wrote: Linux Kernel Mailing List wrote:

Re: forcedeth problems on 2.6.20-rc6-mm3

2007-02-08 Thread Ayaz Abdulla
David Ford wrote: On 2/5/07, *Andrew Morton* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: On Sun, 04 Feb 2007 23:48:33 -0600 Robert Hancock [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Andrew Morton wrote: On Sun, 04 Feb 2007 23:13:09 -0600 Robert Hancock

  1   2   >