hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/net/sched/sch_atm.c
....@@ -396,10 +396,13 @@
396396 result = tcf_classify(skb, fl, &res, true);
397397 if (result < 0)
398398 continue;
399
+ if (result == TC_ACT_SHOT)
400
+ goto done;
401
+
399402 flow = (struct atm_flow_data *)res.class;
400403 if (!flow)
401404 flow = lookup_flow(sch, res.classid);
402
- goto done;
405
+ goto drop;
403406 }
404407 }
405408 flow = NULL;