diff options
author | Min-Hua Chen <[email protected]> | 2023-06-03 07:52:09 +0800 |
---|---|---|
committer | David S. Miller <[email protected]> | 2023-06-04 15:49:06 +0100 |
commit | 8cde87b007dad2e461015ff70352af56ceb02c75 (patch) | |
tree | 1a5cd6e09499dc39483a621ab4ac1a6450adaf01 | |
parent | 3d5f4d29f6a8c1f248ea652daddc9c4701370120 (diff) |
net: sched: wrap tc_skip_wrapper with CONFIG_RETPOLINE
This patch fixes the following sparse warning:
net/sched/sch_api.c:2305:1: sparse: warning: symbol 'tc_skip_wrapper' was not declared. Should it be static?
No functional change intended.
Signed-off-by: Min-Hua Chen <[email protected]>
Acked-by: Pedro Tammela <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/sched/sch_api.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index 014209b1dd58..9ea51812b9cf 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c @@ -2302,7 +2302,9 @@ static struct pernet_operations psched_net_ops = { .exit = psched_net_exit, }; +#if IS_ENABLED(CONFIG_RETPOLINE) DEFINE_STATIC_KEY_FALSE(tc_skip_wrapper); +#endif static int __init pktsched_init(void) { |