[PATCH 0/1] IPN: Inter Process Networking

2007-12-17 Thread Renzo Davoli
Inter Process Networking (PATCH): This patch adds a new address family for inter process communication. AF_IPN: inter process networking, i.e. multipoint, multicast/broadcast communication among processes (and networks). Contents of this document: 1. What is IPN? 2. Why IPN? 2.1 Why

Re: init_timer_deferrable conversion

2007-12-17 Thread Eric Dumazet
On Sun, 16 Dec 2007 22:00:23 -0500 (EST) Parag Warudkar [EMAIL PROTECTED] wrote: In my quest to get the wake-ups from idle per second down to bare minimum, I noticed 3 places in the kernel that could benefit from using init_timer_deferrable() instead of init_timer() - a)

Re: net-2.6.25 rebased...

2007-12-17 Thread Ilpo Järvinen
On Sun, 16 Dec 2007, David Miller wrote: I needed to rebase for two reasons: 1) Ilpo asked me to revert a lot of TCP stuff and the easiest way to do that was during a rebase. 2) Patrick McHardy needs some of the pending net-2.6 bug fixes in there in order to send me patches for

Re: [PATCH 0/1] IPN: Inter Process Networking

2007-12-17 Thread david
On Mon, 17 Dec 2007, Renzo Davoli wrote: Inter Process Networking (PATCH): 1. WHAT IS IPN? --- IPN is a new address family designed for one-to-many, many-to-many and peer-to-peer communication among processes. Berkeley sockets have been designed for client-server or point-to-point

[ROSE] [AX25] possible circular locking

2007-12-17 Thread Bernard Pidoux F6BVP
Hi, When I killall kissattach I can see the following message. This happens on kernel 2.6.24-rc5 already patched with the 6 previously patches I sent recently. === [ INFO: possible circular locking dependency detected ] 2.6.23.9 #1

[BUG] [ROSE] [AX25] system impossible to reboot with linux-2.6.24-rc5

2007-12-17 Thread Bernard Pidoux F6BVP
Hi, I am running a packet switch application using AX25, mkiss and ROSE modules (FPAC). It runs for days without problems when the patch I recently sent to this list are applied. However, if I try to shutdown linux-2.6.24-rc5 it goes into an infinite loop displaying the following message

Re: [PATCH 0/1] IPN: Inter Process Networking

2007-12-17 Thread Ludovico Gardenghi
On Mon, Dec 17, 2007 at 03:31:48AM -0800, [EMAIL PROTECTED] wrote: wouldn't it be better to just add the ability for multiple writers to send to the same pipe, and then have all of them splice into the output of that pipe? this would give the same data-agnostic communication that you are

Re: [PATCH 0/1] IPN: Inter Process Networking

2007-12-17 Thread david
On Mon, 17 Dec 2007, Ludovico Gardenghi wrote: On Mon, Dec 17, 2007 at 03:31:48AM -0800, [EMAIL PROTECTED] wrote: wouldn't it be better to just add the ability for multiple writers to send to the same pipe, and then have all of them splice into the output of that pipe? this would give the

Re: Packet per Second

2007-12-17 Thread Flávio Pires
In article [EMAIL PROTECTED] Glen Turner[EMAIL PROTECTED] wrote: On Fri, 2007-12-14 at 15:34 +, Fl‡vio Pires wrote: Well, I work on an ISP and we have a linux box acting as a bridge+firewall. With this bridge+firewall we control the packet rate per second from each client and from our

Re: [PATCH 2/2] [TCP]: Include __tcp_reset_fack_counts to non-__ version

