diff options
author | Cong Wang <cong.wang@bytedance.com> | 2021-07-04 21:02:47 +0200 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2021-07-16 03:17:50 +0200 |
commit | c63829182c37c2d6d0608976d15fa61ebebe9e6b (patch) | |
tree | 99491b47f5fed463f7b5db8a7390f3376fcf523a /net/unix/Makefile | |
parent | af_unix: Add a dummy ->close() for sockmap (diff) | |
download | linux-c63829182c37c2d6d0608976d15fa61ebebe9e6b.tar.xz linux-c63829182c37c2d6d0608976d15fa61ebebe9e6b.zip |
af_unix: Implement ->psock_update_sk_prot()
Now we can implement unix_bpf_update_proto() to update
sk_prot, especially prot->close().
Signed-off-by: Cong Wang <cong.wang@bytedance.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20210704190252.11866-7-xiyou.wangcong@gmail.com
Diffstat (limited to 'net/unix/Makefile')
-rw-r--r-- | net/unix/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/unix/Makefile b/net/unix/Makefile index 54e58cc4f945..20491825b4d0 100644 --- a/net/unix/Makefile +++ b/net/unix/Makefile @@ -7,6 +7,7 @@ obj-$(CONFIG_UNIX) += unix.o unix-y := af_unix.o garbage.o unix-$(CONFIG_SYSCTL) += sysctl_net_unix.o +unix-$(CONFIG_BPF_SYSCALL) += unix_bpf.o obj-$(CONFIG_UNIX_DIAG) += unix_diag.o unix_diag-y := diag.o |