summaryrefslogtreecommitdiffstats
path: root/lib/route
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2018-01-18 06:54:27 (GMT)
committerThomas Haller <thaller@redhat.com>2018-01-18 06:54:27 (GMT)
commit7eeb29bc536a8bca21703e4fab817daeeaa890df (patch)
tree0a3fe9a0d0efbb9dd3dd95352b50aa9e79efdb58 /lib/route
parentca02edd1014234e1260d6d7ff4f51ddb9d6f54f2 (diff)
downloadlibnl-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 'lib/route')
-rw-r--r--lib/route/cls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/route/cls.c b/lib/route/cls.c
index 2aaabfc..27f43c7 100644
--- a/lib/route/cls.c
+++ b/lib/route/cls.c
@@ -356,8 +356,8 @@ int rtnl_cls_alloc_cache(struct nl_sock *sk, int ifindex, uint32_t parent,
*
* @return void.
*/
-void rtnl_cls_cache_set_tcm_params(struct nl_cache *cache,
- int ifindex, uint32_t parent)
+void rtnl_cls_cache_set_tc_params(struct nl_cache *cache,
+ int ifindex, uint32_t parent)
{
cache->c_iarg1 = ifindex;
cache->c_iarg2 = parent;