Searched defs:aux (Results 1 - 6 of 6) sorted by relevance

/kernel/power/
H A Dwakelock.c101 struct wakelock *wl, *aux; local
108 list_for_each_entry_safe_reverse(wl, aux, &wakelocks_lru_list, lru) {
H A Dsnapshot.c499 struct mem_extent *ext, *aux; local
501 list_for_each_entry_safe(ext, aux, list, hook) {
521 struct mem_extent *ext, *cur, *aux; local
553 list_for_each_entry_safe_continue(cur, aux, list, hook) {
/kernel/bpf/
H A Dsyscall.c347 prog->aux->ops = tl->ops;
348 prog->aux->prog_type = type;
382 BUG_ON(!prog->aux->ops->get_func_proto);
384 fn = prog->aux->ops->get_func_proto(insn->imm);
395 static void free_used_maps(struct bpf_prog_aux *aux) argument
399 for (i = 0; i < aux->used_map_cnt; i++)
400 bpf_map_put(aux->used_maps[i]);
402 kfree(aux->used_maps);
407 if (atomic_dec_and_test(&prog->aux->refcnt)) {
408 free_used_maps(prog->aux);
[all...]
H A Dcore.c75 struct bpf_prog_aux *aux; local
83 aux = kzalloc(sizeof(*aux), GFP_KERNEL | gfp_extra_flags);
84 if (aux == NULL) {
90 fp->aux = aux;
114 /* We keep fp->aux from fp_old around in the new
117 fp_old->aux = NULL;
127 kfree(fp->aux);
642 struct bpf_prog_aux *aux; local
651 struct bpf_prog_aux *aux = fp->aux; local
[all...]
/kernel/
H A Daudit.h139 struct audit_aux_data *aux; member in struct:audit_context
H A Dauditsc.c102 /* Number of target pids per aux struct. */
196 * References in it _are_ dropped - at the same time we free/drop aux stuff.
905 struct audit_aux_data *aux; local
907 while ((aux = context->aux)) {
908 context->aux = aux->next;
909 kfree(aux);
911 while ((aux = context->aux_pids)) {
912 context->aux_pids = aux
1349 struct audit_aux_data *aux; local
[all...]

Completed in 68 milliseconds