diff options
author | wenxu <wenxu@ucloud.cn> | 2020-03-24 07:34:25 +0800 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2020-03-27 18:41:52 +0100 |
commit | 133a2fe594dc0eb15a77477a5a05176495190139 (patch) | |
tree | fd17911fa4308e7c8774a27f2b568c74d607b014 /net/sched | |
parent | 53c2b2899af7e6a29c0cf8bfa8a554721398a4b0 (diff) | |
download | linux-133a2fe594dc0eb15a77477a5a05176495190139.tar.gz linux-133a2fe594dc0eb15a77477a5a05176495190139.tar.bz2 linux-133a2fe594dc0eb15a77477a5a05176495190139.zip |
netfilter: flowtable: Fix incorrect tc_setup_type type
The indirect block setup should use TC_SETUP_FT as the type instead of
TC_SETUP_BLOCK. Adjust existing users of the indirect flow block
infrastructure.
Fixes: b5140a36da78 ("netfilter: flowtable: add indr block setup support")
Signed-off-by: wenxu <wenxu@ucloud.cn>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/cls_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index eefacb3176e3..84f8ee6f2009 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -708,7 +708,7 @@ static void tc_indr_block_call(struct tcf_block *block, }; INIT_LIST_HEAD(&bo.cb_list); - flow_indr_block_call(dev, &bo, command); + flow_indr_block_call(dev, &bo, command, TC_SETUP_BLOCK); tcf_block_setup(block, &bo); } |