diff options
author | Roman Mashak <mrv@mojatatu.com> | 2017-10-11 17:50:29 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-13 08:13:20 +0300 |
commit | 8f04748016f3b583e675e0f649d42cfc10812a8b (patch) | |
tree | 9bcb35adbbfbec5601b624141f066d5fb3bdf362 /net/sched/act_ife.c | |
parent | 47f25464122bd7aebba35bfb0a26ee24d8026885 (diff) | |
download | linux-8f04748016f3b583e675e0f649d42cfc10812a8b.tar.xz |
net sched actions: change IFE modules alias names
Make style of module alias name consistent with other subsystems in kernel,
for example net devices.
Fixes: 084e2f6566d2 ("Support to encoding decoding skb mark on IFE action")
Fixes: 200e10f46936 ("Support to encoding decoding skb prio on IFE action")
Fixes: 408fbc22ef1e ("net sched ife action: Introduce skb tcindex metadata encap decap")
Signed-off-by: Roman Mashak <mrv@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/act_ife.c')
-rw-r--r-- | net/sched/act_ife.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_ife.c b/net/sched/act_ife.c index 8ccd35825b6b..791aeee11c7e 100644 --- a/net/sched/act_ife.c +++ b/net/sched/act_ife.c @@ -263,7 +263,7 @@ static int load_metaops_and_vet(struct tcf_ife_info *ife, u32 metaid, if (exists) spin_unlock_bh(&ife->tcf_lock); rtnl_unlock(); - request_module("ifemeta%u", metaid); + request_module("ife-meta-%u", metaid); rtnl_lock(); if (exists) spin_lock_bh(&ife->tcf_lock); |