diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2016-01-24 02:25:41 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2016-01-24 02:25:41 +0000 |
commit | e08ad8f06818f2cb3e040c7d06a0e89ff0cf91c9 (patch) | |
tree | 6e9dcc9dfbead7052c9ab00df9f242d0d88d5003 | |
parent | 7b40c6df952b103533041fe72db42cf417a1a572 (diff) |
Notes
-rw-r--r-- | sys/fs/ext2fs/ext2_alloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/fs/ext2fs/ext2_alloc.c b/sys/fs/ext2fs/ext2_alloc.c index 935cb0caedac..12067d2a9b2a 100644 --- a/sys/fs/ext2fs/ext2_alloc.c +++ b/sys/fs/ext2fs/ext2_alloc.c @@ -393,6 +393,7 @@ ext2_valloc(struct vnode *pvp, int mode, struct ucred *cred, struct vnode **vpp) * Linux doesn't read the old inode in when it is allocating a * new one. I will set at least i_size and i_blocks to zero. */ + ip->i_flag = 0; ip->i_size = 0; ip->i_blocks = 0; ip->i_mode = 0; |