Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ int dump_bpf_percpu_array_map(struct bpf_iter__bpf_map_elem *ctx)
__u32 *key = ctx->key;
void *pptr = ctx->value;
__u32 step;
int i;
__u32 i;

if (key == (void *)0 || pptr == (void *)0)
return 0;
Expand Down
2 changes: 1 addition & 1 deletion tools/testing/selftests/bpf/progs/bpf_qdisc_fifo.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void BPF_PROG(bpf_fifo_reset, struct Qdisc *sch)
{
struct bpf_list_node *node;
struct skb_node *skbn;
int i;
__u32 i;

bpf_for(i, 0, sch->q.qlen) {
struct sk_buff *skb = NULL;
Expand Down
Loading