Re: [PATCH 2/3] NET: [UPDATED] Multiqueue network device support implementation.

2007-04-12 Thread Patrick McHardy
Waskiewicz Jr, Peter P wrote: >>Still leaks the device > > > I explained this in a previous response, and you seemed to be ok with > the explanation. Can you elaborate if this is still an issue? I'm OK with allocating subqueues even for single queue devices, not with leaking memory on error.

RE: [PATCH 2/3] NET: [UPDATED] Multiqueue network device support implementation.

2007-04-12 Thread Waskiewicz Jr, Peter P
stopher > Subject: Re: [PATCH 2/3] NET: [UPDATED] Multiqueue network > device support implementation. > > Peter P Waskiewicz Jr wrote: > > diff --git a/net/core/dev.c b/net/core/dev.c index 219a57f..3ce449e > > 100644 > > --- a/net/core/dev.c > > +++ b/net/co

Re: [PATCH 2/3] NET: [UPDATED] Multiqueue network device support implementation.

2007-04-12 Thread Patrick McHardy
Peter P Waskiewicz Jr wrote: > diff --git a/net/core/dev.c b/net/core/dev.c > index 219a57f..3ce449e 100644 > --- a/net/core/dev.c > +++ b/net/core/dev.c > @@ -1471,6 +1471,8 @@ gso: > q = dev->qdisc; > if (q->enqueue) { > rc = q->enqueue(skb, q); >

[PATCH 2/3] NET: [UPDATED] Multiqueue network device support implementation.

2007-04-12 Thread Peter P Waskiewicz Jr
From: Peter P Waskiewicz Jr <[EMAIL PROTECTED]> Update: Removed unnecessary whitespace removals. Reset skb->queue_mapping to zero prior to enqueueing to a qdisc. Fixed band2queue mapping algorithm for bands less than queues. Added an API and associated supporting routines for multiqueue network