[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1430345993.3711.59.camel@edumazet-glaptop2.roam.corp.google.com>
Date: Wed, 29 Apr 2015 15:19:53 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: Alexei Starovoitov <ast@...mgrid.com>
Cc: "David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Daniel Borkmann <daniel@...earbox.net>,
Thomas Graf <tgraf@...g.ch>,
Jamal Hadi Salim <jhs@...atatu.com>,
John Fastabend <john.r.fastabend@...el.com>,
netdev@...r.kernel.org
Subject: Re: [PATCH RFC net-next] pktgen: introduce 'rx' mode
On Wed, 2015-04-29 at 14:55 -0700, Alexei Starovoitov wrote:
> On 4/28/15 9:14 PM, Eric Dumazet wrote:
> > On Tue, 2015-04-28 at 19:11 -0700, Alexei Starovoitov wrote:
> >
> >> + if (pkt_dev->flags & F_DO_RX) {
> >> + local_bh_disable();
> >> + atomic_add(burst, &pkt_dev->skb->users);
> >> + do {
> >> + ret = netif_receive_skb(pkt_dev->skb);
> >> + if (ret == NET_RX_DROP)
> >> + pkt_dev->errors++;
> >> + pkt_dev->last_ok = 1;
> >> + pkt_dev->sofar++;
> >> + pkt_dev->seq_num++;
> >> + } while (--burst > 0);
> >> + local_bh_enable();
> >> + goto out;
> >> + }
> >> +
> >
> > This looks buggy.
> >
> > skb can be put on a queue, so skb->next and skb->prev cannot be reused,
> > or queues will be corrupted.
>
> don't see the bug yet.
> Any layer that wants to do such queueing should do skb_share_check
> first. Just like ip_rcv does. So everything in IP world should
> work fine, because it will be operating on clean cloned skb.
Really this is what _you_ think is needed, so that your patch can fly.
In current state of the stack, the skb_share_check() is done where we
know that packet _might_ be delivered to multiple end points
(deliver_skb() does atomic_inc(&skb->users) )
But RPS/RFS/GRO do not care of your new rule.
Yes, before reaching __netif_receive_skb_core(), packets are supposed to
belong to the stack. We are supposed to queue them, without adding a
check for skb->users being one or not, and eventually add an expensive
memory allocation/copy.
We are not going to add an extra check just to make pktgen rx fast.
pktgen will have to comply to existing rules.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists