diff options
author | Thomas Haller <thaller@redhat.com> | 2018-01-18 06:54:27 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2018-01-18 06:54:27 (GMT) |
commit | 7eeb29bc536a8bca21703e4fab817daeeaa890df (patch) | |
tree | 0a3fe9a0d0efbb9dd3dd95352b50aa9e79efdb58 /include/netlink | |
parent | ca02edd1014234e1260d6d7ff4f51ddb9d6f54f2 (diff) | |
download | libnl-7eeb29bc536a8bca21703e4fab817daeeaa890df.zip libnl-7eeb29bc536a8bca21703e4fab817daeeaa890df.tar.gz libnl-7eeb29bc536a8bca21703e4fab817daeeaa890df.tar.bz2 |
route: rename rtnl_cls_cache_set_tcm_params() and fix symbol versioning
After rethinking, "tcm_params" doesn't seem like a good name. Change it to
"tc_params".
Also, an already released section in the linker file must never be
modified. It defeats the purpose of symbol versioning. Move the symbol
to the right section.
Diffstat (limited to 'include/netlink')
-rw-r--r-- | include/netlink/route/classifier.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/netlink/route/classifier.h b/include/netlink/route/classifier.h index 82a691f..18832ad 100644 --- a/include/netlink/route/classifier.h +++ b/include/netlink/route/classifier.h @@ -27,7 +27,7 @@ extern void rtnl_cls_put(struct rtnl_cls *); extern int rtnl_cls_alloc_cache(struct nl_sock *, int, uint32_t, struct nl_cache **); -extern void rtnl_cls_cache_set_tcm_params(struct nl_cache *, int, uint32_t); +extern void rtnl_cls_cache_set_tc_params(struct nl_cache *, int, uint32_t); extern int rtnl_cls_build_add_request(struct rtnl_cls *, int, struct nl_msg **); |