[patch] genirq: fix simple and fasteoi irq handlers

2007-08-02 Thread Jarek Poplawski
On Thu, Aug 02, 2007 at 10:11:26PM +0200, Ingo Molnar wrote: > > * Gabriel C <[EMAIL PROTECTED]> wrote: > > > I get a warning on each boot now with this patch .. > > > > [ 63.686613] WARNING: at kernel/irq/resend.c:70 check_irq_resend() ... > we are still trying to figure out what happens with

Re: Distributed storage.

2007-08-02 Thread Manu Abraham
On 7/31/07, Evgeniy Polyakov <[EMAIL PROTECTED]> wrote: > TODO list currently includes following main items: > * redundancy algorithm (drop me a request of your own, but it is highly > unlikley that Reed-Solomon based will ever be used - it is too slow > for distributed RAID, I

Re: Distributed storage.

2007-08-02 Thread Mike Snitzer
On 7/31/07, Evgeniy Polyakov <[EMAIL PROTECTED]> wrote: > Hi. > > I'm pleased to announce first release of the distributed storage > subsystem, which allows to form a storage on top of remote and local > nodes, which in turn can be exported to another storage as a node to > form tree-like storages.

Re: [PATCH 1/2] [TCP]: Also handle snd_una changes in tcp_cwnd_down

2007-08-02 Thread David Miller
From: "Ilpo_Järvinen" <[EMAIL PROTECTED]> Date: Thu, 2 Aug 2007 14:18:59 +0300 (EEST) > Dave, please put these two patches to net-2.6 to complete bidir fix > series. ...And please push to stable as well, take just the minimized > "fix" portion of this "[TCP]: Also handle snd_una changes in > tc

Re: [GIT PULL] sctp updates

2007-08-02 Thread David Miller
From: Vlad Yasevich <[EMAIL PROTECTED]> Date: Thu, 02 Aug 2007 13:55:33 -0400 > Hi David > > Please pull the following changes since commit > fc34f6c617bf2a845d793af12b96bcc0afd472c4: > Andrew Morton (1): >Fix up "remove the arm26 port" > > which are found in branch 'master' of the git

Re: [PATCH] TIPC: fix two minor sparse warnings

2007-08-02 Thread David Miller
From: Florian Westphal <[EMAIL PROTECTED]> Date: Fri, 3 Aug 2007 00:57:56 +0200 > fix two warnings generated by sparse: > > link.c:2386 symbol 'msgcount' shadows an earlier one > node.c:244 symbol 'addr_string' shadows an earlier one > > Signed-off-by: Florian Westphal <[EMAIL PROTECTED]> Looks

Re: [PATCH] TIPC: make function tipc_nameseq_subscribe static

2007-08-02 Thread David Miller
From: Florian Westphal <[EMAIL PROTECTED]> Date: Fri, 3 Aug 2007 00:56:38 +0200 > make needlessly global function tipc_nameseq_subscribe static. > > Signed-off-by: Florian Westphal <[EMAIL PROTECTED]> Patch applied, thanks Florian. - To unsubscribe from this list: send the line "unsubscribe netd

Re: strange tcp behavior

2007-08-02 Thread David Miller
From: Evgeniy Polyakov <[EMAIL PROTECTED]> Date: Thu, 2 Aug 2007 22:48:42 +0400 > On Thu, Aug 02, 2007 at 10:08:42PM +0400, Evgeniy Polyakov ([EMAIL > PROTECTED]) wrote: > > So, following patch fixes problem for me. > > Or this one. Essentially the same though. > > Signed-off-by: Evgeniy Polyak

Re: [PATCH] ethtool: Add support for setting multiple rx/tx queues

2007-08-02 Thread Kok, Auke
Auke Kok wrote: Signed-off-by: Auke Kok <[EMAIL PROTECTED]> --- @@ -496,6 +516,14 @@ static void parse_cmdline(int argc, char **argp) i = argc; break; } + if (mode == MODE_SQUEUE) { +

Re: TCP SACK issue, hung connection, tcpdump included

2007-08-02 Thread Ilpo Järvinen
...I dropped lkml, it's useless to bother them with this network related stuff... On Thu, 2 Aug 2007, Darryl Miles wrote: > Ilpo Järvinen wrote: > > On Tue, 31 Jul 2007, Darryl L. Miles wrote: [...RFC bashing, snip...] > * The older linux kernel for not being 100% SACK RFC compliant in its >

[PATCH] TIPC: fix two minor sparse warnings

2007-08-02 Thread Florian Westphal
fix two warnings generated by sparse: link.c:2386 symbol 'msgcount' shadows an earlier one node.c:244 symbol 'addr_string' shadows an earlier one Signed-off-by: Florian Westphal <[EMAIL PROTECTED]> --- net/tipc/link.c |2 +- net/tipc/node.c |2 -- 2 files changed, 1 insertions(+), 3 dele

[PATCH] TIPC: make function tipc_nameseq_subscribe static

2007-08-02 Thread Florian Westphal
make needlessly global function tipc_nameseq_subscribe static. Signed-off-by: Florian Westphal <[EMAIL PROTECTED]> --- diff --git a/net/tipc/name_table.c b/net/tipc/name_table.c index d8473ee..ac7dfdd 100644 --- a/net/tipc/name_table.c +++ b/net/tipc/name_table.c @@ -501,7 +501,7 @@ end_node: *

[patch 5/5][RFC] Update e1000 driver to use devres.

2007-08-02 Thread Brandon Philips
Conversion of e1000 probe() and remove() to devres. Signed-off-by: Brandon Philips <[EMAIL PROTECTED]> --- drivers/net/e1000/e1000.h |1 drivers/net/e1000/e1000_main.c | 79 - 2 files changed, 26 insertions(+), 54 deletions(-) Index: linux-2.6/

[patch 4/5][RFC] Implement devm_kcalloc

2007-08-02 Thread Brandon Philips
devm_kcalloc is a simple wrapper around devm_kzalloc for arrays. This is needed because kcalloc is often used in network devices. Signed-off-by: Brandon Philips <[EMAIL PROTECTED]> --- drivers/base/devres.c | 16 include/linux/device.h |1 + 2 files changed, 17 insertio

[patch 2/5][RFC] Update net core to use devres.

2007-08-02 Thread Brandon Philips
* netdev_pci_remove_one() can replace simple pci device remove functions * devm_alloc_netdev() is like alloc_netdev but allocates memory using devres. Signed-off-by: Brandon Philips <[EMAIL PROTECTED]> --- include/linux/etherdevice.h |5 ++ include/linux/netdevice.h |7 ++ net/core/

[patch 3/5][RFC] Update e100 driver to use devres.

2007-08-02 Thread Brandon Philips
devres manages device resources and is currently used by all libata low level drivers. It can greatly reduce the complexity of the error handling on probe and the device removal functions. For example the e100_free() function and all of the gotos in e100_probe have been removed. Also, e100_remo

[patch 1/5][RFC] NET: Change pci_enable_device to pci_reenable_device to keep device enable balance

2007-08-02 Thread Brandon Philips
On a slot_reset event pci_disable_device() is never called so calling pci_enable_device() will unbalance the enable count. Signed-off-by: Brandon Philips <[EMAIL PROTECTED]> --- drivers/net/e100.c |2 +- drivers/net/e1000/e1000_main.c |2 +- drivers/net/ixgb/ixgb_main.c |

Re: [REGRESSION] tg3 dead after s2ram

2007-08-02 Thread Michael Chan
On Thu, 2007-08-02 at 15:06 -0700, David Miller wrote: > From: "Michael Chan" <[EMAIL PROTECTED]> > Date: Thu, 02 Aug 2007 12:10:29 -0700 > > > Alternatively, we can also fix it by calling pci_enable_device() again > > in tg3_open(). But I think it is better to just always save and restore > > in

[patch 0/5][RFC] Update network drivers to use devres

2007-08-02 Thread Brandon Philips
This patch set adds support for devres in the net core and converts the e100 and e1000 drivers to devres. Devres is a simple resource manager for device drivers, see Documentation/driver-model/devres.txt for more information. The use of devres will remain optional for drivers with this patch set.

Re: [REGRESSION] tg3 dead after s2ram

2007-08-02 Thread David Miller
From: "Michael Chan" <[EMAIL PROTECTED]> Date: Thu, 02 Aug 2007 12:10:29 -0700 > On Thu, 2007-08-02 at 02:23 -0700, David Miller wrote: > > From: "Joachim Deguara" <[EMAIL PROTECTED]> > > Date: Thu, 2 Aug 2007 11:15:05 +0200 > > > > > Seams like even if powersave shuts down the network that the d

Re: strange tcp behavior

2007-08-02 Thread David Miller
From: Evgeniy Polyakov <[EMAIL PROTECTED]> Date: Thu, 2 Aug 2007 22:48:42 +0400 > On Thu, Aug 02, 2007 at 10:08:42PM +0400, Evgeniy Polyakov ([EMAIL > PROTECTED]) wrote: > > So, following patch fixes problem for me. > > Or this one. Essentially the same though. Thanks a lot for figuring out thi

Re: ipsec not working in 2.6.23-rc1-git10 when using pfkey

2007-08-02 Thread David Miller
From: Joy Latten <[EMAIL PROTECTED]> Date: Thu, 2 Aug 2007 13:58:38 -0500 > Although an ipsec SA was established, kernel couldn't seem to find it. > > I think since we are now using "x->sel.family" instead of "family" > in the xfrm_selector_match() called in xfrm_state_find(), af_key > needs t

Re: Distributed storage.

2007-08-02 Thread Daniel Phillips
On Tuesday 31 July 2007 10:13, Evgeniy Polyakov wrote: > Hi. > > I'm pleased to announce first release of the distributed storage > subsystem, which allows to form a storage on top of remote and local > nodes, which in turn can be exported to another storage as a node to > form tree-like storages.

include/linux/netfilter/xt_statistic.h isn't installed?

2007-08-02 Thread Chuck Ebbert
Apparently xt_statistic.h needs to be added to include/linux/netfilter/Kbuild for iptables 1.3.6 to build. - 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: [PATCH 2.6.23 1/2] Make the iw_cxgb3 module parameters writable.

2007-08-02 Thread Roland Dreier
thanks... I actually applied this for 2.6.24, since it's not really a fix for anything, and the 2.6.23 window is closed. - 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.ht

Re: [PATCH 2.6.23 2/2] iw_cxgb3: Always call low level send function via cxgb3_ofld_send().

2007-08-02 Thread Roland Dreier
thanks, applied. - 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] improved xfrm_audit_log() patch

