zd1211rw and mac80211: multicast/v6 doesn't work in 2.6.21.5

2007-06-28 Thread Pekka Savola
Hi, On Fedora 7 (kernel 2.6.21-1.3228.fc7, based on 2.6.21.5), my zd1211rw_mac80211 WLAN USB stick and multicast/v6 no longer works. On Fedora 6 (kernel 2.6.20, no mac80211) it was OK. I get wlan0: duplicate address detected! on dmesg when the kernel is trying to autoconfigure a global

Re: [NET]: gen_estimator: fix locking and timer related bugs [Re: [Bugme-new] [Bug 8668] New: HTB Deadlock]

2007-06-28 Thread Jarek Poplawski
On Wed, Jun 27, 2007 at 05:25:45PM +0200, Patrick McHardy wrote: Patrick McHardy wrote: [NET]: gen_estimator: fix locking and timer related bugs That one still left a race, we could be reinitalizing the timer while it is still running. This patch additionally makes sure each timer is

Re: [PATCH 1/5 2.6.22-rc6] UDP: Introduce UDP encapsulation type for L2TP

2007-06-28 Thread James Chapman
David Miller wrote: Patch applied, thanks. Note that we could use the callback pointer for the XFRM case too, and I kind of thought you would understand that logical progression and implement that too :-/ I spotted it but didn't want to risk an error that would lead to the patch being

Re: [PATCH 2/5 2.6.22-rc6] L2TP: Changes to existing ppp and socket kernel headers for L2TP

2007-06-28 Thread James Chapman
David Miller wrote: This is going to cause problems on compat platforms where __u64 is aligned on an 8-byte boundary on the 64-bit variant but it is not on the 32-bit cpu variant. A way to avoid this is to use the aligned_u64 type from linux/types.h which ensures 8-byte alignment on all

Re: [Bugme-new] [Bug 8668] New: HTB Deadlock

2007-06-28 Thread Jarek Poplawski
On Wed, Jun 27, 2007 at 04:53:48PM +0200, Patrick McHardy wrote: Jarek Poplawski wrote: On Wed, Jun 27, 2007 at 01:44:08PM +0200, Patrick McHardy wrote: BTW, maybe I look at this too short, but is this del_timer() in gen_kill_estimator() enough? I cannot see nothing against a timer just

Re: [NET]: gen_estimator: fix locking and timer related bugs [Re: [Bugme-new] [Bug 8668] New: HTB Deadlock]

2007-06-28 Thread Jarek Poplawski
On Wed, Jun 27, 2007 at 05:25:45PM +0200, Patrick McHardy wrote: ... Additionally there are a few more related problems that seem to be relicts from the timer when the estimator was qdisc specific and could rely on the rtnl or dev-qdisc_lock: - the check whether the list is empty and a timer

git-net, git-netdev-all and everything else on g5

2007-06-28 Thread Andrew Morton
With the full -mm lineup, my tg3-using powerpc g5 spits lots of these: windfarm: Drive bay control loop started. audit(1183017094.732:2): audit_pid=2117 old=0 by auid=4294967295 [ cut here ] Badness at net/core/dev.c:1303 Call Trace: [cb45ead0] [c00108c8]

Re: Fwd: [PATCH] [-mm] ACPI: export ACPI events via netlink

2007-06-28 Thread Johannes Berg
On Wed, 2007-06-27 at 19:24 -0400, jamal wrote: On Tue, 2007-26-06 at 00:40 +0200, Johannes Berg wrote: I wonder if we should hold off on this API until we've worked out the multicast issue. Even if the ACPI thing goes in first, you will have to change a few others that are existing

Re: [NET]: gen_estimator: fix locking and timer related bugs [Re: [Bugme-new] [Bug 8668] New: HTB Deadlock]

2007-06-28 Thread Jarek Poplawski
On Thu, Jun 28, 2007 at 08:54:48AM +0200, Jarek Poplawski wrote: ... @@ -215,10 +213,7 @@ void gen_kill_estimator(struct gnet_stats_basic *bstats, write_unlock_bh(est_lock); kfree(est); - killed++; } -

Re: [NET]: gen_estimator: fix locking and timer related bugs [Re: [Bugme-new] [Bug 8668] New: HTB Deadlock]

