projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e430022
)
bpf: Save PTR_TO_BTF_ID register state when spilling to stack
author
Martin KaFai Lau
<kafai@fb.com>
Thu, 9 Jan 2020 00:34:54 +0000
(16:34 -0800)
committer
Alexei Starovoitov
<ast@kernel.org>
Thu, 9 Jan 2020 16:45:32 +0000
(08:45 -0800)
This patch makes the verifier save the PTR_TO_BTF_ID register state when
spilling to the stack.
Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Yonghong Song <yhs@fb.com>
Link:
https://lore.kernel.org/bpf/20200109003454.3854870-1-kafai@fb.com
kernel/bpf/verifier.c
patch
|
blob
|
history
diff --git
a/kernel/bpf/verifier.c
b/kernel/bpf/verifier.c
index 6f63ae7a370c0e8b91ab3fe101602ac7f36b5c03..d433d70022fda1f863c0411830cf7f97e5e67f87 100644
(file)
--- a/
kernel/bpf/verifier.c
+++ b/
kernel/bpf/verifier.c
@@
-1916,6
+1916,7
@@
static bool is_spillable_regtype(enum bpf_reg_type type)
case PTR_TO_TCP_SOCK:
case PTR_TO_TCP_SOCK_OR_NULL:
case PTR_TO_XDP_SOCK:
+ case PTR_TO_BTF_ID:
return true;
default:
return false;