diff options
| author | Kui-Feng Lee <[email protected]> | 2024-05-30 06:59:39 +0000 |
|---|---|---|
| committer | Martin KaFai Lau <[email protected]> | 2024-05-30 22:34:13 +0000 |
| commit | 73287fe228721b05690e671adbcccc6cf5435be6 (patch) | |
| tree | 79813d3b5556ae05d70eb6794fc8024294db4ca3 /net/bpf/bpf_dummy_struct_ops.c | |
| parent | selftests/bpf: use section names understood by libbpf in test_sockmap (diff) | |
| download | kernel-73287fe228721b05690e671adbcccc6cf5435be6.tar.gz kernel-73287fe228721b05690e671adbcccc6cf5435be6.zip | |
bpf: pass bpf_struct_ops_link to callbacks in bpf_struct_ops.
Pass an additional pointer of bpf_struct_ops_link to callback function reg,
unreg, and update provided by subsystems defined in bpf_struct_ops. A
bpf_struct_ops_map can be registered for multiple links. Passing a pointer
of bpf_struct_ops_link helps subsystems to distinguish them.
This pointer will be used in the later patches to let the subsystem
initiate a detachment on a link that was registered to it previously.
Signed-off-by: Kui-Feng Lee <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Martin KaFai Lau <[email protected]>
Diffstat (limited to 'net/bpf/bpf_dummy_struct_ops.c')
| -rw-r--r-- | net/bpf/bpf_dummy_struct_ops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bpf/bpf_dummy_struct_ops.c b/net/bpf/bpf_dummy_struct_ops.c index 891cdf61c65a..3ea52b05adfb 100644 --- a/net/bpf/bpf_dummy_struct_ops.c +++ b/net/bpf/bpf_dummy_struct_ops.c @@ -272,12 +272,12 @@ static int bpf_dummy_init_member(const struct btf_type *t, return -EOPNOTSUPP; } -static int bpf_dummy_reg(void *kdata) +static int bpf_dummy_reg(void *kdata, struct bpf_link *link) { return -EOPNOTSUPP; } -static void bpf_dummy_unreg(void *kdata) +static void bpf_dummy_unreg(void *kdata, struct bpf_link *link) { } |
