Home
last modified time | relevance | path

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

/linux-6.15/fs/bcachefs/
H A Djournal_seq_blacklist.c244 unsigned new_nr = dst - bl->start; in bch2_blacklist_entries_gc() local
245 if (new_nr == nr) in bch2_blacklist_entries_gc()
248 bch_verbose(c, "nr blacklist entries was %u, now %u", nr, new_nr); in bch2_blacklist_entries_gc()
251 new_nr ? sb_blacklist_u64s(new_nr) : 0); in bch2_blacklist_entries_gc()
252 BUG_ON(new_nr && !bl); in bch2_blacklist_entries_gc()
H A Dtrace.h210 __field(unsigned, new_nr )
216 __entry->new_nr = c->accounting.k.nr;
222 __entry->new_nr,
/linux-6.15/drivers/md/persistent-data/
H A Ddm-array.c176 const void *value, unsigned int new_nr) in fill_ablock() argument
182 BUG_ON(new_nr < le32_to_cpu(ab->nr_entries)); in fill_ablock()
185 delta = new_nr - nr_entries; in fill_ablock()
188 for (i = nr_entries; i < new_nr; i++) in fill_ablock()
190 ab->nr_entries = cpu_to_le32(new_nr); in fill_ablock()
199 unsigned int new_nr) in trim_ablock() argument
205 BUG_ON(new_nr > le32_to_cpu(ab->nr_entries)); in trim_ablock()
208 delta = nr_entries - new_nr; in trim_ablock()
211 ab->nr_entries = cpu_to_le32(new_nr); in trim_ablock()
718 for (i = 0; i < new_nr; i++) { in populate_ablock_with_values()
[all …]
/linux-6.15/mm/
H A Dshrinker.c379 long new_nr; in do_shrink_slab() local
462 new_nr = add_nr_deferred(next_deferred, shrinker, shrinkctl); in do_shrink_slab()
464 trace_mm_shrink_slab_end(shrinker, shrinkctl->nid, freed, nr, new_nr, total_scan); in do_shrink_slab()
/linux-6.15/fs/
H A Daio.c669 unsigned i, new_nr; in ioctx_add_table() local
693 new_nr = (table ? table->nr : 1) * 4; in ioctx_add_table()
696 table = kzalloc(struct_size(table, table, new_nr), GFP_KERNEL); in ioctx_add_table()
700 table->nr = new_nr; in ioctx_add_table()