index
:
linux
master
linux
Fast-forward packages
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
net
/
ipv4
/
udp.c
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2021-04-01
udp: Implement ->read_sock() for sockmap
Cong Wang
4
-0
/
+33
2021-04-01
sock: Introduce sk->sk_prot->psock_update_sk_prot()
Cong Wang
12
-45
/
+58
2021-04-01
sock_map: Introduce BPF_SK_SKB_VERDICT
Cong Wang
8
-1
/
+38
2021-04-01
sock_map: Kill sock_map_link_no_progs()
Cong Wang
1
-40
/
+15
2021-04-01
sock_map: Simplify sock_map_link() a bit
Cong Wang
1
-4
/
+5
2021-04-01
skmsg: Use GFP_KERNEL in sk_psock_create_ingress_msg()
Cong Wang
1
-1
/
+1
2021-04-01
skmsg: Use rcu work for destroying psock
Cong Wang
2
-16
/
+6
2021-04-01
skmsg: Avoid lock_sock() in sk_psock_backlog()
Cong Wang
3
-16
/
+37
2021-04-01
net: Introduce skb_send_sock() for sock_map
Cong Wang
2
-7
/
+49
2021-04-01
skmsg: Introduce a spinlock to protect ingress_msg
Cong Wang
3
-12
/
+55
2021-04-01
skmsg: Lock ingress_skb when purging
Cong Wang
1
-1
/
+1
2021-03-31
tools/resolve_btfids: Fix warnings
Stanislav Fomichev
1
-6
/
+5
2021-03-31
selftests/bpf: Add an option for a debug shell in vmtest.sh
KP Singh
1
-11
/
+28
2021-03-30
bpf: Remove redundant assignment of variable id
Colin Ian King
1
-1
/
+0
2021-03-30
bpf: Remove unused bpf_load_pointer
He Fengqing
1
-9
/
+0
2021-03-30
selftests: xsk: Remove unused defines
Björn Töpel
2
-6
/
+3
2021-03-30
selftests: xsk: Remove mutex and condition variable
Björn Töpel
2
-30
/
+6
2021-03-30
selftests: xsk: Remove thread attribute
Björn Töpel
2
-9
/
+2
2021-03-30
selftests: xsk: Implement bpf_link test
Maciej Fijalkowski
3
-50
/
+139
2021-03-30
veth: Implement ethtool's get_channels() callback
Maciej Fijalkowski
1
-0
/
+12
2021-03-30
selftests: xsk: Remove sync_mutex_tx and atomic var
Maciej Fijalkowski
2
-26
/
+7
2021-03-30
selftests: xsk: Refactor teardown/bidi test cases and testapp_validate
Maciej Fijalkowski
2
-53
/
+78
2021-03-30
selftests: xsk: Remove Tx synchronization resources
Maciej Fijalkowski
2
-10
/
+7
2021-03-30
selftests: xsk: Split worker thread
Maciej Fijalkowski
1
-79
/
+77
2021-03-30
selftests: xsk: Remove thread for netns switch
Maciej Fijalkowski
2
-119
/
+14
2021-03-30
samples: bpf: Do not unload prog within xdpsock
Maciej Fijalkowski
1
-41
/
+14
2021-03-30
libbpf: xsk: Use bpf_link
Maciej Fijalkowski
1
-45
/
+213
2021-03-30
selftests: xsk: Simplify frame traversal in dumping thread
Maciej Fijalkowski
1
-26
/
+21
2021-03-30
selftests: xsk: Remove inline keyword from source file
Maciej Fijalkowski
1
-10
/
+7
2021-03-30
selftests: xsk: Remove unused function
Maciej Fijalkowski
1
-13
/
+0
2021-03-30
selftests: xsk: Remove struct ifaceconfigobj
Maciej Fijalkowski
2
-44
/
+30
2021-03-30
selftests: xsk: Don't call worker_pkt_dump() for stats test
Maciej Fijalkowski
1
-1
/
+1
2021-03-30
libbpf: Fix memory leak when emitting final btf_ext
Andrii Nakryiko
1
-8
/
+16
2021-03-30
bpf: selftests: Update clang requirement in README.rst for testing kfunc call
Martin KaFai Lau
1
-0
/
+14
2021-03-30
bpf: Update bpf_design_QA.rst to clarify the kfunc call is not ABI
Martin KaFai Lau
1
-0
/
+15
2021-03-30
bpf: tcp: Limit calling some tcp cc functions to CONFIG_DYNAMIC_FTRACE
Martin KaFai Lau
1
-0
/
+2
2021-03-29
bpf: tcp: Fix an error in the bpf_tcp_ca_kfunc_ids list
Martin KaFai Lau
1
-1
/
+1
2021-03-28
bpf: tcp: Remove comma which is causing build error
Atul Gopinathan
1
-1
/
+1
2021-03-27
bpf: selftests: Add kfunc_call test
Martin KaFai Lau
6
-0
/
+183
2021-03-27
bpf: selftests: Bpf_cubic and bpf_dctcp calling kernel functions
Martin KaFai Lau
3
-46
/
+11
2021-03-27
bpf: selftests: Rename bictcp to bpf_cubic
Martin KaFai Lau
1
-15
/
+15
2021-03-27
libbpf: Support extern kernel function
Martin KaFai Lau
1
-12
/
+162
2021-03-27
libbpf: Record extern sym relocation first
Martin KaFai Lau
1
-29
/
+34
2021-03-27
libbpf: Rename RELO_EXTERN to RELO_EXTERN_VAR
Martin KaFai Lau
1
-3
/
+3
2021-03-27
libbpf: Refactor codes for finding btf id of a kernel symbol
Martin KaFai Lau
1
-11
/
+33
2021-03-27
libbpf: Refactor bpf_object__resolve_ksyms_btf_id
Martin KaFai Lau
1
-57
/
+67
2021-03-27
bpf: tcp: Put some tcp cong functions in allowlist for bpf-tcp-cc
Martin KaFai Lau
1
-0
/
+41
2021-03-27
tcp: Rename bictcp function prefix to cubictcp
Martin KaFai Lau
1
-12
/
+12
2021-03-27
bpf: Support kernel function call in x86-32
Martin KaFai Lau
1
-0
/
+198
2021-03-27
bpf: Support bpf program calling kernel function
Martin KaFai Lau
13
-46
/
+480
[next]