Re: [PATCH net-next] net: sched: implement action-specific terse dump
From: Vlad Buslov <hidden>
Date: 2020-11-02 20:00:35
From: Vlad Buslov <hidden>
Date: 2020-11-02 20:00:35
On Mon 02 Nov 2020 at 14:26, Jamal Hadi Salim [off-list ref] wrote:
Thanks Vlad. Ive run the basic test and it looks good. One thing i discovered while testing is that if the cookie is set, we also want it in the dump. Your earlier comment that it only costs if it was set is on point. So please remove that check below:
Okay. Will send V2 shortly.
quoted
+ if (cookie && !from_act) { + if (nla_put(skb, TCA_ACT_COOKIE, cookie->len, cookie->data)) { + rcu_read_unlock(); + goto nla_put_failure; + }cheers, jamal