Lines Matching defs:rec
163 struct datarec *rec;
168 rec = bpf_map_lookup_elem(&cpumap_enqueue_cnt, &to_cpu);
169 if (!rec)
171 rec->processed += ctx->processed;
172 rec->dropped += ctx->drops;
176 rec->info += 1;
197 struct datarec *rec;
200 rec = bpf_map_lookup_elem(&cpumap_kthread_cnt, &key);
201 if (!rec)
203 rec->processed += ctx->processed;
204 rec->dropped += ctx->drops;
208 rec->info++;
236 struct datarec *rec;
239 rec = bpf_map_lookup_elem(&devmap_xmit_cnt, &key);
240 if (!rec)
242 rec->processed += ctx->sent;
243 rec->dropped += ctx->drops;
246 rec->info += 1;
250 rec->err++;
254 rec->err++;