Home
last modified time | relevance | path

Searched refs:nr_ints (Results 1 – 1 of 1) sorted by relevance

/Linux-v6.6/mm/damon/
Ddbgfs.c378 static int *str_to_ints(const char *str, ssize_t len, ssize_t *nr_ints) in str_to_ints() argument
385 *nr_ints = 0; in str_to_ints()
389 while (*nr_ints < max_nr_ints && pos < len) { in str_to_ints()
394 array[*nr_ints] = nr; in str_to_ints()
395 *nr_ints += 1; in str_to_ints()
418 ssize_t nr_ints; in str_to_pids() local
423 ints = str_to_ints(str, len, &nr_ints); in str_to_pids()
427 pids = kmalloc_array(nr_ints, sizeof(*pids), GFP_KERNEL); in str_to_pids()
431 for (; *nr_pids < nr_ints; (*nr_pids)++) { in str_to_pids()