We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75597d commit 8731745Copy full SHA for 8731745
kernel/bpf/verifier.c
@@ -2673,7 +2673,7 @@ static bool may_access_direct_pkt_data(struct bpf_verifier_env *env,
2673
case BPF_PROG_TYPE_CGROUP_SKB:
2674
if (t == BPF_WRITE)
2675
return false;
2676
- /* fallthrough */
+ fallthrough;
2677
2678
/* Program types with direct read + write access go here! */
2679
case BPF_PROG_TYPE_SCHED_CLS:
@@ -5475,7 +5475,7 @@ static int adjust_ptr_min_max_vals(struct bpf_verifier_env *env,
5475
/* smin_val represents the known value */
5476
if (known && smin_val == 0 && opcode == BPF_ADD)
5477
break;
5478
- /* fall-through */
5479
case PTR_TO_PACKET_END:
5480
case PTR_TO_SOCKET:
5481
case PTR_TO_SOCKET_OR_NULL:
0 commit comments