netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jesper Dangaard Brouer <brouer@redhat.com>
To: David Miller <davem@davemloft.net>
Cc: brouer@redhat.com, netdev@vger.kernel.org
Subject: Re: [PATCH 0/9] Make dev_hard_start_xmit() work fundamentall on lists
Date: Tue, 2 Sep 2014 09:51:20 +0200	[thread overview]
Message-ID: <20140902095120.5651ce24@redhat.com> (raw)
In-Reply-To: <20140901.152430.1711925724234542172.davem@davemloft.net>

On Mon, 01 Sep 2014 15:24:30 -0700 (PDT)
David Miller <davem@davemloft.net> wrote:

> After this patch set, dev_hard_start_xmit() will work fundemantally
> on any and all SKB lists.

This is really excellent work, thank you!
dev_hard_start_xmit() looks so clean now :-)

 
> This opens the path for a clean implementation of pulling multiple
> packets out during qdisc_restart(), and then passing that blob
> in one shot to dev_hard_start_xmit().

Sounds perfect.  I'll start to experiment with qdisc stuff.

> And with those two issues out of the way, it should now be trivial to
> build experiments on top of this patch set, all of the framework
> should be there now.  You could do something as simple as:

As xmit_list()/dev_hard_start_xmit() depend on all SKBs belonging to
the same TXQ, below code should also take this into account.

Thus, bulk dequeue will only see the benefit (of taking the qdisc lock
less) when packets are for the same TXQ.  But I guess this is a good
design choice, as this makes the rest of the code simpler to work with.

> 	skb = q->dequeue(q);
> 	if (skb)
> 		skb = validate_xmit_skb(skb, qdisc_dev(q));
> 	if (skb) {
> 		struct sk_buff *new, *head = skb;
> 		int limit = 5;
> 
> 		do {
> 			new = q->dequeue(q);
> 			if (new)
> 				new = validate_xmit_skb(new, qdisc_dev(q));
> 			if (new) {
> 				skb->next = new;
> 				skb = new;
> 			}
> 		} while (new && --limit);
> 		skb = head;
> 	}
> 
> inside of the else branch of dequeue_skb().
> 
> Signed-off-by: David S. Miller <davem@davemloft.net>


-- 
Best regards,
  Jesper Dangaard Brouer
  MSc.CS, Sr. Network Kernel Developer at Red Hat
  Author of http://www.iptv-analyzer.org
  LinkedIn: http://www.linkedin.com/in/brouer

      reply	other threads:[~2014-09-02  7:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-01 22:24 [PATCH 0/9] Make dev_hard_start_xmit() work fundamentall on lists David Miller
2014-09-02  7:51 ` Jesper Dangaard Brouer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140902095120.5651ce24@redhat.com \
    --to=brouer@redhat.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).