2007-12-17 Thread Ilpo Järvinen
On Tue, 11 Dec 2007, Christoph Hellwig wrote: On Tue, Dec 11, 2007 at 01:50:39PM +0200, Ilpo J?rvinen wrote: + BUG_ON((prev != NULL) !tcp_skb_adjacent(sk, prev, skb[queue])); + + tcp_for_write_queue_from(skb[queue], sk, queue) { + if ((prev !=

Re: [PATCH 0/1] IPN: Inter Process Networking

2007-12-17 Thread Ludovico Gardenghi
On Mon, Dec 17, 2007 at 04:10:19AM -0800, [EMAIL PROTECTED] wrote: if you are talking network connections between virtual systems, then the exiting tap interfaces would seem to do everything you are looking for. you can add them to bridges, route between them, filter traffic between them

[PATCH] [NET][POWERPC] ucc_geth: really fix section mismatch

2007-12-17 Thread Anton Vorontsov
Commit ed7e63a51d46e835422d89c687b8a3e419a4212a has tried to fix section mismatch: WARNING: vmlinux.o(.init.text+0x17278): Section mismatch: reference to .exit.text:uec_mdio_exit (between 'ucc_geth_init' and 'uec_mdio_init') But that mismatch still happens. This patch actually fixing section

Re: Packet per Second

2007-12-17 Thread Matti Aarnio
On Mon, Dec 17, 2007 at 11:18:57AM +, Flávio Pires wrote: In article [EMAIL PROTECTED] Glen Turner[EMAIL PROTECTED] wrote: On Fri, 2007-12-14 at 15:34 +, Fl‡vio Pires wrote: Well, I work on an ISP and we have a linux box acting as a bridge+firewall. With this bridge+firewall we

Re: [NETFILTER] xt_hashlimit : speedups hash_dst()

2007-12-17 Thread Patrick McHardy
David Miller wrote: From: Eric Dumazet [EMAIL PROTECTED] Date: Sat, 15 Dec 2007 12:04:47 +0100 I prefer to let admins chose their size, since it makes attacker life more difficult :) For example, I can tell you I have a server, were size is between 2.000.000 and 3.500.000, I dont want to be

[RFC]: Break up a patch in two (rfc3448bis changes to feedback reception)

2007-12-17 Thread Arnaldo Carvalho de Melo
Hi Gerrit, Please take a look at the two attached patches, they were made from your patch [CCID3]: Implement rfc3448bis changes to feedback reception, that has this changeset comment: -- [CCID 3]: Implement rfc3448bis changes to feedback reception This implements the

[PATCH] Fix lost export-dynamic

2007-12-17 Thread Vitaliy Gusev
get_link_kind() fails for statically linked modules (vlan, veth, etc.) if ip was linked without export-dynamic. Signed-off-by: Vitaliy Gusev [EMAIL PROTECTED] -- Thank, Vitaliy Gusev diff --git a/ip/Makefile b/ip/Makefile index 448efb9..b427d58 100644 --- a/ip/Makefile +++ b/ip/Makefile @@

[PATCH/RFC] TCP: use non-delayed ACK for congestion control RTT

2007-12-17 Thread Gavin McCullagh
When a delayed ACK representing two packets arrives, there are two RTT samples available, one for each packet. The first (in order of seq number) will be artificially long due to the delay waiting for the second packet, the second will trigger the ACK and so will not itself be delayed.

Re: [RFC]: Break up a patch in two (rfc3448bis changes to feedback reception)

2007-12-17 Thread Gerrit Renker
| The end result should be equivalent, but please take a look and That is a good catch - this patch was a pain to keep updated exactly due to the many indentation levels. I had a quick look, the patch looks ok. Just a small suggestion - since the RTT lookup code in tx_packet_recv() is new,

Re: [NETFILTER] xt_hashlimit : speedups hash_dst()

2007-12-17 Thread Sami Farin
On Sat, Dec 15, 2007 at 21:42:19 -0800, David Miller wrote: From: Eric Dumazet [EMAIL PROTECTED] Date: Sat, 15 Dec 2007 12:04:47 +0100 I prefer to let admins chose their size, since it makes attacker life more difficult :) For example, I can tell you I have a server, were size is

Re: [NETFILTER] xt_hashlimit : speedups hash_dst()

2007-12-17 Thread Patrick McHardy
Sami Farin wrote: On Sat, Dec 15, 2007 at 21:42:19 -0800, David Miller wrote: From: Eric Dumazet [EMAIL PROTECTED] Date: Sat, 15 Dec 2007 12:04:47 +0100 I prefer to let admins chose their size, since it makes attacker life more difficult :) For example, I can tell you I have a server, were

Re: init_timer_deferrable conversion

2007-12-17 Thread Eric Dumazet
On Mon, 17 Dec 2007 09:55:04 +0100 Eric Dumazet [EMAIL PROTECTED] wrote: On Sun, 16 Dec 2007 22:00:23 -0500 (EST) Parag Warudkar [EMAIL PROTECTED] wrote: In my quest to get the wake-ups from idle per second down to bare minimum, I noticed 3 places in the kernel that could benefit from

Re: [PATCH] net/ipv4/netfilter/ip_tables.c: remove some inlines

