Searched refs:MAX_INLINE_DATA (Results 1 - 5 of 5) sorted by relevance

/linux-master/fs/f2fs/
H A Dinline.c23 if (i_size_read(inode) > MAX_INLINE_DATA(inode))
73 zero_user_segment(page, MAX_INLINE_DATA(inode), PAGE_SIZE);
77 MAX_INLINE_DATA(inode));
87 if (from >= MAX_INLINE_DATA(inode))
93 memset(addr + from, 0, MAX_INLINE_DATA(inode) - from);
262 page, 0, MAX_INLINE_DATA(inode));
304 memcpy(dst_addr, src_addr, MAX_INLINE_DATA(inode));
380 /* update i_size to MAX_INLINE_DATA */
381 if (i_size_read(inode) < MAX_INLINE_DATA(inode))
382 f2fs_i_size_write(inode, MAX_INLINE_DATA(inod
[all...]
H A Dinode.c97 __le32 *end = start + MAX_INLINE_DATA(inode) / sizeof(__le32);
H A Df2fs.h480 #define MAX_INLINE_DATA(inode) (sizeof(__le32) * \ macro
486 #define NR_INLINE_DENTRY(inode) (MAX_INLINE_DATA(inode) * BITS_PER_BYTE / \
491 #define INLINE_RESERVED_SIZE(inode) (MAX_INLINE_DATA(inode) - \
H A Ddata.c3361 if (pos + len > MAX_INLINE_DATA(inode))
3381 if (pos + len <= MAX_INLINE_DATA(inode)) {
H A Dfile.c999 if (attr->ia_size > MAX_INLINE_DATA(inode)) {
4598 if (pos + count <= MAX_INLINE_DATA(inode))

Completed in 200 milliseconds