Lines Matching refs:n_secs
41 static secno hpfs_bmap(struct inode *inode, unsigned file_secno, unsigned *n_secs)
50 *n_secs = hpfs_inode->i_n_secs - n;
59 *n_secs = hpfs_inode->i_n_secs - n;
62 *n_secs = 1;
83 unsigned n_secs;
85 s = hpfs_bmap(inode, iblock, &n_secs);
87 if (bh_result->b_size >> 9 < n_secs)
88 n_secs = bh_result->b_size >> 9;
89 n_secs = hpfs_search_hotfix_map_for_range(inode->i_sb, s, n_secs);
90 if (unlikely(!n_secs)) {
92 n_secs = 1;
95 bh_result->b_size = n_secs << 9;
125 unsigned int n_secs;
135 s = hpfs_bmap(inode, offset >> blkbits, &n_secs);
137 n_secs = hpfs_search_hotfix_map_for_range(sb, s,
138 min_t(loff_t, n_secs, length));
139 if (unlikely(!n_secs)) {
141 n_secs = 1;
146 iomap->length = (u64)n_secs << blkbits;