2007-12-17 Thread Patrick McHardy
Please CC netfilter-devel on netfilter patches. Denys Vlasenko wrote: Hi Patrick, Harald, I was working on unrelated problem and noticed that ip_tables.c seem to abuse inline. I prepared a patch which removes inlines except those which are used by packet matching code (and thus are really

[PATCHES 0/5]: DCCP patches for 2.6.25

2007-12-17 Thread Arnaldo Carvalho de Melo
Hi David, Please consider pulling from: master.kernel.org:/pub/scm/linux/kernel/git/acme/net-2.6.25 Best Regards, - Arnaldo net/dccp/ccids/ccid3.c | 252 +- net/dccp/ccids/ccid3.h |8 - net/dccp/dccp.h|6 - 3 files

[PATCH 3/5] [CCID3]: Implement rfc3448bis changes to feedback reception

2007-12-17 Thread Arnaldo Carvalho de Melo
From: Gerrit Renker [EMAIL PROTECTED] This implements the algorithm to update the allowed sending rate X upon receiving feedback packets, as described in draft rfc3448bis, 4.2/4.3. Signed-off-by: Gerrit Renker [EMAIL PROTECTED] Signed-off-by: Ian McDonald [EMAIL PROTECTED] Signed-off-by: Arnaldo

[PATCH 1/5] [CCID3]: Use a function to update p_inv, and p is never used

2007-12-17 Thread Arnaldo Carvalho de Melo
From: Gerrit Renker [EMAIL PROTECTED] This patch 1) concentrates previously scattered computation of p_inv into one function; 2) removes the `p' element of the CCID3 RX sock (it is redundant); 3) makes the tfrc_rx_info structure standalone, only used on demand. Signed-off-by: Gerrit Renker

[PATCH 2/5] [CCID3]: Remove two irrelevant states in TX feedback handling

2007-12-17 Thread Arnaldo Carvalho de Melo
From: Gerrit Renker [EMAIL PROTECTED] * the NO_SENT state is only triggered in bidirectional mode, costing unnecessary processing. * the TERM (terminating) state is irrelevant. Signed-off-by: Gerrit Renker [EMAIL PROTECTED] Signed-off-by: Ian McDonald [EMAIL PROTECTED] Signed-off-by:

[PATCH 5/5] [DCCP]: Remove unused inline function

2007-12-17 Thread Arnaldo Carvalho de Melo
From: Gerrit Renker [EMAIL PROTECTED] The function follows48(), which is a special-case of dccp_delta_seqno(), is nowhere used in the DCCP code, thus removed by this patch. Signed-off-by: Gerrit Renker [EMAIL PROTECTED] Signed-off-by: Ian McDonald [EMAIL PROTECTED] Signed-off-by: Arnaldo

[PATCH 4/5] [CCID3]: Nofeedback timer according to rfc3448bis

2007-12-17 Thread Arnaldo Carvalho de Melo
From: Gerrit Renker [EMAIL PROTECTED] This implements the changes to the nofeedback timer handling suggested in draft rfc3448bis00, section 4.4. In particular, these changes mean: * better handling of the lossless case (p == 0) * the timestamp for computing t_ld becomes obsolete * much more

[0/4] DST: Distributed storage.

2007-12-17 Thread Evgeniy Polyakov
Distributed storage. I'm pleased to announce the 12'th release of the distributed storage subsystem (DST). DST allows to form a storage on top of local and remote nodes and combine them into linear or mirroring setup, which in turn can be exported to remote nodes. Short changelog: * new

[2/4] DST: Core distributed storage files.

2007-12-17 Thread Evgeniy Polyakov
Core distributed storage files. Include userspace interfaces, initialization, block layer bindings and other core functionality. Signed-off-by: Evgeniy Polyakov [EMAIL PROTECTED] diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig index b4c8319..ca6592d 100644 ---

[3/4] DST: Network state machine.

2007-12-17 Thread Evgeniy Polyakov
Network state machine. Includes network async processing state machine and related tasks. Signed-off-by: Evgeniy Polyakov [EMAIL PROTECTED] diff --git a/drivers/block/dst/kst.c b/drivers/block/dst/kst.c new file mode 100644 index 000..6d92014 --- /dev/null +++ b/drivers/block/dst/kst.c @@

[1/4] DST: Distributed storage documentation.

2007-12-17 Thread Evgeniy Polyakov
Distributed storage documentation. Algorithms used in the system, userspace interfaces (sysfs dirs and files), design and implementation details are described here. Signed-off-by: Evgeniy Polyakov [EMAIL PROTECTED] diff --git a/Documentation/dst/algorithms.txt

[4/4] DST: Algorithms used in distributed storage.

2007-12-17 Thread Evgeniy Polyakov
Algorithms used in distributed storage. Mirror and linear mapping code. Signed-off-by: Evgeniy Polyakov [EMAIL PROTECTED] diff --git a/drivers/block/dst/alg_linear.c b/drivers/block/dst/alg_linear.c new file mode 100644 index 000..836764d --- /dev/null +++ b/drivers/block/dst/alg_linear.c

Re: ip neigh show not showing arp cache entries?

2007-12-17 Thread Chris Friesen
YOSHIFUJI Hideaki / 吉藤英明 wrote: In article [EMAIL PROTECTED] (at Wed, 12 Dec 2007 15:57:08 -0600), Chris Friesen [EMAIL PROTECTED] says: You may try other versions of this command http://devresources.linux-foundation.org/dev/iproute2/download/ They appear to be numbered by kernel version,

[RFC] ehea: kdump support - rework

2007-12-17 Thread Thomas Klein
This patch adds kdump support using the new PPC crash shutdown hook to the ehea driver. The reworked implementation follows the feedback I got. The crash handler now just iterates over two simple arrays instead of handling linked lists. Further feedback will be appreciated. ehea kdump support

Re: [1/4] DST: Distributed storage documentation.

2007-12-17 Thread Kay Sievers
On Dec 17, 2007 4:03 PM, Evgeniy Polyakov [EMAIL PROTECTED] wrote: +++ b/Documentation/dst/sysfs.txt @@ -0,0 +1,33 @@ +This file describes sysfs files created for each storage. + +1. Per-storage files. +Each storage has its own dir /sysfs/devices/$storage_name, +2. Per-node files.

Re: After many hours all outbound connections get stuck in SYN_SENT

2007-12-17 Thread James Nichols
Here is some additional information about this problem as requested. I ran ss -m, but no data was returned, what options should I use with ss to gather relevant information? The output of netstat -s: Ip: 1346453452 total packets received 0 forwarded 0 incoming packets discarded

Re: [PATCH] bridge: assign random address

2007-12-17 Thread Stephen Hemminger
On Sun, 16 Dec 2007 14:29:15 -0800 Andrew Morton [EMAIL PROTECTED] wrote: On Sun, 16 Dec 2007 13:37:17 -0800 (PST) David Miller [EMAIL PROTECTED] wrote: From: Stephen Hemminger [EMAIL PROTECTED] Date: Tue, 11 Dec 2007 15:48:35 -0800 Subject: Re: [PATCH] bridge: assign random

Re: init_timer_deferrable conversion

2007-12-17 Thread Stephen Hemminger
On Mon, 17 Dec 2007 15:29:43 +0100 Eric Dumazet [EMAIL PROTECTED] wrote: On Mon, 17 Dec 2007 09:55:04 +0100 Eric Dumazet [EMAIL PROTECTED] wrote: On Sun, 16 Dec 2007 22:00:23 -0500 (EST) Parag Warudkar [EMAIL PROTECTED] wrote: In my quest to get the wake-ups from idle per second

Re: init_timer_deferrable conversion

2007-12-17 Thread Parag Warudkar
On Dec 17, 2007 12:00 PM, Stephen Hemminger [EMAIL PROTECTED] wrote: a) drivers/net/sky2.c - watchdog_timer. This was showing up high on Powertop's list of things that cause routine wakeups from idle. After converting to init_timer_deferrable() the wakeups went down and this one

Re: ip neigh show not showing arp cache entries?

2007-12-17 Thread Patrick McHardy
Chris Friesen wrote: The original ip command and the new one (/tmp/ip) both give the same results--some of the entries are missing. [EMAIL PROTECTED]:/root ip neigh show all 172.24.137.0 dev bond0 FAILED 172.24.0.9 dev bond0 lladdr 00:07:e9:41:4b:b4 REACHABLE 10.41.18.101 dev eth6 lladdr

[PATCH 2.6.25 1/2]S2io: Fixes to enable multiple transmit fifo support

2007-12-17 Thread Ramkrishna Vepa
Fixes to enable multiple transmit fifos (upto a maximum of eight). - Moved single tx_lock from struct s2io_nic to struct fifo_info. - Moved single ufo_in_band_v structure from struct s2io_nic to struct fifo_info. - Assign the respective interrupt number for the transmitting fifo in the

[PATCH 2.6.25 2/2]S2io: Fixes to enable multiple transmit fifos

2007-12-17 Thread Ramkrishna Vepa
Multiple transmit fifo initialization - - Assigned equal scheduling priority for all configured FIFO's. - Modularized transmit traffic interrupt initialization since it is executed in s2io_card_up and s2io_link. Enable continuous tx interrupt when link is UP and vice verse. -

Re: init_timer_deferrable conversion

2007-12-17 Thread Stephen Hemminger
On Mon, 17 Dec 2007 12:47:59 -0500 Parag Warudkar [EMAIL PROTECTED] wrote: On Dec 17, 2007 12:00 PM, Stephen Hemminger [EMAIL PROTECTED] wrote: a) drivers/net/sky2.c - watchdog_timer. This was showing up high on Powertop's list of things that cause routine wakeups from idle.

Re: init_timer_deferrable conversion

2007-12-17 Thread Parag Warudkar
On Dec 17, 2007 1:13 PM, Stephen Hemminger [EMAIL PROTECTED] wrote: On Mon, 17 Dec 2007 12:47:59 -0500 Parag Warudkar [EMAIL PROTECTED] wrote: On Dec 17, 2007 12:00 PM, Stephen Hemminger [EMAIL PROTECTED] wrote: a) drivers/net/sky2.c - watchdog_timer. This was showing up high

Re: [PATCH 3/3] [UDP6]: Counter increment on BH mode

2007-12-17 Thread Christoph Lameter
The cpu alloc patches also fix this issue one way (disabling preempt) or the other (atomic instruction that does not need disabling of preeemption). -- To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at

[PATCH] drivers/ssb/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- drivers/ssb/b43_pci_bridge.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/ssb/b43_pci_bridge.c b/drivers/ssb/b43_pci_bridge.c index f145d8a..310b84f 100644 --- a/drivers/ssb/b43_pci_bridge.c +++

[PATCH] include/net/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- include/net/ax25.h |2 +- include/net/ip6_tunnel.h |2 +- include/net/irda/discovery.h |2 +- include/net/sctp/structs.h |6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/net/ax25.h

[PATCH] net/dccp/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/dccp/ackvec.h |2 +- net/dccp/ccids/ccid3.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/dccp/ackvec.h b/net/dccp/ackvec.h index 9ef0737..9671ecd 100644 --- a/net/dccp/ackvec.h +++ b/net/dccp/ackvec.h

[PATCH] net/ipv6/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/ipv6/ndisc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 67997a7..777ed73 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -612,7 +612,7 @@ void

[PATCH] net/irda/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/irda/ircomm/ircomm_param.c |2 +- net/irda/irlan/irlan_eth.c |2 +- net/irda/irlap_frame.c |2 +- net/irda/parameters.c | 12 ++-- net/irda/wrapper.c |2 +- 5 files changed, 10

[PATCH] net/core/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/core/dev.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/core/dev.c b/net/core/dev.c index 26a3a3a..be9d301 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2819,7 +2819,7 @@ void dev_set_allmulti(struct

[PATCH] net/sched/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/sched/sch_hfsc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/sched/sch_hfsc.c b/net/sched/sch_hfsc.c index 55e7e45..a6ad491 100644 --- a/net/sched/sch_hfsc.c +++ b/net/sched/sch_hfsc.c @@ -160,7 +160,7 @@

[PATCH] net/sctp/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/sctp/sm_make_chunk.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c index f487629..ed7c9e3 100644 --- a/net/sctp/sm_make_chunk.c +++

[PATCH] net/netlabel/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/netlabel/netlabel_mgmt.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/netlabel/netlabel_mgmt.c b/net/netlabel/netlabel_mgmt.c index 5648337..9c41464 100644 --- a/net/netlabel/netlabel_mgmt.c +++

[PATCH] net/netfilter/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/netfilter/nf_conntrack_sip.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/netfilter/nf_conntrack_sip.c b/net/netfilter/nf_conntrack_sip.c index 8f8b5a4..515abff 100644 --- a/net/netfilter/nf_conntrack_sip.c

Re: [PATCH 3/3] [UDP6]: Counter increment on BH mode

2007-12-17 Thread Christoph Lameter
On Sun, 16 Dec 2007, Herbert Xu wrote: If we can get the address of the per-cpu counter against some sort of a per-cpu base pointer, e.g., %gs on x86, then we can do incq%gs:(%rax) where %rax would be the offset with %gs as the base. This would obviate the need for the CPU ID

[PATCH] net/ipv4/: Spelling fixes

2007-12-17 Thread Joe Perches
Signed-off-by: Joe Perches [EMAIL PROTECTED] --- net/ipv4/netfilter/nf_nat_sip.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/ipv4/netfilter/nf_nat_sip.c b/net/ipv4/netfilter/nf_nat_sip.c index 3ca9897..8996ccb 100644 --- a/net/ipv4/netfilter/nf_nat_sip.c +++

Re: ip neigh show not showing arp cache entries?

2007-12-17 Thread Chris Friesen
Patrick McHardy wrote: From a kernel perspective there are only complete dumps, the filtering is done by iproute. So the fact that it shows them when querying specifically implies there is a bug in the iproute neighbour filter. Does it work if you omit all from the ip neigh show command?

Re: [PATCH] net/netlabel/: Spelling fixes

2007-12-17 Thread Paul Moore
On Monday 17 December 2007 2:40:35 pm Joe Perches wrote: Signed-off-by: Joe Perches [EMAIL PROTECTED] Thanks Joe. Acked-by: Paul Moore [EMAIL PROTECTED] --- net/netlabel/netlabel_mgmt.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/netlabel/netlabel_mgmt.c

Re: Please pull 'fixes-jgarzik' branch of wireless-2.6

2007-12-17 Thread John W. Linville
On Sat, Dec 15, 2007 at 11:31:48PM -0500, John W. Linville wrote: Cyrill Gorcunov (2): ieee80211_rate: missed unlock net/mac80211/ieee80211_rate.c |1 + diff --git a/net/mac80211/ieee80211_rate.c b/net/mac80211/ieee80211_rate.c index 7254bd6..3260a4a 100644 ---

Re: Please pull 'fixes-jgarzik' branch of wireless-2.6

2007-12-17 Thread David Miller
From: John W. Linville [EMAIL PROTECTED] Date: Mon, 17 Dec 2007 14:34:02 -0500 On Sat, Dec 15, 2007 at 11:31:48PM -0500, John W. Linville wrote: Cyrill Gorcunov (2): ieee80211_rate: missed unlock net/mac80211/ieee80211_rate.c |1 + diff --git

Re: Please pull 'fixes-jgarzik' branch of wireless-2.6

2007-12-17 Thread Jeff Garzik
John W. Linville wrote: On Sat, Dec 15, 2007 at 11:31:48PM -0500, John W. Linville wrote: Cyrill Gorcunov (2): ieee80211_rate: missed unlock net/mac80211/ieee80211_rate.c |1 + diff --git a/net/mac80211/ieee80211_rate.c b/net/mac80211/ieee80211_rate.c index

Re: [RFT] tehuti: napi fix

2007-12-17 Thread Stephen Hemminger
On Sun, 16 Dec 2007 13:38:33 -0800 (PST) David Miller [EMAIL PROTECTED] wrote: From: Stephen Hemminger [EMAIL PROTECTED] Date: Wed, 12 Dec 2007 13:58:52 -0800 This should fix the tehuti napi fence post problems by getting rid of priv-napi_stop, and setting weight to 32 (like other 10G).

Re: [PATCH] [NET][POWERPC] ucc_geth: really fix section mismatch

2007-12-17 Thread Jeff Garzik
Anton Vorontsov wrote: Commit ed7e63a51d46e835422d89c687b8a3e419a4212a has tried to fix section mismatch: WARNING: vmlinux.o(.init.text+0x17278): Section mismatch: reference to .exit.text:uec_mdio_exit (between 'ucc_geth_init' and 'uec_mdio_init') But that mismatch still happens. This patch

Re: Please pull 'fixes-jgarzik' branch of wireless-2.6

2007-12-17 Thread Jeff Garzik
John W. Linville wrote: Jeff, A few more fixes for 2.6.24...let me know if there are any problems! Thanks, John P.S. The zd1211rw patch is already in netdev-2.6#upstream, but it belongs in 2.6.24 as well. --- Individual patches available here:

Re: [PATCH] net/sctp/: Spelling fixes

2007-12-17 Thread Vlad Yasevich
Joe Perches wrote: Signed-off-by: Joe Perches [EMAIL PROTECTED] Thanks... I am surprised this is all you found :) ACK. -vlad --- net/sctp/sm_make_chunk.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c

Re: [PATCH] drivers/net/: Spelling fixes

2007-12-17 Thread Joe Perches
On Mon, 2007-12-17 at 21:56 +0100, Stefano Brivio wrote: On Mon, 17 Dec 2007 11:40:08 -0800 Joe Perches [EMAIL PROTECTED] wrote: diff --git a/drivers/net/ucc_geth_ethtool.c b/drivers/net/ucc_geth_ethtool.c index 9a9622c..f8d319b 100644 --- a/drivers/net/ucc_geth_ethtool.c +++

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

2007-12-17 Thread John W. Linville
Dave, A few more small fixes for 2.6.24. Let me know if there are any problems! Thanks, John --- Individual patches are available here: http://www.kernel.org/pub/linux/kernel/people/linville/wireless-2.6/fixes-davem --- The following changes since commit

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

2007-12-17 Thread John W. Linville
Dave, A few more patches for 2.6.25... Note that there are a few one-line patches to some drivers to support a new flag used for timestamps in radiotap headers for mac80211, and a couple others related to the new scan capabilities stuff added to WEXT in order to better support hidden SSIDs for

[PATCH 2.6.25 0/9]: SCTP: Update ADD-IP implementation to conform to spec

2007-12-17 Thread Vlad Yasevich
The following is a set of patches that updates the SCTP ADD-IP implementation to conform to the recently published RFC. ADD-IP is a SCTP Dynamic Address Configuration extensions, whereby the two end systems can dynamically modify the address lists for a given connection. One of the applications

[PATCH 2.6.25 1/9] SCTP: Discard unauthenticated ASCONF and ASCONF ACK chunks

2007-12-17 Thread Vlad Yasevich
Now that we support AUTH, discard unauthenticated ASCONF and ASCONF ACK chunks as mandated in the ADD-IP spec. Signed-off-by: Vlad Yasevich [EMAIL PROTECTED] --- net/sctp/sm_statefuns.c | 18 ++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git

[PATCH 2.6.25 2/9] SCTP: Handle the wildcard ADD-IP Address parameter

2007-12-17 Thread Vlad Yasevich
The Address Parameter in the parameter list of the ASCONF chunk may be a wildcard address. In this case special processing is required. For the 'add' case, the source IP of the packet is added. In the 'del' case, all addresses except the source IP of packet are removed. In the mark primary

[PATCH 2.6.25 3/9] SCTP: Add the handling of Set Primary IP Address parameter to INIT

2007-12-17 Thread Vlad Yasevich
The ADD-IP Set Primary IP Address parameter is allowed in the INIT/INIT-ACK exchange. Allow processing of this parameter during the INIT/INIT-ACK. Signed-off-by: Vlad Yasevich [EMAIL PROTECTED] --- include/net/sctp/structs.h |1 + net/sctp/sm_make_chunk.c | 27

[PATCH 2.6.25 4/9] SCTP: Update association lookup to look at ASCONF chunks as well

2007-12-17 Thread Vlad Yasevich
ADD-IP draft section 5.2 specifies that if an association can not be found using the source and destination of the IP packet, then, if the packet contains ASCONF chunks, the Address Parameter TLV should be used to lookup an association. Signed-off-by: Vlad Yasevich [EMAIL PROTECTED] ---

[PATCH 2.6.25 5/9] SCTP: ADD-IP updates the states where ASCONFs can be sent

2007-12-17 Thread Vlad Yasevich
C4) Both ASCONF and ASCONF-ACK Chunks MUST NOT be sent in any SCTP state except ESTABLISHED, SHUTDOWN-PENDING, SHUTDOWN-RECEIVED, and SHUTDOWN-SENT. Signed-off-by: Vlad Yasevich [EMAIL PROTECTED] --- net/sctp/sm_statetable.c | 18 +- 1 files changed, 9

[PATCH 2.6.25 9/9] SCTP: Follow Add-IP security consideratiosn wrt INIT/INIT-ACK

2007-12-17 Thread Vlad Yasevich
The Security Considerations section of RFC 5061 has the following text: If an SCTP endpoint that supports this extension receives an INIT that indicates that the peer supports the ASCONF extension but does NOT support the [RFC4895] extension, the receiver of such an INIT MUST send an

[PATCH 2.6.25 8/9] SCTP: Implement ADD-IP special case processing for ABORT chunk

2007-12-17 Thread Vlad Yasevich
ADD-IP spec has a special case for processing ABORTs: F4) ... One special consideration is that ABORT Chunks arriving destined to the IP address being deleted MUST be ignored (see Section 5.3.1 for further details). Check if the address we received on is in the DEL state, and

[PATCH 2.6.25 6/9] SCTP: Update ASCONF processing to conform to spec.

2007-12-17 Thread Vlad Yasevich
The processing of the ASCONF chunks has changed a lot in the spec. New items are: 1. A list of ASCONF-ACK chunks is now cached 2. The source of the packet is used in response. 3. New handling for unexpect ASCONF chunks. Signed-off-by: Vlad Yasevich [EMAIL PROTECTED] ---

Re: [BUG] lack of /proc/net/ax25 with 2.6.24-rc5

2007-12-17 Thread Rafael J. Wysocki
On Sunday, 16 of December 2007, Bernard Pidoux wrote: With 2.6.24-rc5 there is no /proc/net/ax25 FYI, I've created a Bugzilla entry for this issue at: http://bugzilla.kernel.org/show_bug.cgi?id=9589 Please add your address to the CC list in there. Thanks, Rafael Here is an extract from

[PATCH drivers/net/skfp/h/fplustm.h] parentheses around RX_FIFO_SPACE definition

2007-12-17 Thread Roel Kluin
drivers/net/skfp/h/fplustm.h:129: #define RX_FIFO_SPACE 0x4000 - RX_FIFO_OFF drivers/net/skfp/fplustm.c:1404: smc-hw.fp.fifo.rx1_fifo_size = RX_FIFO_SPACE * SMT_R1_RXD_COUNT/(SMT_R1_RXD_COUNT+SMT_R2_RXD_COUNT) ;

[PATCH] e1000: Dump the eeprom when a user encounters a bad checksum

2007-12-17 Thread Auke Kok
To help supporting users with a bad eeprom checksum, dump the eeprom info when such a situation is encountered by a user. Signed-off-by: Auke Kok [EMAIL PROTECTED] --- drivers/net/e1000/e1000_main.c | 85 +++- 1 files changed, 74 insertions(+), 11

Re: [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum

2007-12-17 Thread Joe Perches
On Mon, 2007-12-17 at 13:50 -0800, Auke Kok wrote: diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index efd8c2d..aac55be 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c @@ -979,23 +1036,29 @@ e1000_probe(struct pci_dev *pdev,

Re: [PATCH 2.6.25 0/9]: SCTP: Update ADD-IP implementation to conform to spec

2007-12-17 Thread David Miller
From: Vlad Yasevich [EMAIL PROTECTED] Date: Mon, 17 Dec 2007 16:32:40 -0500 The following is a set of patches that updates the SCTP ADD-IP implementation to conform to the recently published RFC. Patch 7 didn't seem to make it. If you CC: on submissions like this, in the worst case at least

Re: [PATCH net-2.6.25 1/8] Create ipv4_is_type(__be32 addr) functions

2007-12-17 Thread Jan Engelhardt
On Dec 13 2007 15:38, Joe Perches wrote: Change IPV4 specific macros LOOPBACK MULTICAST LOCAL_MCAST BADCLASS and ZERONET macros to inline functions ipv4_is_type(__be32 addr) Adds type safety and arguably some readability. Changes since last submission: Removed ipv4_addr_octets function Used

Re: [PATCH 2.6.25 0/9]: SCTP: Update ADD-IP implementation to conform to spec

2007-12-17 Thread Vlad Yasevich
David Miller wrote: From: Vlad Yasevich [EMAIL PROTECTED] Date: Mon, 17 Dec 2007 16:32:40 -0500 The following is a set of patches that updates the SCTP ADD-IP implementation to conform to the recently published RFC. Patch 7 didn't seem to make it. If you CC: on submissions like this,

Re: [PATCH net-2.6.25 1/8] Create ipv4_is_type(__be32 addr) functions

2007-12-17 Thread David Miller
From: Jan Engelhardt [EMAIL PROTECTED] Date: Mon, 17 Dec 2007 23:37:24 +0100 (CET) Can we use __constant_htonl()? That should only be used in initializers. -- To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to [EMAIL PROTECTED] More majordomo info at

Re: [PATCH net-2.6.25 1/8] Create ipv4_is_type(__be32 addr) functions

2007-12-17 Thread Joe Perches
On Mon, 2007-12-17 at 23:37 +0100, Jan Engelhardt wrote: +static inline bool ipv4_is_loopback(__be32 addr) +{ +return (addr htonl(0xff00)) == htonl(0x7f00); +} + Can we use __constant_htonl()? I believe the generated code is the same. +static inline bool

Re: [PATCH net-2.6.25 1/8] Create ipv4_is_type(__be32 addr) functions

2007-12-17 Thread David Miller
From: Jan Engelhardt [EMAIL PROTECTED] Date: Mon, 17 Dec 2007 23:37:24 +0100 (CET) On Dec 13 2007 15:38, Joe Perches wrote: +static inline bool ipv4_is_private_10(__be32 addr) +{ +return (addr htonl(0xff00)) == htonl(0x0a00); +} What are these functions needed for, even?

Re: [PATCH 2.6.25 0/9]: SCTP: Update ADD-IP implementation to conform to spec

2007-12-17 Thread David Miller
From: Vlad Yasevich [EMAIL PROTECTED] Date: Mon, 17 Dec 2007 17:40:25 -0500 David Miller wrote: From: Vlad Yasevich [EMAIL PROTECTED] Date: Mon, 17 Dec 2007 16:32:40 -0500 The following is a set of patches that updates the SCTP ADD-IP implementation to conform to the recently

[PATCH] sysctl: Fix ax25 checks

2007-12-17 Thread Eric W. Biederman
Bernard Pidoux [EMAIL PROTECTED] writes: With 2.6.24-rc5 there is no /proc/net/ax25 /proc/sys/net/ax25? Here is an extract from dmesg after boot : Groan. I thought I had found the last of the bugs with my sysctl sanity checks. I guess you actually have to use ax25 for this bug to show up.

Re: [PATCH net-2.6.25 1/8] Create ipv4_is_type(__be32 addr) functions

2007-12-17 Thread Jan Engelhardt
On Dec 17 2007 14:43, David Miller wrote: On Dec 13 2007 15:38, Joe Perches wrote: +static inline bool ipv4_is_private_10(__be32 addr) +{ + return (addr htonl(0xff00)) == htonl(0x0a00); +} What are these functions needed for, even? There does not seem to be any code (at least

Re: [PATCH] endianness annotations and fixes for olympic

2007-12-17 Thread Jeff Garzik
Al Viro wrote: * missing braces in !readl(...) ... * trivial endianness annotations * in olympic_arb_cmd() the loop collecting fragments of packet is b0rken on big-endian - we have (next_ptr (buf_ptr=olympic_priv-olympic_lap + ntohs(next_ptr))) as condition and

Re: [PATCH 0/4] Pull request for 'sis190' branch

2007-12-17 Thread Jeff Garzik
Francois Romieu wrote: Please pull from branch 'sis190' in repository git://git.kernel.org/pub/scm/linux/kernel/git/romieu/netdev-2.6.git sis190 to get the changes below. Distance from 'upstream-linus' (7962024e9d16e9349d76b553326f3fa7be64305e)

Re: Pull request for 'ipg' branch

2007-12-17 Thread Jeff Garzik
Francois Romieu wrote: Please pull from branch 'ipg' in repository git://git.kernel.org/pub/scm/linux/kernel/git/romieu/netdev-2.6.git ipg to get the changes below. Distance from 'upstream' (558f08ed31c6909d3c9ae5d6dbf81220ede4b54a)

Re: [PATCH][NETDEV]: remove netif_running() check from myri10ge_poll()

2007-12-17 Thread Jeff Garzik
Andrew Gallatin wrote: Remove the bogus netif_running() check from myri10ge_poll(). This eliminates any chance that myri10ge_poll() can trigger an oops by calling netif_rx_complete() and returning with work_done == budget. Signed-off-by: Andrew Gallatin [EMAIL PROTECTED] holding onto this

Re: [PATCH/RFC] [POWERPC] Add fixed-phy support for fs_enet

2007-12-17 Thread Jeff Garzik
Jochen Friedrich wrote: This patch adds support to use the fixed-link property of an ethernet node to fs_enet for the CONFIG_PPC_CPM_NEW_BINDING case. Signed-off-by: Jochen Friedrich [EMAIL PROTECTED] --- drivers/net/fs_enet/fs_enet-main.c |9 - 1 files changed, 8 insertions(+), 1

Re: Please pull 'upstream-jgarzik' branch of wireless-2.6

2007-12-17 Thread Jeff Garzik
Hum, this required merging also, and broke the build too :/ drivers/net/wireless/iwlwifi/iwl3945-base.c: In function ‘iwl3945_alive_start’: drivers/net/wireless/iwlwifi/iwl3945-base.c:6285: error: implicit declaration of function ‘iwl_rate_control_unregister’ make[4]: ***

Re: [PATCH 1/2] add driver for enc28j60 ethernet chip

2007-12-17 Thread Jeff Garzik
Claudio Lanconelli wrote: These patches add support for Microchip enc28j60 ethernet chip controlled via SPI. I tested it on my custom board (S162) with ARM9 s3c2442 SoC. Any comments are welcome. Signed-off-by: Claudio Lanconelli [EMAIL PROTECTED] comments: * overall: a clean driver that

Re: [PATCH 1/2] add driver for enc28j60 ethernet chip

2007-12-17 Thread Jeff Garzik
oh yeah: make sure your Kconfig/Makefile stuff is in the _same_ patch as your driver. -- 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

  1   2   >