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
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
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.
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
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
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
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
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
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) {
+
...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
>
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
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:
*
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/
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
* 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/
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
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 |
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
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.
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
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
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
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.
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
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
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
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
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
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
> >
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
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
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
* 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/
-- 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
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
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
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
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
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
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
>
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.
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
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
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]
>>
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
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
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'
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
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
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:
> > >
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
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.
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
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
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
(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
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
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
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
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
[ 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
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_
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
> > >
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
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
> >
> > ...
> > 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
> >
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'
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
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
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
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
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
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
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
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
75 matches
Mail list logo