OSDN Git Service

fuse: fix stat call on 32 bit platforms
authorPavel Shilovsky <piastry@etersoft.ru>
Thu, 10 May 2012 15:49:38 +0000 (19:49 +0400)
committerMiklos Szeredi <mszeredi@suse.cz>
Mon, 14 May 2012 15:06:42 +0000 (17:06 +0200)
commit45c72cd73c788dd18c8113d4a404d6b4a01decf1
tree49e28ba927e9485b6feadad7b60ec05d9bb6cff7
parent519c6040ce04474bc893774f866fd8d907b20429
fuse: fix stat call on 32 bit platforms

Now we store attr->ino at inode->i_ino, return attr->ino at the
first time and then return inode->i_ino if the attribute timeout
isn't expired. That's wrong on 32 bit platforms because attr->ino
is 64 bit and inode->i_ino is 32 bit in this case.

Fix this by saving 64 bit ino in fuse_inode structure and returning
it every time we call getattr. Also squash attr->ino into inode->i_ino
explicitly.

Signed-off-by: Pavel Shilovsky <piastry@etersoft.ru>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
fs/fuse/dir.c
fs/fuse/fuse_i.h
fs/fuse/inode.c