fuse: fix uninitialized field in fuse_inode
authorJohn Muir <muirj@nortel.com>
Thu, 29 Nov 2007 00:22:02 +0000 (16:22 -0800)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Thu, 29 Nov 2007 17:24:54 +0000 (09:24 -0800)
commitfbee36b92abc965d3fc2862aa60fd0dfcf779d0b
tree5d59ccb2236110aeb8fddb75c94fc52beaf79e3b
parentd0186b25e65d4d786727a03044b8aafe2ba118ee
fuse: fix uninitialized field in fuse_inode

I found problems accessing (executing) previously existing files, until
I did chmod on them (or setattr).

If the fi->attr_version is not initialized, then it could be
larger than fc->attr_version until a setattr is executed, and as a
result the inode attributes would never be set.

Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/fuse/inode.c