projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
84581bd
)
net: sched: fix extack error message when chain is failed to be created
author
Jiri Pirko
<jiri@mellanox.com>
Mon, 27 Aug 2018 18:58:43 +0000
(20:58 +0200)
committer
David S. Miller
<davem@davemloft.net>
Mon, 27 Aug 2018 22:16:16 +0000
(15:16 -0700)
Instead "Cannot find" say "Cannot create".
Fixes: c35a4acc2985 ("net: sched: cls_api: handle generic cls errors")
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/cls_api.c
patch
|
blob
|
history
diff --git
a/net/sched/cls_api.c
b/net/sched/cls_api.c
index 31bd1439cf6059fbcb3e99525e4a964154ef7907..2d41c5b21b487c194280d8f9610f23e4e9d06341 100644
(file)
--- a/
net/sched/cls_api.c
+++ b/
net/sched/cls_api.c
@@
-1252,7
+1252,7
@@
replay:
}
chain = tcf_chain_get(block, chain_index, true);
if (!chain) {
- NL_SET_ERR_MSG(extack, "Cannot
find
specified filter chain");
+ NL_SET_ERR_MSG(extack, "Cannot
create
specified filter chain");
err = -ENOMEM;
goto errout;
}