mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-24 15:42:32 +00:00
[NET_SCHED]: Use NLA_PUT_STRING for string dumping
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4b3550ef53
commit
57e1c487a4
6 changed files with 8 additions and 8 deletions
|
@ -337,7 +337,7 @@ static int tcf_fill_node(struct sk_buff *skb, struct tcf_proto *tp,
|
|||
tcm->tcm_ifindex = tp->q->dev->ifindex;
|
||||
tcm->tcm_parent = tp->classid;
|
||||
tcm->tcm_info = TC_H_MAKE(tp->prio, tp->protocol);
|
||||
NLA_PUT(skb, TCA_KIND, IFNAMSIZ, tp->ops->kind);
|
||||
NLA_PUT_STRING(skb, TCA_KIND, tp->ops->kind);
|
||||
tcm->tcm_handle = fh;
|
||||
if (RTM_DELTFILTER != event) {
|
||||
tcm->tcm_handle = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue