View | Details | Raw Unified | Return to bug 206530 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/fs/ext2fs/ext2_alloc.c (-1 / +1 lines)
Lines 393-398 ext2_valloc(struct vnode *pvp, int mode, struct ucred *cred, struct vnode **vpp) Link Here
393
	 * Linux doesn't read the old inode in when it is allocating a
393
	 * Linux doesn't read the old inode in when it is allocating a
394
	 * new one. I will set at least i_size and i_blocks to zero.
394
	 * new one. I will set at least i_size and i_blocks to zero.
395
	 */
395
	 */
396
	ip->i_flag = 0;
396
	ip->i_size = 0;
397
	ip->i_size = 0;
397
	ip->i_blocks = 0;
398
	ip->i_blocks = 0;
398
	ip->i_mode = 0;
399
	ip->i_mode = 0;
399
- 

Return to bug 206530