Home
last modified time | relevance | path

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

/linux-6.1.9/drivers/md/persistent-data/
Ddm-array.c174 const void *value, unsigned new_nr) in fill_ablock() argument
179 BUG_ON(new_nr > le32_to_cpu(ab->max_entries)); in fill_ablock()
180 BUG_ON(new_nr < le32_to_cpu(ab->nr_entries)); in fill_ablock()
183 delta = new_nr - nr_entries; in fill_ablock()
186 for (i = nr_entries; i < new_nr; i++) in fill_ablock()
188 ab->nr_entries = cpu_to_le32(new_nr); in fill_ablock()
197 unsigned new_nr) in trim_ablock() argument
202 BUG_ON(new_nr > le32_to_cpu(ab->max_entries)); in trim_ablock()
203 BUG_ON(new_nr > le32_to_cpu(ab->nr_entries)); in trim_ablock()
206 delta = nr_entries - new_nr; in trim_ablock()
[all …]
/linux-6.1.9/fs/
Daio.c662 unsigned i, new_nr; in ioctx_add_table() local
687 new_nr = (table ? table->nr : 1) * 4; in ioctx_add_table()
690 table = kzalloc(struct_size(table, table, new_nr), GFP_KERNEL); in ioctx_add_table()
694 table->nr = new_nr; in ioctx_add_table()
/linux-6.1.9/mm/
Dvmscan.c784 long new_nr; in do_shrink_slab() local
867 new_nr = add_nr_deferred(next_deferred, shrinker, shrinkctl); in do_shrink_slab()
869 trace_mm_shrink_slab_end(shrinker, shrinkctl->nid, freed, nr, new_nr, total_scan); in do_shrink_slab()