Lines Matching refs:pids
393 static void dbgfs_put_pids(struct pid **pids, int nr_pids) in dbgfs_put_pids() argument
398 put_pid(pids[i]); in dbgfs_put_pids()
411 struct pid **pids; in str_to_pids() local
419 pids = kmalloc_array(nr_ints, sizeof(*pids), GFP_KERNEL); in str_to_pids()
420 if (!pids) in str_to_pids()
424 pids[*nr_pids] = find_get_pid(ints[*nr_pids]); in str_to_pids()
425 if (!pids[*nr_pids]) { in str_to_pids()
426 dbgfs_put_pids(pids, *nr_pids); in str_to_pids()
428 kfree(pids); in str_to_pids()
435 return pids; in str_to_pids()
451 struct pid **pids) in dbgfs_set_targets() argument
468 dbgfs_put_pids(pids, nr_targets); in dbgfs_set_targets()
472 t->pid = pids[i]; in dbgfs_set_targets()