2007-08-02 Thread Joy Latten
Sorry for delay, here is xfrm_audit_log() modification with recommended changes. Let me know if this looks better. Regards, Joy Signed-off-by: Joy Latten <[EMAIL PROTECTED]> diff -urpN linux-2.6.22/include/linux/audit.h linux-2.6.22.patch10/include/linux/audit.h --- linux-2.6.22/include/linu

Re: [RFC][BNX2X]: New driver for Broadcom 10Gb Ethernet.

2007-08-02 Thread Michael Chan
On Thu, 2007-08-02 at 00:06 +0200, Michael Buesch wrote: > +static inline u32 bnx2x_tx_avail(struct bnx2x_fastpath *fp) > > Too big for inlining. > > > +{ > > + u16 used; > > + u32 prod = fp->tx_bd_prod; > > + u32 cons = fp->tx_bd_cons; > > + > > + smp_mb(); > > This barrier need

Re: net driver error accounting

2007-08-02 Thread Andrew Morton
On Thu, 02 Aug 2007 16:38:09 -0400 Jeff Garzik <[EMAIL PROTECTED]> wrote: > Andrew Morton wrote: > > Looking at http://bugzilla.kernel.org/show_bug.cgi?id=8106 > > > > Guys, could we please have a ruling here? > > > > When a net driver encounters a tx_fifo_error, should this also contribute > >

Re: net driver error accounting

2007-08-02 Thread Jeff Garzik
Andrew Morton wrote: Looking at http://bugzilla.kernel.org/show_bug.cgi?id=8106 Guys, could we please have a ruling here? When a net driver encounters a tx_fifo_error, should this also contribute to the tx_error count, or should it not? For each TX error, (a) tx_error is incremented and (b) a

Re: [TULIP] Need new maintainer

2007-08-02 Thread Jeff Garzik
Valerie Henson wrote: On Mon, Jul 30, 2007 at 03:31:58PM -0400, Kyle McMartin wrote: On Mon, Jul 30, 2007 at 01:04:13PM -0600, Valerie Henson wrote: The Tulip network driver needs a new maintainer! I no longer have time to maintain the Tulip network driver and I'm stepping down. Jeff Garzik w

net driver error accounting

2007-08-02 Thread Andrew Morton
Looking at http://bugzilla.kernel.org/show_bug.cgi?id=8106 Guys, could we please have a ruling here? When a net driver encounters a tx_fifo_error, should this also contribute to the tx_error count, or should it not? More generally, should netdev drivers accumulate all the detailed rx_errors int

Re: [patch] genirq: temporary fix for level-triggered IRQ resend

2007-08-02 Thread Ingo Molnar
* Gabriel C <[EMAIL PROTECTED]> wrote: > I get a warning on each boot now with this patch .. > > [ 63.686613] WARNING: at kernel/irq/resend.c:70 check_irq_resend() > [ 63.686636] [] check_irq_resend+0x8c/0xa0 > [ 63.686653] [] enable_irq+0xad/0xb3 > [ 63.686662] [] vortex_timer+0x20c/

Fwd: source interface ping bug ?

2007-08-02 Thread nano bug
-- Forwarded message -- From: nano bug <[EMAIL PROTECTED]> Date: Aug 2, 2007 10:58 PM Subject: Re: source interface ping bug ? To: Patrick McHardy <[EMAIL PROTECTED]> Hello, Yes I'm running NAT, I have atached the output of the iptables -t nat -vxnL command and the routing tables

ipsec not working in 2.6.23-rc1-git10 when using pfkey

2007-08-02 Thread Joy Latten
Although an ipsec SA was established, kernel couldn't seem to find it. I think since we are now using "x->sel.family" instead of "family" in the xfrm_selector_match() called in xfrm_state_find(), af_key needs to set this field too, just as xfrm_user. In af_key.c, x->sel.family only gets set

Re: strange tcp behavior

2007-08-02 Thread Simon Arlott
On 02/08/07 19:08, Evgeniy Polyakov wrote: > On Thu, Aug 02, 2007 at 06:15:52PM +0100, Simon Arlott ([EMAIL PROTECTED]) > wrote: >> 17:33:45.351273 IP 192.168.7.4.5 > 192.168.7.8.2500: R >> 1385353596:1385353596(0) win 1500 >> 17:33:45.360878 IP 192.168.7.8.48186 > 192.168.7.4.5: R >> 13

Re: strange tcp behavior

2007-08-02 Thread Evgeniy Polyakov
On Thu, Aug 02, 2007 at 10:08:42PM +0400, Evgeniy Polyakov ([EMAIL PROTECTED]) wrote: > So, following patch fixes problem for me. Or this one. Essentially the same though. Signed-off-by: Evgeniy Polyakov <[EMAIL PROTECTED]> diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c index 06c08e5..7c4

Re: [REGRESSION] tg3 dead after s2ram

2007-08-02 Thread Michael Chan
On Thu, 2007-08-02 at 02:23 -0700, David Miller wrote: > From: "Joachim Deguara" <[EMAIL PROTECTED]> > Date: Thu, 2 Aug 2007 11:15:05 +0200 > > > Seams like even if powersave shuts down the network that the device should > > still work after a suspend to ram, so who is at fault here? > > It's a

Re: [RFC][BNX2X]: New driver for Broadcom 10Gb Ethernet.

2007-08-02 Thread Eliezer Tamir
Jeff, Roland, Thanks for taking a look. Jeff Garzik wrote: Roland Dreier wrote: > > +{ PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_NX2_5710, > > +PCI_ANY_ID, PCI_ANY_ID, 0, 0, BCM5710 }, FWIW, this could be neater as { PCI_VDEVICE(BROADCOM, PCI_DEVICE_ID_NX2_5710), BCM5710 } OK

Re: strange tcp behavior

2007-08-02 Thread Evgeniy Polyakov
On Thu, Aug 02, 2007 at 06:15:52PM +0100, Simon Arlott ([EMAIL PROTECTED]) wrote: > 17:33:45.351273 IP 192.168.7.4.5 > 192.168.7.8.2500: R > 1385353596:1385353596(0) win 1500 > 17:33:45.360878 IP 192.168.7.8.48186 > 192.168.7.4.5: R > 1388203103:1388203103(0) ack 1385353596 win 14360 >

Re: [RFC][BNX2X]: New driver for Broadcom 10Gb Ethernet.

2007-08-02 Thread Eliezer Tamir
Michal, Thanks for going over the code. My responses are inline. Eliezer Michael Buesch wrote: On Wednesday 01 August 2007 10:31:17 Michael Chan wrote: +typedef struct { + u8 reserved[64]; +} license_key_t; No typedef. What is a "license key" used for, anyway? This will be removed.

[GIT PULL] sctp updates

2007-08-02 Thread Vlad Yasevich
Hi David Please pull the following changes since commit fc34f6c617bf2a845d793af12b96bcc0afd472c4: Andrew Morton (1): Fix up "remove the arm26 port" which are found in branch 'master' of the git repository at: master.kernel.org:/pub/scm/linux/kernel/git/vxy/lksctp-dev.git Dave Johnson

Re: b44 compile error on !PCI

2007-08-02 Thread Michael Buesch
On Thursday 02 August 2007, Meelis Roos wrote: > Tryng to compile todays git on SBus-only Sparc64 (Ultra 1), no PCI. b44 > is selectable but fails to compile: > > CC [M] drivers/net/b44.o > drivers/net/b44.c: In function 'b44_sync_dma_desc_for_device': > drivers/net/b44.c:134: error: implicit

Re: strange tcp behavior

2007-08-02 Thread Simon Arlott
On 02/08/07 13:15, Simon Arlott wrote: > (Don't remove CC:s, don't top post) >>> On Thu, August 2, 2007 11:16, Evgeniy Polyakov wrote: On Thu, Aug 02, 2007 at 01:55:50PM +0400, Evgeniy Polyakov ([EMAIL PROTECTED]) wrote: > On Thu, Aug 02, 2007 at 09:19:06AM +0300, [EMAIL PROTECTED] >>

Re: [patch] genirq: temporary fix for level-triggered IRQ resend

2007-08-02 Thread Gabriel C
Ingo Molnar wrote: > Linus, > > with -rc2 approaching i think we should apply the minimal fix below to > get Marcin's ne2k-pci networking back in working order. The > WARN_ON_ONCE() will not prevent the system from working and it will be a > reminder. > > a better workaround would be to inhibi

Re: TCP SACK issue, hung connection, tcpdump included

2007-08-02 Thread Darryl Miles
Ilpo Järvinen wrote: On Tue, 31 Jul 2007, Darryl L. Miles wrote: I've been able to capture a tcpdump from both ends during the problem and its my belief there is a bug in 2.6.20.1 (at the client side) in that it issues a SACK option for an old sequence which the current window being advertised

b44 compile error on !PCI

2007-08-02 Thread Meelis Roos
Tryng to compile todays git on SBus-only Sparc64 (Ultra 1), no PCI. b44 is selectable but fails to compile: CC [M] drivers/net/b44.o drivers/net/b44.c: In function 'b44_sync_dma_desc_for_device': drivers/net/b44.c:134: error: implicit declaration of function 'dma_sync_single_range_for_device'

Re: [PATCH] Merge the Sonics Silicon Backplane subsystem

2007-08-02 Thread Michael Buesch
On Thursday 02 August 2007, Geert Uytterhoeven wrote: > On Thu, 2 Aug 2007, Michael Buesch wrote: > > On Thursday 02 August 2007, Geert Uytterhoeven wrote: > > > On Fri, 27 Jul 2007, Michael Buesch wrote: > > > > The Sonics Silicon Backplane is a mini-bus used on > > > > various Broadcom chips and

Re: [PATCH] Merge the Sonics Silicon Backplane subsystem

2007-08-02 Thread Geert Uytterhoeven
On Thu, 2 Aug 2007, Michael Buesch wrote: > On Thursday 02 August 2007, Geert Uytterhoeven wrote: > > On Fri, 27 Jul 2007, Michael Buesch wrote: > > > The Sonics Silicon Backplane is a mini-bus used on > > > various Broadcom chips and embedded devices. > > > Devices using the SSB include b44, bcm43

Re: NETPOLL=y , NETDEVICES=n compile error ( Re: 2.6.23-rc1-mm1 )

2007-08-02 Thread Matt Mackall
On Thu, Aug 02, 2007 at 11:00:08AM +0200, Jarek Poplawski wrote: > On Wed, Aug 01, 2007 at 09:02:19PM -0500, Matt Mackall wrote: > > On Wed, Aug 01, 2007 at 11:59:21AM +0200, Jarek Poplawski wrote: > > > On Tue, Jul 31, 2007 at 05:05:00PM +0200, Gabriel C wrote: > > > > Jarek Poplawski wrote: > > >

Re: [PATCH] SCTP: drop SACK if ctsn is not less than the next tsn of assoc

2007-08-02 Thread Vlad Yasevich
Wei Yongjun wrote: > Patch has been modified base on comment. > Thanks. > > Signed-off-by: Wei Yongjun <[EMAIL PROTECTED]> > Ok, I've applied this patch, but in the future, please generate patches so that they can be applied with a -p1 flag. Please see Documentation/SubmittingPatches for proper

Re: [PATCH] Merge the Sonics Silicon Backplane subsystem

2007-08-02 Thread Michael Buesch
On Thursday 02 August 2007, Geert Uytterhoeven wrote: > On Fri, 27 Jul 2007, Michael Buesch wrote: > > The Sonics Silicon Backplane is a mini-bus used on > > various Broadcom chips and embedded devices. > > Devices using the SSB include b44, bcm43xx and various > > Broadcom based wireless routers.

Re: [PATCH] Merge the Sonics Silicon Backplane subsystem

2007-08-02 Thread Geert Uytterhoeven
On Fri, 27 Jul 2007, Michael Buesch wrote: > The Sonics Silicon Backplane is a mini-bus used on > various Broadcom chips and embedded devices. > Devices using the SSB include b44, bcm43xx and various > Broadcom based wireless routers. > A b44 and bcm43xx port and a SSB based OHCI driver is availabl

Re: NETPOLL=y , NETDEVICES=n compile error ( Re: 2.6.23-rc1-mm1 )

2007-08-02 Thread Jarek Poplawski
On Thu, Aug 02, 2007 at 05:26:12PM +0530, Satyam Sharma wrote: ... > Whoops, I only said that in humour, probably should've snuck in a > smiley or two. Definitely not blaming anybody. Apologies to anyone > who felt offended, sorry, nothing such was intended, I assure. I see you probably didn't not

Re: strange tcp behavior

2007-08-02 Thread Evgeniy Polyakov
On Thu, Aug 02, 2007 at 04:04:53PM +0400, Evgeniy Polyakov ([EMAIL PROTECTED]) wrote: > On Thu, Aug 02, 2007 at 12:38:59PM +0100, Simon Arlott ([EMAIL PROTECTED]) > wrote: > > I just got multiple RSTs instead of a connection too. The second RST looks > > like it's from another connection - and a

Re: strange tcp behavior

2007-08-02 Thread Simon Arlott
(Don't remove CC:s, don't top post) >> On Thu, August 2, 2007 11:16, Evgeniy Polyakov wrote: >>> On Thu, Aug 02, 2007 at 01:55:50PM +0400, Evgeniy Polyakov >>> ([EMAIL PROTECTED]) wrote: On Thu, Aug 02, 2007 at 09:19:06AM +0300, [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: > 11860350

Re: strange tcp behavior

2007-08-02 Thread Evgeniy Polyakov
On Thu, Aug 02, 2007 at 12:38:59PM +0100, Simon Arlott ([EMAIL PROTECTED]) wrote: > I just got multiple RSTs instead of a connection too. The second RST looks > like it's from another connection - and a RST for a RST is wrong... You should use iptables rule to block non-raw access: iptables -I IN

Re: NETPOLL=y , NETDEVICES=n compile error ( Re: 2.6.23-rc1-mm1 )

2007-08-02 Thread Satyam Sharma
On Thu, 2 Aug 2007, Jarek Poplawski wrote: > On Thu, Aug 02, 2007 at 04:02:21PM +0530, Satyam Sharma wrote: > [...] > How often "common" developer has to make such decisions in Kconfig? > Probably no more than once per year. So, it's fair to blame anybody > for not reading lkml to find if there

Re: strange tcp behavior

2007-08-02 Thread Simon Arlott
On Thu, August 2, 2007 11:16, Evgeniy Polyakov wrote: > On Thu, Aug 02, 2007 at 01:55:50PM +0400, Evgeniy Polyakov ([EMAIL > PROTECTED]) wrote: >> On Thu, Aug 02, 2007 at 09:19:06AM +0300, [EMAIL PROTECTED] ([EMAIL >> PROTECTED]) wrote: >> > 1186035057.207629127.0.0.1 -> 127.0.0.1TCP 500

Re: NETPOLL=y , NETDEVICES=n compile error ( Re: 2.6.23-rc1-mm1 )

2007-08-02 Thread Jarek Poplawski
On Thu, Aug 02, 2007 at 04:02:21PM +0530, Satyam Sharma wrote: > Hi, > > > On Thu, 2 Aug 2007, Sam Ravnborg wrote: > > > > > > > > > ... > > > > endif # NETDEVICES > > > > > > > > config NETPOLL > > > > depends on NETDEVICES > > > > def_bool NETCONSOLE > > > > > > > > config N

Re: NETPOLL=y , NETDEVICES=n compile error ( Re: 2.6.23-rc1-mm1 )

2007-08-02 Thread Satyam Sharma
[ Read through the thread, looked at Kconfig files, did some tests. Adding Kconfig experts to Cc: list. ] > On Thu, 2 Aug 2007, Sam Ravnborg wrote: > > > > > > > > > ... > > > > endif # NETDEVICES > > > > > > > > config NETPOLL > > > > depends on NETDEVICES > > > > def_bool N

Re: [PATCH 1/2] [TCP]: Also handle snd_una changes in tcp_cwnd_down

2007-08-02 Thread Ilpo Järvinen
On Wed, 1 Aug 2007, Ilpo Järvinen wrote: > > tcp_cwnd_down must check for it too as it should be conservative > in case of collapse stuff and also when receiver is trying to > lie (though that wouldn't be very successful/useful anyway). > > Note: > - Separated also is_dupack and do_lost in fast_

Re: NETPOLL=y , NETDEVICES=n compile error ( Re: 2.6.23-rc1-mm1 )

2007-08-02 Thread Satyam Sharma
Hi, On Thu, 2 Aug 2007, Sam Ravnborg wrote: > > > > > > ... > > > endif # NETDEVICES > > > > > > config NETPOLL > > > depends on NETDEVICES > > > def_bool NETCONSOLE > > > > > > config NETPOLL_TRAP > > > bool "Netpoll traffic trapping" > > > default n > > >

Re: strange tcp behavior

2007-08-02 Thread Evgeniy Polyakov
On Thu, Aug 02, 2007 at 01:55:50PM +0400, Evgeniy Polyakov ([EMAIL PROTECTED]) wrote: > On Thu, Aug 02, 2007 at 09:19:06AM +0300, [EMAIL PROTECTED] ([EMAIL > PROTECTED]) wrote: > > 1186035057.207629127.0.0.1 -> 127.0.0.1TCP 5 > smtp [SYN] > > Seq=0 Len=0 > > 1186035057.207632127.0

Re: strange tcp behavior

2007-08-02 Thread Evgeniy Polyakov
On Thu, Aug 02, 2007 at 09:19:06AM +0300, [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: > 1186035057.207629127.0.0.1 -> 127.0.0.1TCP 5 > smtp [SYN] > Seq=0 Len=0 > 1186035057.207632127.0.0.1 -> 127.0.0.1TCP smtp > 5 [SYN, ACK] > Seq=0 Ack=1 Win=32792 Len=0 MSS=16396 > 118603

Re: NETPOLL=y , NETDEVICES=n compile error ( Re: 2.6.23-rc1-mm1 )

2007-08-02 Thread Sam Ravnborg
> > > > ... > > endif # NETDEVICES > > > > config NETPOLL > > depends on NETDEVICES > > def_bool NETCONSOLE > > > > config NETPOLL_TRAP > > bool "Netpoll traffic trapping" > > default n > > depends on NETPOLL > > > > config NET_POLL_CONTROLLER > >

Re: [RFC][PATCH] Removal of FASTROUTE definition include/linux/if_packet.h

2007-08-02 Thread David Miller
From: "Rami Rosen" <[EMAIL PROTECTED]> Date: Thu, 2 Aug 2007 12:23:41 +0300 > Hi, > It seems that PACKET_FASTROUTE definition should be removed due to that > fastroute is no longer supported. It's a value exported to userland, so removing it could break application compilation, so we can'

Re: TCP SACK issue, hung connection, tcpdump included

2007-08-02 Thread David Miller
From: "Ilpo_Järvinen" <[EMAIL PROTECTED]> Date: Thu, 2 Aug 2007 12:23:23 +0300 (EEST) > ...Seriously, somebody else than me is probably better in suggesting what > could cause the discarding at the SERVER in this case. SNMP stuff Dave was > asking could help, you can find them from /proc/net/{ne

[RFC][PATCH] Removal of FASTROUTE definition include/linux/if_packet.h

2007-08-02 Thread Rami Rosen
Hi, It seems that PACKET_FASTROUTE definition should be removed due to that fastroute is no longer supported. Regards, Rami Rosen -- Signed-off-by: Rami Rosen <[EMAIL PROTECTED]> --- linux-2.6.23-rc1-clean/include/linux/if_packet.h2007-05-03 12:07:59.0 +03

Re: TCP SACK issue, hung connection, tcpdump included

2007-08-02 Thread Ilpo Järvinen
On Tue, 31 Jul 2007, Darryl L. Miles wrote: > I've been able to capture a tcpdump from both ends during the problem and its > my belief there is a bug in 2.6.20.1 (at the client side) in that it issues a > SACK option for an old sequence which the current window being advertised is > beyond it. T

Re: [REGRESSION] tg3 dead after s2ram

2007-08-02 Thread David Miller
From: "Joachim Deguara" <[EMAIL PROTECTED]> Date: Thu, 2 Aug 2007 11:15:05 +0200 > Seams like even if powersave shuts down the network that the device should > still work after a suspend to ram, so who is at fault here? It's a good question. The pci_enable() is done on the PCI device at probe t

Re: [REGRESSION] tg3 dead after s2ram

2007-08-02 Thread Joachim Deguara
On Thursday 02 August 2007 10:05:44 Joachim Deguara wrote: > On Wednesday 01 August 2007 23:00:23 Michael Chan wrote: > > On Wed, 2007-08-01 at 10:47 -0700, Michael Chan wrote: > > The problem is that memory enable and bus master were not set in PCI > > register 4 after resume. This also explains

Re: [PATCH] SCTP: drop SACK if ctsn is not less than the next tsn of assoc

2007-08-02 Thread Wei Yongjun
Vlad Yasevich wrote: This is a little better. One suggestion. The new function you create is almost exactly like sctp_sf_violation_chunklen() with the exception of the error string. Can you extract the common parts into a single function so that we don't have duplication of code. Thanks -vlad

Re: NETPOLL=y , NETDEVICES=n compile error ( Re: 2.6.23-rc1-mm1 )

2007-08-02 Thread Jarek Poplawski
On Wed, Aug 01, 2007 at 09:02:19PM -0500, Matt Mackall wrote: > On Wed, Aug 01, 2007 at 11:59:21AM +0200, Jarek Poplawski wrote: > > On Tue, Jul 31, 2007 at 05:05:00PM +0200, Gabriel C wrote: > > > Jarek Poplawski wrote: > > > > On Tue, Jul 31, 2007 at 12:14:36PM +0200, Gabriel C wrote: > > > >> Ja

Re: [REGRESSION] tg3 dead after s2ram

2007-08-02 Thread Joachim Deguara
On Wednesday 01 August 2007 23:00:23 Michael Chan wrote: > On Wed, 2007-08-01 at 10:47 -0700, Michael Chan wrote: > > You have 2 Broadcom devices in your system. 07:00.0 is a wireless > > device, I think. 8:4.0 is the tg3 device. > > > > It's clear that the tg3 device is still in D3 state after r