Lines Matching full:update
58 struct update_ctx update; in overwrite() local
60 update.from = bpf_get_smp_processor_id(); in overwrite()
61 update.step = nr_thread; in overwrite()
62 bpf_loop(OP_BATCH, overwrite_htab, &update, 0); in overwrite()
70 struct update_ctx update; in batch_add_batch_del() local
72 update.from = bpf_get_smp_processor_id(); in batch_add_batch_del()
73 update.step = nr_thread; in batch_add_batch_del()
74 bpf_loop(OP_BATCH, overwrite_htab, &update, 0); in batch_add_batch_del()
76 update.from = bpf_get_smp_processor_id(); in batch_add_batch_del()
77 bpf_loop(OP_BATCH, del_htab, &update, 0); in batch_add_batch_del()
86 struct update_ctx update; in add_only() local
88 update.from = bpf_get_smp_processor_id() / 2; in add_only()
89 update.step = nr_thread / 2; in add_only()
90 bpf_loop(OP_BATCH, newwrite_htab, &update, 0); in add_only()
98 struct update_ctx update; in del_only() local
100 update.from = bpf_get_smp_processor_id() / 2; in del_only()
101 update.step = nr_thread / 2; in del_only()
102 bpf_loop(OP_BATCH, del_htab, &update, 0); in del_only()