Home
last modified time | relevance | path

Searched refs:nblocks (Results 1 – 25 of 72) sorted by relevance

123

/Linux-v5.15/init/
Ddo_mounts_rd.c66 int nblocks = -1; in identify_ramdisk_image() local
96 nblocks = 0; in identify_ramdisk_image()
106 nblocks = (ntohl(romfsb->size)+BLOCK_SIZE-1)>>BLOCK_SIZE_BITS; in identify_ramdisk_image()
114 nblocks = (cramfsb->size + BLOCK_SIZE - 1) >> BLOCK_SIZE_BITS; in identify_ramdisk_image()
123 nblocks = (le64_to_cpu(squashfsb->bytes_used) + BLOCK_SIZE - 1) in identify_ramdisk_image()
138 nblocks = (cramfsb->size + BLOCK_SIZE - 1) >> BLOCK_SIZE_BITS; in identify_ramdisk_image()
154 nblocks = minixsb->s_nzones << minixsb->s_log_zone_size; in identify_ramdisk_image()
164 nblocks = n; in identify_ramdisk_image()
174 return nblocks; in identify_ramdisk_image()
190 int nblocks, i; in rd_load_image() local
[all …]
/Linux-v5.15/fs/jfs/
Djfs_dmap.c65 int nblocks);
72 static int dbAllocAny(struct bmap * bmp, s64 nblocks, int l2nb, s64 * results);
74 int nblocks);
76 int nblocks,
79 int nblocks);
80 static int dbAllocDmapLev(struct bmap * bmp, struct dmap * dp, int nblocks,
83 static int dbAllocAG(struct bmap * bmp, int agno, s64 nblocks, int l2nb,
85 static int dbAllocCtl(struct bmap * bmp, s64 nblocks, int l2nb, s64 blkno,
87 static int dbExtend(struct inode *ip, s64 blkno, s64 nblocks, s64 addnblocks);
92 int nblocks);
[all …]
Djfs_discard.c32 void jfs_issue_discard(struct inode *ip, u64 blkno, u64 nblocks) in jfs_issue_discard() argument
37 r = sb_issue_discard(sb, blkno, nblocks, GFP_NOFS, 0); in jfs_issue_discard()
41 (unsigned long long)nblocks, r); in jfs_issue_discard()
46 (unsigned long long)nblocks, r); in jfs_issue_discard()
Djfs_dmap.h148 __le32 nblocks; /* 4: num blks covered by this dmap */ member
284 extern int dbFree(struct inode *ipbmap, s64 blkno, s64 nblocks);
287 int free, s64 blkno, s64 nblocks, struct tblock * tblk);
291 extern int dbAlloc(struct inode *ipbmap, s64 hint, s64 nblocks, s64 * results);
294 s64 blkno, s64 nblocks, s64 addnblocks, s64 * results);
297 extern int dbAllocBottomUp(struct inode *ip, s64 blkno, s64 nblocks);
298 extern int dbExtendFS(struct inode *ipbmap, s64 blkno, s64 nblocks);
Dresize.c62 s64 XAddress, XSize, nblocks, xoff, xaddr, t64; in jfs_extendfs() local
314 nblocks = min(t64 - mapSize, XSize); in jfs_extendfs()
323 if ((rc = dbExtendFS(ipbmap, XAddress, nblocks))) in jfs_extendfs()
333 XSize -= nblocks; in jfs_extendfs()
383 xlen = min(xlen, (int) nblocks) & ~(sbi->nbperpage - 1); in jfs_extendfs()
388 if ((rc = xtAppend(tid, ipbmap, 0, xoff, nblocks, &xlen, &xaddr, 0))) { in jfs_extendfs()
Dxattr.c207 int nblocks; in ea_write() local
225 nblocks = (size + (sb->s_blocksize - 1)) >> sb->s_blocksize_bits; in ea_write()
228 rc = dquot_alloc_block(ip, nblocks); in ea_write()
232 rc = dbAlloc(ip, INOHINT(ip), nblocks, &blkno); in ea_write()
235 dquot_free_block(ip, nblocks); in ea_write()
246 for (i = 0; i < nblocks; i += sbi->nbperpage) { in ea_write()
289 DXDlength(ea, nblocks); in ea_write()
300 dquot_free_block(ip, nblocks); in ea_write()
302 dbFree(ip, blkno, nblocks); in ea_write()
356 int nblocks; in ea_read() local
[all …]
Djfs_extent.c496 extBalloc(struct inode *ip, s64 hint, s64 * nblocks, s64 * blkno) in extBalloc() argument
512 if (*nblocks >= max && *nblocks > nbperpage) in extBalloc()
515 nb = nblks = *nblocks; in extBalloc()
533 *nblocks = nb; in extBalloc()
/Linux-v5.15/arch/x86/crypto/
Dsm4_aesni_avx_glue.c23 const u8 *src, int nblocks);
25 const u8 *src, int nblocks);
61 unsigned int nblocks = min(nbytes >> 4, 4u); in ecb_do_crypt() local
62 sm4_aesni_avx_crypt4(rkey, dst, src, nblocks); in ecb_do_crypt()
63 dst += nblocks * SM4_BLOCK_SIZE; in ecb_do_crypt()
64 src += nblocks * SM4_BLOCK_SIZE; in ecb_do_crypt()
65 nbytes -= nblocks * SM4_BLOCK_SIZE; in ecb_do_crypt()
153 unsigned int nblocks = min(nbytes >> 4, 8u); in sm4_avx_cbc_decrypt() local
157 src, nblocks); in sm4_avx_cbc_decrypt()
159 src += ((int)nblocks - 2) * SM4_BLOCK_SIZE; in sm4_avx_cbc_decrypt()
[all …]
Dblake2s-glue.c22 const u8 *block, const size_t nblocks,
25 const u8 *block, const size_t nblocks,
32 const u8 *block, size_t nblocks, in blake2s_compress_arch() argument
39 blake2s_compress_generic(state, block, nblocks, inc); in blake2s_compress_arch()
44 const size_t blocks = min_t(size_t, nblocks, in blake2s_compress_arch()
55 nblocks -= blocks; in blake2s_compress_arch()
57 } while (nblocks); in blake2s_compress_arch()
/Linux-v5.15/arch/arm/crypto/
Dblake2b-neon-glue.c19 const u8 *block, size_t nblocks, u32 inc);
22 const u8 *block, size_t nblocks, u32 inc) in blake2b_compress_arch() argument
25 blake2b_compress_generic(state, block, nblocks, inc); in blake2b_compress_arch()
30 const size_t blocks = min_t(size_t, nblocks, in blake2b_compress_arch()
37 nblocks -= blocks; in blake2b_compress_arch()
39 } while (nblocks); in blake2b_compress_arch()
/Linux-v5.15/include/crypto/internal/
Dblake2s.h15 size_t nblocks, const u32 inc);
18 size_t nblocks, const u32 inc);
28 const u8 *block, size_t nblocks, u32 inc);
48 const size_t nblocks = DIV_ROUND_UP(inlen, BLAKE2S_BLOCK_SIZE); in __blake2s_update() local
50 (*compress)(state, in, nblocks - 1, BLAKE2S_BLOCK_SIZE); in __blake2s_update()
51 in += BLAKE2S_BLOCK_SIZE * (nblocks - 1); in __blake2s_update()
52 inlen -= BLAKE2S_BLOCK_SIZE * (nblocks - 1); in __blake2s_update()
Dblake2b.h15 const u8 *block, size_t nblocks, u32 inc);
23 const u8 *block, size_t nblocks, u32 inc);
41 const size_t nblocks = DIV_ROUND_UP(inlen, BLAKE2B_BLOCK_SIZE); in __blake2b_update() local
43 (*compress)(state, in, nblocks - 1, BLAKE2B_BLOCK_SIZE); in __blake2b_update()
44 in += BLAKE2B_BLOCK_SIZE * (nblocks - 1); in __blake2b_update()
45 inlen -= BLAKE2B_BLOCK_SIZE * (nblocks - 1); in __blake2b_update()
/Linux-v5.15/fs/reiserfs/
Dxattr.h75 size_t nblocks = JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb); in reiserfs_xattr_jcreate_nblocks() local
78 nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb); in reiserfs_xattr_jcreate_nblocks()
80 nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb); in reiserfs_xattr_jcreate_nblocks()
83 return nblocks; in reiserfs_xattr_jcreate_nblocks()
Dxattr_acl.c369 int nblocks = 0; in reiserfs_cache_default_acl() local
383 nblocks = reiserfs_xattr_jcreate_nblocks(inode); in reiserfs_cache_default_acl()
384 nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb); in reiserfs_cache_default_acl()
389 nblocks += reiserfs_xattr_nblocks(inode, size) * 4; in reiserfs_cache_default_acl()
393 return nblocks; in reiserfs_cache_default_acl()
/Linux-v5.15/lib/crypto/
Dblake2s-generic.c41 size_t nblocks, const u32 inc) in blake2s_compress_generic() argument
48 (nblocks > 1 && inc != BLAKE2S_BLOCK_SIZE)); in blake2s_compress_generic()
50 while (nblocks > 0) { in blake2s_compress_generic()
103 --nblocks; in blake2s_compress_generic()
/Linux-v5.15/fs/ext4/
Dext4_jbd2.h305 #define ext4_journal_start_sb(sb, type, nblocks) \ argument
306 __ext4_journal_start_sb((sb), __LINE__, (type), (nblocks), 0, \
309 #define ext4_journal_start(inode, type, nblocks) \ argument
310 __ext4_journal_start((inode), __LINE__, (type), (nblocks), 0, \
344 static inline int ext4_journal_extend(handle_t *handle, int nblocks, int revoke) in ext4_journal_extend() argument
347 return jbd2_journal_extend(handle, nblocks, revoke); in ext4_journal_extend()
351 static inline int ext4_journal_restart(handle_t *handle, int nblocks, in ext4_journal_restart() argument
355 return jbd2__journal_restart(handle, nblocks, revoke, GFP_NOFS); in ext4_journal_restart()
/Linux-v5.15/fs/nilfs2/
Dsufile.c517 unsigned long nblocks, time64_t modtime) in nilfs_sufile_set_segment_usage() argument
534 su->su_nblocks = cpu_to_le32(nblocks); in nilfs_sufile_set_segment_usage()
1022 sector_t start = 0, nblocks = 0; in nilfs_sufile_trim_fs() local
1078 if (!nblocks) { in nilfs_sufile_trim_fs()
1081 nblocks = seg_end - seg_start + 1; in nilfs_sufile_trim_fs()
1085 if (start + nblocks == seg_start) { in nilfs_sufile_trim_fs()
1087 nblocks += seg_end - seg_start + 1; in nilfs_sufile_trim_fs()
1093 nblocks -= start_block - start; in nilfs_sufile_trim_fs()
1097 if (nblocks >= minlen) { in nilfs_sufile_trim_fs()
1102 nblocks * sects_per_block, in nilfs_sufile_trim_fs()
[all …]
Dsegbuf.h34 unsigned long nblocks; member
131 return segbuf->sb_sum.nblocks == segbuf->sb_sum.nsumblk; in nilfs_segbuf_empty()
139 segbuf->sb_sum.nblocks++; in nilfs_segbuf_add_segsum_buffer()
148 segbuf->sb_sum.nblocks++; in nilfs_segbuf_add_payload_buffer()
Dthe_nilfs.c656 sector_t start = 0, nblocks = 0; in nilfs_discard_segments() local
666 if (!nblocks) { in nilfs_discard_segments()
668 nblocks = seg_end - seg_start + 1; in nilfs_discard_segments()
669 } else if (start + nblocks == seg_start) { in nilfs_discard_segments()
670 nblocks += seg_end - seg_start + 1; in nilfs_discard_segments()
674 nblocks * sects_per_block, in nilfs_discard_segments()
678 nblocks = 0; in nilfs_discard_segments()
681 if (nblocks) in nilfs_discard_segments()
684 nblocks * sects_per_block, in nilfs_discard_segments()
689 int nilfs_count_free_blocks(struct the_nilfs *nilfs, sector_t *nblocks) in nilfs_count_free_blocks() argument
[all …]
/Linux-v5.15/block/partitions/
Dsysv68.c44 __be32 nblocks; /* slice size (in blocks) */ member
83 if (be32_to_cpu(slice->nblocks)) { in sysv68_partition()
86 be32_to_cpu(slice->nblocks)); in sysv68_partition()
/Linux-v5.15/fs/
Dmpage.c174 unsigned nblocks; in do_mpage_readpage() local
199 nblocks = map_bh->b_size >> blkbits; in do_mpage_readpage()
202 block_in_file < (args->first_logical_block + nblocks)) { in do_mpage_readpage()
204 unsigned last = nblocks - map_offset; in do_mpage_readpage()
262 nblocks = map_bh->b_size >> blkbits; in do_mpage_readpage()
264 if (relative_block == nblocks) { in do_mpage_readpage()
319 nblocks = map_bh->b_size >> blkbits; in do_mpage_readpage()
320 if ((buffer_boundary(map_bh) && relative_block == nblocks) || in do_mpage_readpage()
/Linux-v5.15/fs/jbd2/
Dtransaction.c479 static handle_t *new_handle(int nblocks) in new_handle() argument
484 handle->h_total_credits = nblocks; in new_handle()
490 handle_t *jbd2__journal_start(journal_t *journal, int nblocks, int rsv_blocks, in jbd2__journal_start() argument
506 nblocks += DIV_ROUND_UP(revoke_records, in jbd2__journal_start()
508 handle = new_handle(nblocks); in jbd2__journal_start()
536 line_no, nblocks); in jbd2__journal_start()
562 handle_t *jbd2_journal_start(journal_t *journal, int nblocks) in jbd2_journal_start() argument
564 return jbd2__journal_start(journal, nblocks, 0, 0, GFP_NOFS, 0, 0); in jbd2_journal_start()
665 int jbd2_journal_extend(handle_t *handle, int nblocks, int revoke_records) in jbd2_journal_extend() argument
683 "transaction not running\n", handle, nblocks); in jbd2_journal_extend()
[all …]
/Linux-v5.15/drivers/media/usb/pwc/
Dpwc-dec23.c594 int compression_index, nblocks; in DecompressBand23() local
605 nblocks = compressed_image_width / 4; in DecompressBand23()
611 while (nblocks) { in DecompressBand23()
615 nblocks--; in DecompressBand23()
619 nblocks = compressed_image_width / 8; in DecompressBand23()
625 while (nblocks) { in DecompressBand23()
634 nblocks -= 2; in DecompressBand23()
/Linux-v5.15/drivers/s390/char/
Dtape_char.c193 int nblocks; in tapechar_write() local
206 nblocks = count / block_size; in tapechar_write()
209 nblocks = 1; in tapechar_write()
217 DBF_EVENT(6, "TCHAR:nblocks: %x\n", nblocks); in tapechar_write()
224 for (i = 0; i < nblocks; i++) { in tapechar_write()
/Linux-v5.15/drivers/misc/
Dsram.c179 unsigned int nblocks, exports = 0; in sram_reserve_regions() local
191 nblocks = (np) ? of_get_available_child_count(np) + 1 : 1; in sram_reserve_regions()
192 rblocks = kcalloc(nblocks, sizeof(*rblocks), GFP_KERNEL); in sram_reserve_regions()
265 rblocks[nblocks - 1].start = size; in sram_reserve_regions()
266 rblocks[nblocks - 1].size = 0; in sram_reserve_regions()
267 list_add_tail(&rblocks[nblocks - 1].list, &reserve_list); in sram_reserve_regions()

123