From: Jesper Dangaard Brouer <brouer@redhat.com>
To: Song Liu <liu.song.a23@gmail.com>
Cc: Networking <netdev@vger.kernel.org>,
"Daniel Borkmann" <borkmann@iogearbox.net>,
"Toke Høiland-Jørgensen" <toke@toke.dk>,
"Alexei Starovoitov" <alexei.starovoitov@gmail.com>,
brouer@redhat.com
Subject: Re: [bpf-next PATCH 2/2] samples/bpf: xdp_rxq_info action XDP_TX must adjust MAC-addrs
Date: Wed, 27 Jun 2018 13:20:26 +0200 [thread overview]
Message-ID: <20180627132026.79190a42@redhat.com> (raw)
In-Reply-To: <CAPhsuW74ZzHawToa3YXxzT6ojk+ScdCvcO3KyT3EBcCxqPHDXg@mail.gmail.com>
On Tue, 26 Jun 2018 17:09:01 -0700
Song Liu <liu.song.a23@gmail.com> wrote:
> On Mon, Jun 25, 2018 at 7:27 AM, Jesper Dangaard Brouer
> <brouer@redhat.com> wrote:
> > XDP_TX requires also changing the MAC-addrs, else some hardware
> > may drop the TX packet before reaching the wire. This was
> > observed with driver mlx5.
> >
> > If xdp_rxq_info select --action XDP_TX the swapmac functionality
> > is activated. It is also possible to manually enable via cmdline
> > option --swapmac. This is practical if wanting to measure the
> > overhead of writing/updating payload for other action types.
> >
> > Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
> > Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
> > ---
[...]
> >
> > diff --git a/samples/bpf/xdp_rxq_info_kern.c b/samples/bpf/xdp_rxq_info_kern.c
> > index 61af6210df2f..222a83eed1cb 100644
> > --- a/samples/bpf/xdp_rxq_info_kern.c
> > +++ b/samples/bpf/xdp_rxq_info_kern.c
> > @@ -21,6 +21,7 @@ struct config {
> > enum cfg_options_flags {
> > NO_TOUCH = 0x0U,
> > READ_MEM = 0x1U,
> > + SWAP_MAC = 0x2U,
> > };
[...]
> > @@ -98,7 +116,7 @@ int xdp_prognum0(struct xdp_md *ctx)
> > rxq_rec->issue++;
> >
> > /* Default: Don't touch packet data, only count packets */
> > - if (unlikely(config->options & READ_MEM)) {
> > + if (unlikely(config->options & (READ_MEM|SWAP_MAC))) {
> > struct ethhdr *eth = data;
> >
> > if (eth + 1 > data_end)
[...]
> > diff --git a/samples/bpf/xdp_rxq_info_user.c b/samples/bpf/xdp_rxq_info_user.c
> > index 435485d4f49e..248a7eab9531 100644
[...]
> > @@ -119,6 +121,8 @@ static char* options2str(enum cfg_options_flags flag)
> > {
> > if (flag == NO_TOUCH)
> > return "no_touch";
> > + if (flag & SWAP_MAC)
> > + return "swapmac";
> > if (flag & READ_MEM)
> > return "read";
>
> I guess SWAP_MAC also reads the memory, so it "includes" READ_MEM?
True (see _kern side)
> It is OK for now. We may need to refactor this part when adding other
> flags in the future.
Sure, do remember that this is only a 'sample' program.
--
Best regards,
Jesper Dangaard Brouer
MSc.CS, Principal Kernel Engineer at Red Hat
LinkedIn: http://www.linkedin.com/in/brouer
next prev parent reply other threads:[~2018-06-27 11:20 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-25 14:27 [bpf-next PATCH 0/2] xdp/bpf: extend XDP samples/bpf xdp_rxq_info Jesper Dangaard Brouer
2018-06-25 14:27 ` [bpf-next PATCH 1/2] samples/bpf: extend xdp_rxq_info to read packet payload Jesper Dangaard Brouer
2018-06-26 23:53 ` Song Liu
2018-06-27 11:23 ` Jesper Dangaard Brouer
2018-06-27 17:03 ` Song Liu
2018-06-25 14:27 ` [bpf-next PATCH 2/2] samples/bpf: xdp_rxq_info action XDP_TX must adjust MAC-addrs Jesper Dangaard Brouer
2018-06-27 0:09 ` Song Liu
2018-06-27 11:20 ` Jesper Dangaard Brouer [this message]
2018-06-27 17:02 ` Song Liu
2018-06-28 21:54 ` [bpf-next PATCH 0/2] xdp/bpf: extend XDP samples/bpf xdp_rxq_info Daniel Borkmann
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=20180627132026.79190a42@redhat.com \
--to=brouer@redhat.com \
--cc=alexei.starovoitov@gmail.com \
--cc=borkmann@iogearbox.net \
--cc=liu.song.a23@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=toke@toke.dk \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.