Lines Matching defs:count

74 /* maximum retry count for injected failure */
157 unsigned char compress_ext_cnt; /* extension count */
286 /* default discard granularity of inner discard thread, unit: block count */
327 unsigned short ref; /* reference count */
332 unsigned short bio_ref; /* bio reference count */
386 atomic_t discard_cmd_cnt; /* # of cached cmd count */
547 #define DEFAULT_RETRY_IO_COUNT 8 /* maximum retry read IO count */
552 /* maximum retry quota flush count */
555 #define F2FS_LINK_MAX 0xffffffff /* maximum link count per file */
882 unsigned short *free_nid_count; /* free nid count of NAT block */
1206 unsigned int victim_count; /* victim count in rb-tree */
1208 unsigned int max_candidate_count; /* max candidate count */
1325 unsigned int cluster_size; /* page count in cluster */
1345 atomic_t pending_pages; /* in-flight compressed page count */
1353 unsigned int cluster_size; /* page count in cluster */
1364 atomic_t pending_pages; /* in-flight compressed page count */
1365 atomic_t verity_pages; /* in-flight page count for verity */
1450 atomic_t total_ext_tree; /* extent tree count */
1452 atomic_t total_zombie_tree; /* extent zombie tree count */
1453 atomic_t total_ext_node; /* extent info count */
1467 unsigned int total_sections; /* total section count */
1468 unsigned int total_node_count; /* total node block count */
1469 unsigned int total_valid_node_count; /* valid node block count */
1493 atomic_t wb_sync_req[META]; /* count # of WB_SYNC threads */
1495 /* valid inode count */
2008 struct inode *inode, blkcnt_t *count)
2014 ret = dquot_reserve_block(inode, *count);
2020 release = *count;
2025 * let's increase this in prior to actual block count change in order
2028 percpu_counter_add(&sbi->alloc_valid_block_count, (*count));
2031 sbi->total_valid_block_count += (block_t)(*count);
2050 if (diff > *count)
2051 diff = *count;
2052 *count -= diff;
2055 if (!*count) {
2066 f2fs_i_blocks_write(inode, *count, true, true);
2092 block_t count)
2094 blkcnt_t sectors = count << F2FS_LOG_SECTORS_PER_BLOCK;
2097 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
2098 sbi->total_valid_block_count -= (block_t)count;
2102 sbi->current_reserved_blocks + count);
2112 f2fs_i_blocks_write(inode, count, false, true);
2759 unsigned int count)
2761 F2FS_I(inode)->i_gc_failures[GC_FAILURE_PIN] = count;
3187 void f2fs_truncate_data_blocks_range(struct dnode_of_data *dn, int count);
3497 int f2fs_reserve_new_blocks(struct dnode_of_data *dn, blkcnt_t count);