aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/core/filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/filter.c b/net/core/filter.c
index 3733381190ec..765556ba32ef 100644
--- a/net/core/filter.c
+++ b/net/core/filter.c
@@ -125,10 +125,10 @@ noinline u64 __bpf_call_base(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
125/** 125/**
126 * __sk_run_filter - run a filter on a given context 126 * __sk_run_filter - run a filter on a given context
127 * @ctx: buffer to run the filter on 127 * @ctx: buffer to run the filter on
128 * @fentry: filter to apply 128 * @insn: filter to apply
129 * 129 *
130 * Decode and apply filter instructions to the skb->data. Return length to 130 * Decode and apply filter instructions to the skb->data. Return length to
131 * keep, 0 for none. @ctx is the data we are operating on, @filter is the 131 * keep, 0 for none. @ctx is the data we are operating on, @insn is the
132 * array of filter instructions. 132 * array of filter instructions.
133 */ 133 */
134unsigned int __sk_run_filter(void *ctx, const struct sock_filter_int *insn) 134unsigned int __sk_run_filter(void *ctx, const struct sock_filter_int *insn)