Lines Matching refs:pids
404 static void dbgfs_put_pids(struct pid **pids, int nr_pids) in dbgfs_put_pids() argument
409 put_pid(pids[i]); in dbgfs_put_pids()
422 struct pid **pids; in str_to_pids() local
430 pids = kmalloc_array(nr_ints, sizeof(*pids), GFP_KERNEL); in str_to_pids()
431 if (!pids) in str_to_pids()
435 pids[*nr_pids] = find_get_pid(ints[*nr_pids]); in str_to_pids()
436 if (!pids[*nr_pids]) { in str_to_pids()
437 dbgfs_put_pids(pids, *nr_pids); in str_to_pids()
439 kfree(pids); in str_to_pids()
446 return pids; in str_to_pids()
462 struct pid **pids) in dbgfs_set_targets() argument
479 dbgfs_put_pids(pids, nr_targets); in dbgfs_set_targets()
483 t->pid = pids[i]; in dbgfs_set_targets()