From: Brian Behlendorf Date: Mon, 2 May 2011 21:04:19 +0000 (-0700) Subject: Fully update inode when created X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=commitdiff_plain;h=5f35b190071048f25d66db81ce9763ecd0c1760e;hp=5f35b190071048f25d66db81ce9763ecd0c1760e;p=zfs.git Fully update inode when created When a new znode/inode pair is created both the znode and the inode should be immediately updated to the correct values. This was done for the znode and for most of the values in the inode, but not all of them. This normally wasn't a problem because most subsequent operations would cause the inode to be immediately updated. This change ensures the inode is now fully updated before it is inserted in to the inode hash. Closes #116 Closes #146 Closes #164 ---