2007-06-28 Thread Patrick McHardy
Jarek Poplawski wrote: @@ -202,7 +201,6 @@ void gen_kill_estimator(struct gnet_stats_basic *bstats, struct gen_estimator *est, **pest; for (idx=0; idx = EST_MAX_INTERVAL; idx++) { - int killed = 0; pest = elist[idx].list; while

Re: [Bugme-new] [Bug 8668] New: HTB Deadlock

2007-06-28 Thread Patrick McHardy
Jarek Poplawski wrote: BTW #2, I hope it's about some new policy, but I cannot see any #ifdef CONFIG_NET_ESTIMATOR in this sch_htb patch. One of my previous patches for 2.6.23 killed that option, the code was always compiled in anyways. - To unsubscribe from this list: send the line

Re: a maze of twisty stats, most different

2007-06-28 Thread Chris Snook
Rick Jones wrote: It seems that every driver, when providing support for ethtool -S functionality, has considerable lattitude when it comes to the stats provided. Clearly this is very nice for the driver writer(s) as it allows them to provide whatever stats they feel are most natural for

Re: [NET]: gen_estimator: fix locking and timer related bugs [Re: [Bugme-new] [Bug 8668] New: HTB Deadlock]

2007-06-28 Thread Jarek Poplawski
On Thu, Jun 28, 2007 at 02:23:36PM +0200, Patrick McHardy wrote: Jarek Poplawski wrote: @@ -202,7 +201,6 @@ void gen_kill_estimator(struct gnet_stats_basic *bstats, struct gen_estimator *est, **pest; for (idx=0; idx = EST_MAX_INTERVAL; idx++) { - int killed = 0;

Re: [NET]: gen_estimator: fix locking and timer related bugs [Re: [Bugme-new] [Bug 8668] New: HTB Deadlock]

2007-06-28 Thread Patrick McHardy
Jarek Poplawski wrote: On Thu, Jun 28, 2007 at 02:23:36PM +0200, Patrick McHardy wrote: Jarek Poplawski wrote: @@ -202,7 +201,6 @@ void gen_kill_estimator(struct gnet_stats_basic *bstats, struct gen_estimator *est, **pest; for (idx=0; idx = EST_MAX_INTERVAL; idx++) { - int

Re: [Bugme-new] [Bug 8668] New: HTB Deadlock

2007-06-28 Thread Jarek Poplawski
On Thu, Jun 28, 2007 at 02:24:55PM +0200, Patrick McHardy wrote: Jarek Poplawski wrote: BTW #2, I hope it's about some new policy, but I cannot see any #ifdef CONFIG_NET_ESTIMATOR in this sch_htb patch. One of my previous patches for 2.6.23 killed that option, the code was always compiled

Re: [Devel] Re: [RFD] L2 Network namespace infrastructure

2007-06-28 Thread Kirill Korotaev
Ben Greear wrote: Kirill Korotaev wrote: Patrick McHardy wrote: I believe OpenVZ stores the current namespace somewhere global, which avoids passing the namespace around. Couldn't you do this as well? yes, we store a global namespace context on current (can be stored in per-cpu as

Re: [Bugme-new] [Bug 8668] New: HTB Deadlock

2007-06-28 Thread Patrick McHardy
Jarek Poplawski wrote: On Thu, Jun 28, 2007 at 02:24:55PM +0200, Patrick McHardy wrote: Jarek Poplawski wrote: BTW #2, I hope it's about some new policy, but I cannot see any #ifdef CONFIG_NET_ESTIMATOR in this sch_htb patch. One of my previous patches for 2.6.23 killed that option, the code

Re: [NET]: gen_estimator: fix locking and timer related bugs [Re: [Bugme-new] [Bug 8668] New: HTB Deadlock]

2007-06-28 Thread Jarek Poplawski
On Thu, Jun 28, 2007 at 02:55:51PM +0200, Patrick McHardy wrote: ... Its overkill in that case. The concurrent additions and removals can't happen. Then the changelog needs one more change. Plus, maybe - btw, 1 line about this at the beginning of the file? Jarek P. - To unsubscribe from this

[GIT PATCHES] SCTP fixes

2007-06-28 Thread Vlad Yasevich
Hi David Please pull the following changes: The following changes since commit 19e6454ca778e11e81497bd87c930dc0defd03d7: David Howells (1): [AF_RXRPC]: Return the number of bytes buffered in rxrpc_send_data() are found in the git repository at:

Re: [RFD] L2 Network namespace infrastructure

2007-06-28 Thread Kirill Korotaev
Eric W. Biederman wrote: Patrick McHardy [EMAIL PROTECTED] writes: Eric W. Biederman wrote: -- The basic design There will be a network namespace structure that holds the global variables for a network namespace, making those global variables per network namespace. One of those per network

[PATCH] myri10ge: SET_NETDEV_DEV()

2007-06-28 Thread Maik Hampel
SET_NETDEV_DEV() in myri10ge to create the /sys/class/net/if/device symlink. Signed-off-by: Maik Hampel [EMAIL PROTECTED] diff -Naur a/drivers/net/myri10ge/myri10ge.c b/drivers/net/myri10ge/myri10ge.c --- a/drivers/net/myri10ge/myri10ge.c 2007-06-28 16:04:41.0 +0200 +++

Re: quirk_e100_interrupt() called too early

2007-06-28 Thread Kok, Auke
Marian Balakowicz wrote: I am enabling and testing PCI on tqm5200 mpc5200 based board where I faced the following issue. I am using EEPRO100 PCI card for which there is specific quirk_e100_interrupt that tries to disable interrupts if they were left enabled by the firmware.

[PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread PJ Waskiewicz
Updated: Fixed allocation of subqueues in alloc_netdev_mq() to allocate all subqueues, not num - 1. Added checks for netif_subqueue_stopped() to netpoll, pktgen, and software device dev_queue_xmit(). This will ensure external events to these subsystems will be handled correctly if a subqueue is

[PATCH] iproute2: sch_rr support in tc

2007-06-28 Thread PJ Waskiewicz
This patch applies on top of Patrick McHardy's RTNETLINK patches to add nested compat attributes. This is needed to maintain ABI for sch_{rr|prio} in the kernel with respect to tc. A new option, namely multiqueue, was added to sch_prio and sch_rr. This will allow a user to turn multiqueue

Re: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread Patrick McHardy
PJ Waskiewicz wrote: Updated: Fixed allocation of subqueues in alloc_netdev_mq() to allocate all subqueues, not num - 1. Added checks for netif_subqueue_stopped() to netpoll, pktgen, and software device dev_queue_xmit(). This will ensure external events to these subsystems will be handled

Re: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Patrick McHardy
PJ Waskiewicz wrote: + static int __init prio_module_init(void) { - return register_qdisc(prio_qdisc_ops); + int err; + err = register_qdisc(prio_qdisc_ops); + if (!err) + err = register_qdisc(rr_qdisc_ops); + return err; } Thats still broken.

Re: [PATCH] iproute2: sch_rr support in tc

2007-06-28 Thread Patrick McHardy
PJ Waskiewicz wrote: This patch applies on top of Patrick McHardy's RTNETLINK patches to add nested compat attributes. This is needed to maintain ABI for sch_{rr|prio} in the kernel with respect to tc. A new option, namely multiqueue, was added to sch_prio and sch_rr. This will allow a

RE: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Waskiewicz Jr, Peter P
PJ Waskiewicz wrote: + static int __init prio_module_init(void) { - return register_qdisc(prio_qdisc_ops); + int err; + err = register_qdisc(prio_qdisc_ops); + if (!err) + err = register_qdisc(rr_qdisc_ops); + return err; } Thats still broken.

Re: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Patrick McHardy
Waskiewicz Jr, Peter P wrote: PJ Waskiewicz wrote: + static int __init prio_module_init(void) { -return register_qdisc(prio_qdisc_ops); +int err; +err = register_qdisc(prio_qdisc_ops); +if (!err) +err = register_qdisc(rr_qdisc_ops); +return err; } Thats

RE: [PATCH] iproute2: sch_rr support in tc

2007-06-28 Thread Waskiewicz Jr, Peter P
Since rr is not built as a module you could actually put everything in q_prio and share the code. But I don't really care :) I tried doing this, but I couldn't get things working quite right with selecting the correct module from sch_prio to sch_rr. So I just added the q_rr.c portion of tc,

RE: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Waskiewicz Jr, Peter P
Its not error handling. You do: err = register qdisc 1 if (err) return err; err = register qdisc 2 if (err) unregister qdisc 2 return err anyways, I already fixed that and cleaned up prio_classify the way I suggested. Will send shortly. Thanks for fixing; however, the

Re: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Patrick McHardy
Patrick McHardy wrote: PJ Waskiewicz wrote: + static int __init prio_module_init(void) { -return register_qdisc(prio_qdisc_ops); +int err; +err = register_qdisc(prio_qdisc_ops); +if (!err) +err = register_qdisc(rr_qdisc_ops); +return err; } Thats

Re: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Patrick McHardy
Waskiewicz Jr, Peter P wrote: Thanks for fixing; however, the current sch_prio doesn't unregister the qdisc if register_qdisc() on prio fails, or does that happen implicitly because the module will probably unload? It failed, there's nothing to unregister. But when you register two qdiscs and

Re: a maze of twisty stats, most different

2007-06-28 Thread Rick Jones
Chris Snook wrote: Rick Jones wrote: It seems that every driver, when providing support for ethtool -S functionality, has considerable lattitude when it comes to the stats provided. Clearly this is very nice for the driver writer(s) as it allows them to provide whatever stats they feel are

[SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Patrick McHardy
Updated version of Peter's patch, changes: - remove NET_SCH_MULTIQUEUE - remove all ifdefs, the price is 4-8 bytes additional memory usage per prio qdisc. - return -EOPNOTSUPP when multiqueue is requested but not supported on the device or not compiled in - clean up prio_classify, only a

r8169: 2.6.22rc6+patches works, but 2.6.21.5 and 2.6.22rc6 without patches-network transfer blocking

2007-06-28 Thread Jens Stroebel
Hello. The hardware involved: Motherboard: Asus P5B lspci: 02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 01) First the non-working scenario (2.6.21.5, 2.6.22rc6 unpatched): During the use of

Re: a maze of twisty stats, most different

2007-06-28 Thread David Stevens
I think there's a more general problem that's a huge hassle. There are lots of new SNMP MIB's, but no conventions (that I'm aware of, at least) to allow for changes to the /proc entries that get them to applications. For example, the route age data recently submitted. I agree that existing apps

Please pull from 'from_linus' branch

2007-06-28 Thread Kumar Gala
Please pull from 'for_linus' branch of master.kernel.org:/pub/scm/linux/kernel/git/galak/powerpc.git for_linus to receive the following updates: drivers/net/phy/mdio_bus.c |3 ++- drivers/net/phy/vitesse.c |2 +- 2 files changed, 3 insertions(+), 2 deletions(-) Kumar Gala

RE: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread Waskiewicz Jr, Peter P
PJ Waskiewicz wrote: include/linux/etherdevice.h |3 +- include/linux/netdevice.h | 62 ++- include/linux/skbuff.h |4 ++- net/core/dev.c | 27 +-- net/core/netpoll.c |8 +++---

Re: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread Patrick McHardy
Waskiewicz Jr, Peter P wrote: Quick question: where are the sch_generic changes? :) If you hold for ten minutes I'll post a set of slightly changed patches with the NETDEVICES_MULTIQUEUE option and a fix for this. Jamal's and KK's qdisc_restart() rewrite took the netif_queue_stopped()

RE: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Waskiewicz Jr, Peter P
PJ Waskiewicz wrote: +#ifdef CONFIG_NET_SCH_MULTIQUEUE + if (q-mq) + skb-queue_mapping = + q-prio2band[bandTC_PRIO_MAX]; + else + skb-queue_mapping = 0;

RE: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread Waskiewicz Jr, Peter P
Waskiewicz Jr, Peter P wrote: Quick question: where are the sch_generic changes? :) If you hold for ten minutes I'll post a set of slightly changed patches with the NETDEVICES_MULTIQUEUE option and a fix for this. Jamal's and KK's qdisc_restart() rewrite took the

Re: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Patrick McHardy
Waskiewicz Jr, Peter P wrote: PJ Waskiewicz wrote: +#ifdef CONFIG_NET_SCH_MULTIQUEUE +if (q-mq) +skb-queue_mapping = + q-prio2band[bandTC_PRIO_MAX]; +else +

Re: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread Patrick McHardy
Waskiewicz Jr, Peter P wrote: Waskiewicz Jr, Peter P wrote: Yes, I noticed that now. Doesn't seem right though as long as queueing while queue is stopped is treated as a bug by the drivers. But I vaguely recall seeing a discussion about this, I'll check the archives. The basic gist is

RE: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Waskiewicz Jr, Peter P
Absolutely not. First of all, its perfectly valid to use non-multiqueue qdiscs on multiqueue devices. Secondly, its only the root qdisc that has to know about multiqueue since that one controls the child qdiscs. Think about it, it makes absolutely no sense to have the child qdisc even

Re: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Patrick McHardy
Waskiewicz Jr, Peter P wrote: [...] The only reasonable thing it can do is not care about multiqueue and just dequeue as usual. In fact I think it should be an error to configure multiqueue on a non-root qdisc. Ack. This is a thought process that trips me up from time to time...I see

RE: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread Waskiewicz Jr, Peter P
Waskiewicz Jr, Peter P wrote: [...] The only reasonable thing it can do is not care about multiqueue and just dequeue as usual. In fact I think it should be an error to configure multiqueue on a non-root qdisc. Ack. This is a thought process that trips me up from time to

Re: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread Jeff Garzik
Patrick McHardy wrote: Yes, but there are users that don't go through qdiscs, like netpoll, Having them check the QDISC_RUNNING bit seems ugly. Is netpoll the only such user? netpoll tends to be a special case in every sense of the word, and I wish it was less so :/ Jeff - To

Re: git-net, git-netdev-all and everything else on g5

2007-06-28 Thread Herbert Xu
On Thu, Jun 28, 2007 at 09:13:38AM +, Andrew Morton wrote: With the full -mm lineup, my tg3-using powerpc g5 spits lots of these: windfarm: Drive bay control loop started. audit(1183017094.732:2): audit_pid=2117 old=0 by auid=4294967295 [ cut here ] Badness at

Re: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread Patrick McHardy
Jeff Garzik wrote: Patrick McHardy wrote: Yes, but there are users that don't go through qdiscs, like netpoll, Having them check the QDISC_RUNNING bit seems ugly. Is netpoll the only such user? I'm not sure, I just remembered that one :) Looking at Peter's multiqueue patch, which

Re: a maze of twisty stats, most different

2007-06-28 Thread David Miller
From: David Stevens [EMAIL PROTECTED] Date: Thu, 28 Jun 2007 11:17:51 -0700 Comments? I think sysfs is a better model for MIBs, the extensibility we get for free since each SNMP MIB entry we want to add is simply a new file. I'd be quite thrilled to apply a patch which implemented this. - To

Re: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread David Miller
From: Jeff Garzik [EMAIL PROTECTED] Date: Thu, 28 Jun 2007 15:32:40 -0400 Patrick McHardy wrote: Yes, but there are users that don't go through qdiscs, like netpoll, Having them check the QDISC_RUNNING bit seems ugly. Is netpoll the only such user? netpoll tends to be a special case in

Re: git-net, git-netdev-all and everything else on g5

2007-06-28 Thread David Miller
From: Herbert Xu [EMAIL PROTECTED] Date: Fri, 29 Jun 2007 03:18:31 +0800 On Thu, Jun 28, 2007 at 09:13:38AM +, Andrew Morton wrote: With the full -mm lineup, my tg3-using powerpc g5 spits lots of these: windfarm: Drive bay control loop started. audit(1183017094.732:2):

Re: a maze of twisty stats, most different

2007-06-28 Thread Rick Jones
David Miller wrote: From: David Stevens [EMAIL PROTECTED] Date: Thu, 28 Jun 2007 11:17:51 -0700 Comments? I think sysfs is a better model for MIBs, the extensibility we get for free since each SNMP MIB entry we want to add is simply a new file. I'd be quite thrilled to apply a patch which

Re: r8169: 2.6.22rc6+patches works, but 2.6.21.5 and 2.6.22rc6 without patches-network transfer blocking

2007-06-28 Thread Francois Romieu
Jens Stroebel [EMAIL PROTECTED] : [...] Is there any possibility to get this fix working in 2.6.21.5? Would it be possible to apply the single patch to 2.6.21.5 and get a working driver? Or would it be possible to create the fixing patch for the driver in 2.6.21.5? Mantra: mainline first,

RE: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread Waskiewicz Jr, Peter P
Waskiewicz Jr, Peter P wrote: Looking at Peter's multiqueue patch, which should include all hard_start_xmit users (I'm not seeing sch_teql though, Peter?) the only other one is pktgen. Ugh. That is another netif_queue_stopped() that needs netif_subqueue_stopped(). I can

Re: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread David Miller
From: Waskiewicz Jr, Peter P [EMAIL PROTECTED] Date: Thu, 28 Jun 2007 16:08:43 -0700 Thanks Patrick for taking care of this. I am totally fine with this patch; if anyone else has feedback, please send it. If not, I'm excited to see if these can be considered for 2.6.23 now. :) Thanks

[RFT] r8169 changes against 2.6.22-rc6

2007-06-28 Thread Francois Romieu
The latest serie of r8169 changes is available against 2.6.22-rc6 as: http://www.fr.zoreil.com/people/francois/misc/20070628-2.6.22-rc6-r8169-test.patch or (tarball sits one level higher): http://www.fr.zoreil.com/linux/kernel/2.6.x/2.6.22-rc6/r8169-20070628/ or (rebase prone branch) git

Re: r8169 patches

2007-06-28 Thread Soren Hansen
On Thu, Jun 28, 2007 at 11:10:37PM +0200, Francois Romieu wrote: I have an Asrock ConRoe945G-DVI motherboard with a RTL8111/8168B in it. The stock r8159 driver locks up from time to time. I've described it here: https://launchpad.net/bugs/121815 . The patchset at

[linux-usb-devel] USB: cdc-subset.c support for new vendor/product ID

2007-06-28 Thread Stanley Cai
Send to the lists on behalf on Jing, Any comment is welcome. Thanks -stanley -- hi, Here's one patch for cdc subset to support new vendor/product ID. Could you help to check whether it is accaptable or not? Thanks a lot! Signed-off-by: Jing Xiang[EMAIL PROTECTED] diff

Re: quirk_e100_interrupt() called too early

2007-06-28 Thread Bjorn Helgaas
On Thursday 28 June 2007 10:01:08 am Kok, Auke wrote: Marian Balakowicz wrote: I am enabling and testing PCI on tqm5200 mpc5200 based board where I faced the following issue. I am using EEPRO100 PCI card for which there is specific quirk_e100_interrupt that tries to disable interrupts

Re: [PATCH 2/3] NET: [CORE] Stack changes to add multiqueue hardware support API

2007-06-28 Thread David Miller
From: PJ Waskiewicz [EMAIL PROTECTED] Date: Thu, 28 Jun 2007 09:21:13 -0700 -struct net_device *alloc_netdev(int sizeof_priv, const char *name, - void (*setup)(struct net_device *)) +struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name, + void

Re: [PATCH 3/3] NET: [SCHED] Qdisc changes and sch_rr added for multiqueue

2007-06-28 Thread David Miller
From: Patrick McHardy [EMAIL PROTECTED] Date: Thu, 28 Jun 2007 21:24:37 +0200 Waskiewicz Jr, Peter P wrote: [...] The only reasonable thing it can do is not care about multiqueue and just dequeue as usual. In fact I think it should be an error to configure multiqueue on a non-root qdisc.

Re: [GIT PATCHES] SCTP fixes

2007-06-28 Thread David Miller
From: Vlad Yasevich [EMAIL PROTECTED] Date: Thu, 28 Jun 2007 10:34:57 -0400 Hi David Please pull the following changes: The following changes since commit 19e6454ca778e11e81497bd87c930dc0defd03d7: David Howells (1): [AF_RXRPC]: Return the number of bytes buffered in

Please pull from 'from_linus' branch

2007-06-28 Thread Kumar Gala
Please pull from 'for_linus' branch of master.kernel.org:/pub/scm/linux/kernel/git/galak/powerpc.git for_linus to receive the following updates: drivers/net/gianfar.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Kumar Gala (1): gianfar: Fix typo bug introduced by