netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Daniele Palmas <dnlplm@gmail.com>
Cc: Network Development <netdev@vger.kernel.org>,
	Alex Elder <elder@linaro.org>
Subject: Re: [PATCH] iplink_rmnet: Allow passing IFLA_RMNET_FLAGS
Date: Mon, 15 Mar 2021 10:43:34 -0500	[thread overview]
Message-ID: <YE+ApoVXRdIYQEdE@builder.lan> (raw)
In-Reply-To: <CAGRyCJHqkBKZDSK+P=UP2B=DFj5n7LTd+ZwBd7a9LDytNeYJWw@mail.gmail.com>

On Mon 15 Mar 09:23 CDT 2021, Daniele Palmas wrote:

> Hi Bjorn,
> 
> Il giorno sab 13 mar 2021 alle ore 01:02 Bjorn Andersson
> <bjorn.andersson@linaro.org> ha scritto:
> >
> > Parse and pass IFLA_RMNET_FLAGS to the kernel, to allow changing the
> > flags from the default of ingress-aggregate only.
> >
> > Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> > ---
> >  ip/iplink_rmnet.c | 42 ++++++++++++++++++++++++++++++++++++++++++
> >  1 file changed, 42 insertions(+)
> >
> > diff --git a/ip/iplink_rmnet.c b/ip/iplink_rmnet.c
> > index 1d16440c6900..8a488f3d0316 100644
> > --- a/ip/iplink_rmnet.c
> > +++ b/ip/iplink_rmnet.c
> > @@ -16,6 +16,10 @@ static void print_explain(FILE *f)
> >  {
> >         fprintf(f,
> >                 "Usage: ... rmnet mux_id MUXID\n"
> > +               "                 [ingress-deaggregation]\n"
> > +               "                 [ingress-commands]\n"
> > +               "                 [ingress-chksumv4]\n"
> > +               "                 [egress-chksumv4]\n"
> >                 "\n"
> >                 "MUXID := 1-254\n"
> >         );
> > @@ -29,6 +33,7 @@ static void explain(void)
> >  static int rmnet_parse_opt(struct link_util *lu, int argc, char **argv,
> >                            struct nlmsghdr *n)
> >  {
> > +       struct ifla_rmnet_flags flags = { };
> >         __u16 mux_id;
> >
> >         while (argc > 0) {
> > @@ -37,6 +42,18 @@ static int rmnet_parse_opt(struct link_util *lu, int argc, char **argv,
> >                         if (get_u16(&mux_id, *argv, 0))
> >                                 invarg("mux_id is invalid", *argv);
> >                         addattr16(n, 1024, IFLA_RMNET_MUX_ID, mux_id);
> > +               } else if (matches(*argv, "ingress-deaggregation") == 0) {
> > +                       flags.mask = ~0;
> > +                       flags.flags |= RMNET_FLAGS_INGRESS_DEAGGREGATION;
> > +               } else if (matches(*argv, "ingress-commands") == 0) {
> > +                       flags.mask = ~0;
> > +                       flags.flags |= RMNET_FLAGS_INGRESS_MAP_COMMANDS;
> > +               } else if (matches(*argv, "ingress-chksumv4") == 0) {
> > +                       flags.mask = ~0;
> > +                       flags.flags |= RMNET_FLAGS_INGRESS_MAP_CKSUMV4;
> > +               } else if (matches(*argv, "egress-chksumv4") == 0) {
> > +                       flags.mask = ~0;
> > +                       flags.flags |= RMNET_FLAGS_EGRESS_MAP_CKSUMV4;
> >                 } else if (matches(*argv, "help") == 0) {
> >                         explain();
> >                         return -1;
> > @@ -48,11 +65,28 @@ static int rmnet_parse_opt(struct link_util *lu, int argc, char **argv,
> >                 argc--, argv++;
> >         }
> >
> > +       if (flags.mask)
> > +               addattr_l(n, 1024, IFLA_RMNET_FLAGS, &flags, sizeof(flags));
> > +
> >         return 0;
> >  }
> >
> > +static void rmnet_print_flags(FILE *fp, __u32 flags)
> > +{
> > +       if (flags & RMNET_FLAGS_INGRESS_DEAGGREGATION)
> > +               print_string(PRINT_ANY, NULL, "%s ", "ingress-deaggregation");
> > +       if (flags & RMNET_FLAGS_INGRESS_MAP_COMMANDS)
> > +               print_string(PRINT_ANY, NULL, "%s ", "ingress-commands");
> > +       if (flags & RMNET_FLAGS_INGRESS_MAP_CKSUMV4)
> > +               print_string(PRINT_ANY, NULL, "%s ", "ingress-chksumv4");
> > +       if (flags & RMNET_FLAGS_EGRESS_MAP_CKSUMV4)
> > +               print_string(PRINT_ANY, NULL, "%s ", "egress-cksumv4");
> > +}
> > +
> >  static void rmnet_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
> >  {
> > +       struct ifla_vlan_flags *flags;
> 
> just for my understanding, why not struct ifla_rmnet_flags (though
> they are exactly the same)?
> 

That's a copy-paste or code complete mistake, thanks for spotting it.

Regards,
Bjorn

> Thanks,
> Daniele
> 
> > +
> >         if (!tb)
> >                 return;
> >
> > @@ -64,6 +98,14 @@ static void rmnet_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
> >                    "mux_id",
> >                    "mux_id %u ",
> >                    rta_getattr_u16(tb[IFLA_RMNET_MUX_ID]));
> > +
> > +       if (tb[IFLA_RMNET_FLAGS]) {
> > +               if (RTA_PAYLOAD(tb[IFLA_RMNET_FLAGS]) < sizeof(*flags))
> > +                       return;
> > +               flags = RTA_DATA(tb[IFLA_RMNET_FLAGS]);
> > +
> > +               rmnet_print_flags(f, flags->flags);
> > +       }
> >  }
> >
> >  static void rmnet_print_help(struct link_util *lu, int argc, char **argv,
> > --
> > 2.28.0
> >

      reply	other threads:[~2021-03-15 15:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-13  0:02 [PATCH] iplink_rmnet: Allow passing IFLA_RMNET_FLAGS Bjorn Andersson
2021-03-15 14:23 ` Daniele Palmas
2021-03-15 15:43   ` Bjorn Andersson [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=YE+ApoVXRdIYQEdE@builder.lan \
    --to=bjorn.andersson@linaro.org \
    --cc=dnlplm@gmail.com \
    --cc=elder@linaro.org \
    --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).