Lines Matching defs:i_disksize
1054 * i_disksize keeps track of what the inode size is ON DISK, not
1057 * set i_disksize to 0 until the truncate is actually under way.
1059 * The intent is that i_disksize always represents the blocks which
1061 * on orphans if we crash during truncate. We actually write i_disksize
1064 * The only time when i_disksize and i_size may be different is when
1065 * a truncate is in progress. The only things which change i_disksize
1068 loff_t i_disksize;
3365 /* Update i_disksize. Requires i_rwsem to avoid races with truncate */
3371 if (newsize > EXT4_I(inode)->i_disksize)
3372 WRITE_ONCE(EXT4_I(inode)->i_disksize, newsize);
3376 /* Update i_size, i_disksize. Requires i_rwsem to avoid races with truncate */
3385 if (newsize > EXT4_I(inode)->i_disksize) {