Lines Matching defs:i_disksize
1049 * i_disksize keeps track of what the inode size is ON DISK, not
1052 * set i_disksize to 0 until the truncate is actually under way.
1054 * The intent is that i_disksize always represents the blocks which
1056 * on orphans if we crash during truncate. We actually write i_disksize
1059 * The only time when i_disksize and i_size may be different is when
1060 * a truncate is in progress. The only things which change i_disksize
1063 loff_t i_disksize;
3264 /* Update i_disksize. Requires i_mutex to avoid races with truncate */
3270 if (newsize > EXT4_I(inode)->i_disksize)
3271 WRITE_ONCE(EXT4_I(inode)->i_disksize, newsize);
3275 /* Update i_size, i_disksize. Requires i_mutex to avoid races with truncate */
3284 if (newsize > EXT4_I(inode)->i_disksize) {