[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20170409.122407.991589103284660026.davem@davemloft.net>
Date: Sun, 09 Apr 2017 12:24:07 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: andrew@...n.ch
Cc: netdev@...r.kernel.org, xdp-newbies@...r.kernel.org
Subject: Re: [PATCH net-next RFC] Generic XDP
From: Andrew Lunn <andrew@...n.ch>
Date: Sun, 9 Apr 2017 15:46:55 +0200
>> + switch (act) {
>> + case XDP_PASS:
>> + case XDP_TX:
>> + break;
>> +
>> + default:
>> + bpf_warn_invalid_xdp_action(act);
>
> Hi David
>
> You might want to put a /* fall through */ comment here, just to
> prevent newbies from submitting patches moving the default clause to
> the end.
Probably need two, ala:
default:
bpf_warn_invalid_xdp_action(act);
/* fall through */
case XDP_ABORTED:
trace_xdp_exception(skb->dev, xdp_prog, act);
/* fall through */
case XDP_DROP:
do_drop:
kfree_skb(skb);
break;
So that's what I've done.
Thanks!
Powered by blists - more mailing lists