diff options
author | Jiri Pirko <jiri@mellanox.com> | 2017-05-17 11:07:58 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-17 15:22:13 -0400 |
commit | 7961973a0087824fdc9d0303b0033ab79b557278 (patch) | |
tree | 44b543f8bd9e759cb5ff2ce586ec8d1b91eb2083 /net/sched | |
parent | 9d36d9e545dce53c6fff046b277c261d6568c5b9 (diff) | |
download | linux-7961973a0087824fdc9d0303b0033ab79b557278.tar.gz linux-7961973a0087824fdc9d0303b0033ab79b557278.tar.bz2 linux-7961973a0087824fdc9d0303b0033ab79b557278.zip |
net: sched: move TC_H_MAJ macro call into tcf_auto_prio
Call the helper from the function rather than to always adjust the
return value of the function.
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/cls_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index bf2e59cc1174..690457c988b2 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -125,7 +125,7 @@ static inline u32 tcf_auto_prio(struct tcf_proto *tp) if (tp) first = tp->prio - 1; - return first; + return TC_H_MAJ(first); } static struct tcf_proto *tcf_proto_create(const char *kind, u32 protocol, @@ -411,7 +411,7 @@ replay: } if (prio_allocate) - prio = TC_H_MAJ(tcf_auto_prio(rtnl_dereference(*back))); + prio = tcf_auto_prio(rtnl_dereference(*back)); tp = tcf_proto_create(nla_data(tca[TCA_KIND]), protocol, prio, parent, q, block); |