Home
last modified time | relevance | path

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

/linux-4.19.296/fs/ocfs2/
Dblockcheck.c325 u64 new_count; in ocfs2_blockcheck_inc_check() local
332 new_count = stats->b_check_count; in ocfs2_blockcheck_inc_check()
335 if (!new_count) in ocfs2_blockcheck_inc_check()
341 u64 new_count; in ocfs2_blockcheck_inc_failure() local
348 new_count = stats->b_failure_count; in ocfs2_blockcheck_inc_failure()
351 if (!new_count) in ocfs2_blockcheck_inc_failure()
357 u64 new_count; in ocfs2_blockcheck_inc_recover() local
364 new_count = stats->b_recover_count; in ocfs2_blockcheck_inc_recover()
367 if (!new_count) in ocfs2_blockcheck_inc_recover()
/linux-4.19.296/lib/
Dparman.c61 unsigned long new_count = parman->limit_count + in parman_enlarge() local
65 err = parman->ops->resize(parman->priv, new_count); in parman_enlarge()
68 parman->limit_count = new_count; in parman_enlarge()
74 unsigned long new_count = parman->limit_count - in parman_shrink() local
78 if (new_count < parman->ops->base_count) in parman_shrink()
80 err = parman->ops->resize(parman->priv, new_count); in parman_shrink()
83 parman->limit_count = new_count; in parman_shrink()
Dtest_parman.c92 static int test_parman_resize(void *priv, unsigned long new_count) in test_parman_resize() argument
99 ITEM_PTRS_SIZE(new_count), GFP_KERNEL); in test_parman_resize()
100 if (new_count == 0) in test_parman_resize()
105 if (new_count > old_count) in test_parman_resize()
107 ITEM_PTRS_SIZE(new_count - old_count)); in test_parman_resize()
109 test_parman->prio_array_limit = new_count; in test_parman_resize()
/linux-4.19.296/fs/omfs/
Dfile.c125 int new_count; in omfs_grow_extent() local
163 &new_block, &new_count); in omfs_grow_extent()
173 entry->e_blocks = cpu_to_be64((u64) new_count); in omfs_grow_extent()
176 be64_to_cpu(~terminator->e_blocks) + (u64) new_count)); in omfs_grow_extent()
/linux-4.19.296/include/linux/
Dparman.h58 int (*resize)(void *priv, unsigned long new_count);
/linux-4.19.296/drivers/char/
Drandom.c993 unsigned int new_count; in add_interrupt_randomness() local
997 new_count = ++fast_pool->count; in add_interrupt_randomness()
999 if (new_count & MIX_INFLIGHT) in add_interrupt_randomness()
1002 if (new_count < 1024 && !time_is_before_jiffies(fast_pool->last + HZ)) in add_interrupt_randomness()