diff options
Diffstat (limited to 'include/linux/bpf_verifier.h')
| -rw-r--r-- | include/linux/bpf_verifier.h | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/bpf_verifier.h b/include/linux/bpf_verifier.h index 7035b997aaa5..6aaf425cebc3 100644 --- a/include/linux/bpf_verifier.h +++ b/include/linux/bpf_verifier.h @@ -14,7 +14,7 @@    * are obviously wrong for any sort of memory access.    */  #define BPF_REGISTER_MAX_RANGE (1024 * 1024 * 1024) -#define BPF_REGISTER_MIN_RANGE -(1024 * 1024 * 1024) +#define BPF_REGISTER_MIN_RANGE -1  struct bpf_reg_state {  	enum bpf_reg_type type; @@ -22,7 +22,8 @@ struct bpf_reg_state {  	 * Used to determine if any memory access using this register will  	 * result in a bad access.  	 */ -	u64 min_value, max_value; +	s64 min_value; +	u64 max_value;  	union {  		/* valid when type == CONST_IMM | PTR_TO_STACK | UNKNOWN_VALUE */  		s64 imm;  | 
