Home
last modified time | relevance | path

Searched refs:ROMBSIZE (Results 1 – 3 of 3) sorted by relevance

/linux-6.12.1/fs/romfs/
Dstorage.c112 offset = pos & (ROMBSIZE - 1); in romfs_blk_read()
113 segment = min_t(size_t, buflen, ROMBSIZE - offset); in romfs_blk_read()
141 offset = pos & (ROMBSIZE - 1); in romfs_blk_strnlen()
142 segment = min_t(size_t, limit, ROMBSIZE - offset); in romfs_blk_strnlen()
173 offset = pos & (ROMBSIZE - 1); in romfs_blk_strcmp()
174 segment = min_t(size_t, size, ROMBSIZE - offset); in romfs_blk_strcmp()
183 if (matched && size == 0 && offset + segment < ROMBSIZE) { in romfs_blk_strcmp()
197 BUG_ON((pos & (ROMBSIZE - 1)) != 0); in romfs_blk_strcmp()
Dsuper.c406 buf->f_bsize = ROMBSIZE; in romfs_statfs()
409 (romfs_maxsize(dentry->d_sb) + ROMBSIZE - 1) >> ROMBSBITS; in romfs_statfs()
461 sb_set_blocksize(sb, ROMBSIZE); in romfs_fill_super()
463 sb->s_blocksize = ROMBSIZE; in romfs_fill_super()
464 sb->s_blocksize_bits = blksize_bits(ROMBSIZE); in romfs_fill_super()
/linux-6.12.1/include/uapi/linux/
Dromfs_fs.h10 #define ROMBSIZE BLOCK_SIZE macro
12 #define ROMBMASK (ROMBSIZE-1)