projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b100997
)
fuse: set i_nlink to sane value after mount
author
Miklos Szeredi
<mszeredi@suse.cz>
Wed, 17 Oct 2007 06:31:02 +0000
(23:31 -0700)
committer
Linus Torvalds
<torvalds@woody.linux-foundation.org>
Wed, 17 Oct 2007 15:43:04 +0000
(08:43 -0700)
Aufs seems to depend on a positive i_nlink value. So fill in a dummy but sane
value for the root inode at mount time.
The inode attributes are refreshed with the correct values at the first
opportunity.
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
patch
|
blob
|
blame
|
history
diff --git
a/fs/fuse/inode.c
b/fs/fuse/inode.c
index e8d360add50a82dc679b4bfdf128f7ddb732d28b..951e760d5c5a66d5b25bb4c5cd2dfcab23013805 100644
(file)
--- a/
fs/fuse/inode.c
+++ b/
fs/fuse/inode.c
@@
-472,6
+472,7
@@
static struct inode *get_root_inode(struct super_block *sb, unsigned mode)
attr.mode = mode;
attr.ino = FUSE_ROOT_ID;
+ attr.nlink = 1;
return fuse_iget(sb, 1, 0, &attr);
}