[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAM_iQpVidNVgJ3HERa2m1UXkQB8V8CjebSGJXO9QS5fDXRQ73Q@mail.gmail.com>
Date: Mon, 8 Feb 2021 21:36:56 -0800
From: Cong Wang <xiyou.wangcong@...il.com>
To: Jakub Kicinski <kuba@...nel.org>
Cc: wenxu <wenxu@...oud.cn>, Jamal Hadi Salim <jhs@...atatu.com>,
mleitner@...hat.com,
Linux Kernel Network Developers <netdev@...r.kernel.org>
Subject: Re: [PATCH net v4] net/sched: cls_flower: Reject invalid ct_state
flags rules
On Mon, Feb 8, 2021 at 10:48 AM Jakub Kicinski <kuba@...nel.org> wrote:
>
> On Mon, 8 Feb 2021 10:41:35 -0800 Cong Wang wrote:
> > On Sat, Feb 6, 2021 at 9:26 PM <wenxu@...oud.cn> wrote:
> > > + if (state && !(state & TCA_FLOWER_KEY_CT_FLAGS_TRACKED)) {
> > > + NL_SET_ERR_MSG_ATTR(extack, tb,
> > > + "ct_state no trk, no other flag are set");
> > > + return -EINVAL;
> > > + }
> > > +
> > > + if (state & TCA_FLOWER_KEY_CT_FLAGS_NEW &&
> > > + state & TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED) {
> > > + NL_SET_ERR_MSG_ATTR(extack, tb,
> > > + "ct_state new and est are exclusive");
> >
> > Please spell out the full words, "trk" and "est" are not good abbreviations.
>
> It does match user space naming in OvS as well as iproute2:
>
> { "trk", TCA_FLOWER_KEY_CT_FLAGS_TRACKED },
> { "new", TCA_FLOWER_KEY_CT_FLAGS_NEW },
> { "est", TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED },
> { "inv", TCA_FLOWER_KEY_CT_FLAGS_INVALID },
> { "rpl", TCA_FLOWER_KEY_CT_FLAGS_REPLY },
>
> IDK about netfilter itself.
It makes sense now, but still they are bad abbreviations, especially
"est" is usually short for "estimated" not "established".
More importantly, we do not have to use abbreviations in ext ack,
we have enough room there.
Thanks.
Powered by blists - more mailing lists