[PATCH 2.6.15-rc1] prism54 : Remove extraneous udelay/register read

2005-11-16 Thread Margit Schubert-While
ACK. Signed-off-by: Margit Schubert-While <[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: ROHC over PPP patch

2005-11-16 Thread Paul Mackerras
Jesus Arango writes: > I would like to porpose (see attached patch) the addition of protocol > values for multiplexing and demultiplexing ROHC header compression > packets. The constants in this patch are compliant with RFC 3241 (ROHC > over PPP). You could take pity on the reader of the code, an

Re: Issue 0 WAS (Re: Oustanding issues WAS(IRe: Consensus? WAS(RFC 2863)

2005-11-16 Thread jamal
On Wed, 2005-16-11 at 17:14 +0100, Thomas Graf wrote: > * jamal <[EMAIL PROTECTED]> 2005-11-15 21:16 > > 3) There is a kernel dev->operstate_kernel which is accessible via > > user space in the same manner IFF_UP flags are set etc. > > Just be careful about synchronization, that's one issue with

Re: Issue 0 WAS (Re: Oustanding issues WAS(IRe: Consensus? WAS(RFC 2863)

2005-11-16 Thread jamal
On Wed, 2005-16-11 at 16:46 +0100, Stefan Rompf wrote: > Am Mittwoch 16 November 2005 03:16 schrieb jamal: > > > I will not respond to the rest of your email - I wanna make sure we are > > in sync first on the above. So let me summarize: > > Ok, let's see if I understood you: > > > 1) There are

Re: [PATCH 00/10]: Netfilter IPsec support

2005-11-16 Thread Patrick McHardy
Marco Berizzi wrote: How are handled NAT-T packets (udp/4500) with these patches? Instead of ESP packets you see the encapsulated UDP packets on the netfilter hooks: (none):~# ping 10.0.0.1 -c 1 PING 10.0.0.1 (10.0.0.1): 56 data bytes OUTPUT IN= OUT=eth0 SRC=10.0.0.2 DST=10.0.0.1 LEN=84 T

Re: [PATCH 02/10]: [NETFILTER]: Defer fragmentation in ip_output when connection tracking is used

2005-11-16 Thread Patrick McHardy
Herbert Xu wrote: On Fri, Nov 11, 2005 at 03:19:17AM +, Patrick McHardy wrote: [NETFILTER]: Defer fragmentation in ip_output when connection tracking is used This allows to get rid of the okfn use in ip_refrag and save the useless fragmentation/defragmentation step when NAT is used. >

[PATCH]IPv6: Acquire addrconf_hash_lock for reading instead of writing in addrconf_verify(...)

2005-11-16 Thread Yan Zheng
Hi. addrconf_verify(...) only traverse address hash table when addrconf_hash_lock is held for writing, and it may hold addrconf_hash_lock for a long time. So I think it's better to acquire addrconf_hash_lock for reading instead of writing Signed-off-by: Yan Zheng <[EMAIL PROTECTED]>

Re: 2.6.15-rc1: NET_CLS_U32 not working?

2005-11-16 Thread Christian
Adrian Bunk schrieb: I'm assuming you are trying to insert the new module in your old kernel? yes, i tried to "modprobe" the compiled cls_u32 module. but the "make modules" errors are there anyway. i tried to compile a fresh 2.6.15-rc1 on a different machine (where i can't do "modprobe") and

Re: 2.6.15-rc1: NET_CLS_U32 not working?

2005-11-16 Thread Adrian Bunk
On Thu, Nov 17, 2005 at 12:10:17AM +0100, Christian wrote: > hi, > > i noticed that some of my QoS rules are not working any more. oh, i > forgot to enable CONFIG_NET_CLS_U32. but when enabled, i got the > following errors when compiling / installing the module: > > * Warning: "unregister_tcf_p

[PATCH netdev-2.6 6/8] e1000: Comments/Doc/Driver Version

2005-11-16 Thread Jeff Kirsher
Comments/Doc/Driver Version Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> diff -up linux-2.6/drivers/net/e1000/e1000_hw.c linux-2.6.new/drivers/net/e1000/e1000_hw.c --- linux-2.6/drivers/net/e10

[PATCH netdev-2.6 8/8] e1000: Multique Fixes

2005-11-16 Thread Jeff Kirsher
Multique Fixes - Added ethtool stats for multiple queues - Added printout for an indication that mutliqueue is enabled/disabled - Fixed receive issue where tasks were not being assigned a cpu Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> Signed-off

[PATCH netdev-2.6 7/8] e1000: Whitespace fix

2005-11-16 Thread Jeff Kirsher
Whitespace Fix - Remove trailing whitespaces - Improve readability Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> diff -up linux-2.6/drivers/net/e1000/e1000_ethtool.c linux-2.6.new/drivers/net/e1

[PATCH netdev-2.6 3/8] e1000: New features and devices

2005-11-16 Thread Jeff Kirsher
New features and devices - Print bus speed, width, and MAC when loading - Added device support for fiber adapter Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> diff -up linux-2.6/drivers/net/e100

[PATCH netdev-2.6 2/8] e1000:

2005-11-16 Thread Jeff Kirsher
Performance Enhancements - aggressive prefetch of rx_desc and skb->data just like we do for 10gig - align the prefetches to a dword to help speed them up - copybreak for packets < 256 bytes, ideally we would like to modify ethtool to allow this value to be changed, helps small MTU, many reassemblie

[PATCH netdev-2.6 5/8] e1000: Fix compilation warnings

2005-11-16 Thread Jeff Kirsher
Fix compilation warnings - Handle return values from functions Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> diff -up linux-2.6/drivers/net/e1000/e1000_main.c linux-2.6.new/drivers/net/e1000/e10

[PATCH netdev-2.6 1/8] e1000: Fixes for 8357x

2005-11-16 Thread Jeff Kirsher
Fixes for 8257x - TSO workaround - Fixes eeprom version reporting - Fix loopback test - Fix for WOL Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> diff -up linux-2.6/drivers/net/e1000/e1000.h lin

[PATCH netdev-2.6 4/8] e1000: Multiple fixes (RX fifo errors, SoL/IDER, flow control watermarks)

2005-11-16 Thread Jeff Kirsher
Multiple Fixes - Fix RX fifo errors and statistics counting - Fix for SoL/IDER sessions - Fix flow control watermarks - Fix DPRINTK statement Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> diff -

[PATCH netdev-2.6 0/8] e1000: Driver update

2005-11-16 Thread Jeff Kirsher
e1000 driver update Signed-off-by: Jeff Kirsher <[EMAIL PROTECTED]> Signed-off-by: John Ronciak <[EMAIL PROTECTED]> Signed-off-by: Jesse Brandeburg <[EMAIL PROTECTED]> 1. Fixes for 8257x - TSO workaround - Fixes eeprom version reporting - Fix loopback test - Fix for WOL 2. Performanc

[PATCH 2/2] r8169: do not abort when the power management capabilities are disabled

2005-11-16 Thread Francois Romieu
The capabilities of the 8169 can be disabled but it is hardly a reason to prevent the use the device. The (so far) unusual behavior has been reported on a MIPS platform by Yoichi Yuasa. Spotted-by: Yoichi Yuasa <[EMAIL PROTECTED]> Signed-off-by: Francois Romieu <[EMAIL PROTECTED]> --- drivers/n

[PATCH 0/2] r8169: introduction

2005-11-16 Thread Francois Romieu
This serie adresses two bugs in the r8169 driver: o fix printk_ratelimit in the interrupt handler o do not abort when the power management capabilities are disabled Please consider pulling from branch 'for-jeff' at git://electric-eye.fr.zoreil.com/home/romieu/linux-2.6.git -- Ueimor - To unsubsc

[PATCH 1/2] r8169: fix printk_ratelimit in the interrupt handler

2005-11-16 Thread Francois Romieu
I keep on getting "printk: N messages suppressed" messages. We need to test netif_msg_intr() _before_ running printk_ratelimit(), because the latter updates state. Cc: Jeff Garzik <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Francois Romieu <[EMAIL PROTECTED

Re: Pull request for halasa-hdlc branch of netdev-jwl

2005-11-16 Thread Jeff Garzik
Krzysztof Halasa wrote: "John W. Linville" <[EMAIL PROTECTED]> writes: Jeff, As requested, I separated this from the other patches for individual consideration. John Krzysztof Halasa: Generic HDLC WAN drivers - disable netif_carrier_off() drivers/net/wan/hdlc_cisco.c |6 +

Re: Pull request for halasa-hdlc branch of netdev-jwl

2005-11-16 Thread Krzysztof Halasa
"John W. Linville" <[EMAIL PROTECTED]> writes: > Jeff, > > As requested, I separated this from the other patches for individual > consideration. > > John > Krzysztof Halasa: > Generic HDLC WAN drivers - disable netif_carrier_off() > > drivers/net/wan/hdlc_cisco.c |6 ++ > drivers

[patch] i82593.h: make header comment GPL-compatible

2005-11-16 Thread John W. Linville
Signed-off-by: John W. Linville <[EMAIL PROTECTED]> diff --git a/drivers/net/wireless/i82593.h b/drivers/net/wireless/i82593.h index 33acb8a..afac5c7 100644 --- a/drivers/net/wireless/i82593.h +++ b/drivers/net/wireless/i82593.h @@ -7,11 +7,16 @@ * * Copyright 1994, Anders Klemets <[EMAIL PROT

Re: [PATCH] [IPV4,IPV6] replace handmade list with hlist in IPv{4,6} reassembly

2005-11-16 Thread David S. Miller
From: YOSHIFUJI Hideaki <[EMAIL PROTECTED]> Date: Thu, 17 Nov 2005 00:27:45 +0900 (JST) > In article <[EMAIL PROTECTED]> (at Thu, 17 Nov 2005 00:12:36 +0900 (JST)), > Yasuyuki KOZAKAI <[EMAIL PROTECTED]> says: > > > [IPV4,IPV6] replace handmade list with hlist in IPv{4,6} reassembly > > > Signe

Pull request for halasa-hdlc branch of netdev-jwl

2005-11-16 Thread John W. Linville
Jeff, As requested, I separated this from the other patches for individual consideration. John --- The following changes since commit cd52d1ee9a92587b242d946a2300a3245d3b885a: Linus Torvalds: Linux v2.6.15-rc1 are found in the git repository at: git://git.tuxdriver.com/git/netdev-

Pull request for netdev-jwl

2005-11-16 Thread John W. Linville
Jeff, These are simple bugfixes. They are eligible for consideration for the 2.6.15-rc train. John --- The following changes since commit cd52d1ee9a92587b242d946a2300a3245d3b885a: Linus Torvalds: Linux v2.6.15-rc1 are found in the git repository at: git://git.tuxdriver.com/git/ne

Pull request for upstream-jgarzik branch of netdev-jwl

2005-11-16 Thread John W. Linville
Jeff, These changes are outside of the "bugfix" category. John --- The following changes since commit cd52d1ee9a92587b242d946a2300a3245d3b885a: Linus Torvalds: Linux v2.6.15-rc1 are found in the git repository at: git://git.tuxdriver.com/git/netdev-jwl.git upstream-jgarzik Adrian

Re: [PATCH] [IPV4] Fix secondary IP addresses after promotion

2005-11-16 Thread Brian Pomerantz
On Tue, Nov 08, 2005 at 03:11:15PM +0100, Patrick McHardy wrote: > > Yes, fixing it correctly looks very hard. Just changing the routes > doesn't seem right to me, someone might have added it with exactly > this prefsrc and doesn't want it to change, its also not clear how > to notify on this. Tak

[PATCH 2/2] LSM-IPSec Network Hooks

2005-11-16 Thread Trent Jaeger
Added Signed-off by me and updated to latest kernel. Regards, Trent. -- This patch series implements per packet access control via the extension of the Linux Security Modules (LSM) interface by hooks in the XFRM and pfkey subsystems that leverage IPSec security

[PATCH 1/2] LSM-IPSec Network Hooks

2005-11-16 Thread Trent Jaeger
Added Signed-off by me, and updated to latest kernel. Regards, Trent. --- This patch series implements per packet access control via the extension of the Linux Security Modules (LSM) interface by hooks in the XFRM and pfkey subsystems that leverage IPSec se

Re: Issue 0 WAS (Re: Oustanding issues WAS(IRe: Consensus? WAS(RFC 2863)

2005-11-16 Thread Krzysztof Halasa
jamal <[EMAIL PROTECTED]> writes: > I am afraid I would have to agree with Stefan on this Krzysztof. Supporting false statements doesn't make them less false :-) OTOH I hope your opinions about people have no influence on your view of the code they write so it's not exactly important here. > Yo

Re: Issue 0 WAS (Re: Oustanding issues WAS(IRe: Consensus? WAS(RFC 2863)

2005-11-16 Thread Thomas Graf
* jamal <[EMAIL PROTECTED]> 2005-11-15 21:16 > 3) There is a kernel dev->operstate_kernel which is accessible via > user space in the same manner IFF_UP flags are set etc. Just be careful about synchronization, that's one issue with the currently proposed implementation. The callers cannot be mad

Re: Issue 0 WAS (Re: Oustanding issues WAS(IRe: Consensus? WAS(RFC 2863)

2005-11-16 Thread Stefan Rompf
Am Mittwoch 16 November 2005 03:16 schrieb jamal: > I will not respond to the rest of your email - I wanna make sure we are > in sync first on the above. So let me summarize: Ok, let's see if I understood you: > 1) There are read_only oper state IFF_XXX flags which are sent via > netlink to user

Re: [PATCH] [IPV4,IPV6] replace handmade list with hlist in IPv{4,6} reassembly

2005-11-16 Thread YOSHIFUJI Hideaki / 吉藤英明
Hello. In article <[EMAIL PROTECTED]> (at Thu, 17 Nov 2005 00:12:36 +0900 (JST)), Yasuyuki KOZAKAI <[EMAIL PROTECTED]> says: > [IPV4,IPV6] replace handmade list with hlist in IPv{4,6} reassembly > Signed-off-by: Yasuyuki Kozakai <[EMAIL PROTECTED]> Acked-by: YOSHIFUJI Hideaki <[EMAIL PROTECTED]

[PATCH] [IPV4,IPV6] replace handmade list with hlist in IPv{4,6} reassembly

2005-11-16 Thread Yasuyuki KOZAKAI
Hi, [IPV4,IPV6] replace handmade list with hlist in IPv{4,6} reassembly Both of ipq and frag_queue have *next and **prev, and they can be replaced with hlist. Thanks Arnaldo Carvalho de Melo for the suggestion. Signed-off-by: Yasuyuki Kozakai <[EMAIL PROTECTED]> --- commit 2dfd7179ae6d231896c6

kernel-2.6.14-1.1637_FC4.netdev.2 now available

2005-11-16 Thread John W. Linville
The second FC4 fedora-netdev kernel is now available. If you are already a fedora-netdev user, a simple 'yum update' should retrieve the new kernels for you. I now have a fedora-netdev-release package available. This simplifies the process of configuring yum for the fedora-netdev repository. The

Re: fedora-netdev.1 IPv6 freeze [Re: [ANNOUNCE] fedora-netdev kernel repository]

2005-11-16 Thread John W. Linville
On Wed, Nov 16, 2005 at 12:42:24PM +0100, Thomas Graf wrote: > * Pekka Savola <[EMAIL PROTECTED]> 2005-11-16 12:46 > > On Mon, 14 Nov 2005, John W. Linville wrote: > > > http://people.redhat.com/linville/kernels/fedora-netdev/ > > > > I guess the test can be termed a 'success' because after upda

ROHC over PPP patch

2005-11-16 Thread Jesus Arango
Hi, I would like to porpose (see attached patch) the addition of protocol values for multiplexing and demultiplexing ROHC header compression packets. The constants in this patch are compliant with RFC 3241 (ROHC over PPP). Thanks Jesus Arango diff -ruN ../linux-2.6.14.2/drivers/net/ppp_generic.c

remove Davicom DM9102 PCI id from tulip_core.c ?

2005-11-16 Thread Karsten Keil
Hello Jeff, I got some user reports that they have problems with a Davicom DM9102 NIC and the tulip driver. PCI ID: 1282:9102 (rev 20) Symptoms: NIC gets address via DHCP, ping works but real traffic stalls after some packets. Switching to the dmfe driver made it working for them. So I would

Re: fedora-netdev.1 IPv6 freeze [Re: [ANNOUNCE] fedora-netdev kernel repository]

2005-11-16 Thread Thomas Graf
* Pekka Savola <[EMAIL PROTECTED]> 2005-11-16 12:46 > On Mon, 14 Nov 2005, John W. Linville wrote: > > http://people.redhat.com/linville/kernels/fedora-netdev/ > > I guess the test can be termed a 'success' because after updating from > 2.6.14-1.1637_FC4 to 2.6.14-1.1637_FC4.netdev.1, I get 1

fedora-netdev.1 IPv6 freeze [Re: [ANNOUNCE] fedora-netdev kernel repository]

2005-11-16 Thread Pekka Savola
On Mon, 14 Nov 2005, John W. Linville wrote: http://people.redhat.com/linville/kernels/fedora-netdev/ I guess the test can be termed a 'success' because after updating from 2.6.14-1.1637_FC4 to 2.6.14-1.1637_FC4.netdev.1, I get 100% reproducible kernel hang (everything just freezes as