diff options
author | David Woodhouse <dwmw2@infradead.org> | 2008-05-01 16:59:24 +0100 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2008-05-01 17:24:28 +0100 |
commit | 1b690b48786229571e590dd22fe01ecc22a8746b (patch) | |
tree | 6843a20b0d898f9c39ba4480a9ee58b32eb0e467 /fs/jffs2/os-linux.h | |
parent | 590fe34c47cb5c2d836ac76fabc5f160bf31a3f1 (diff) | |
download | op-kernel-dev-1b690b48786229571e590dd22fe01ecc22a8746b.zip op-kernel-dev-1b690b48786229571e590dd22fe01ecc22a8746b.tar.gz |
[JFFS2] Invert last argument of jffs2_gc_fetch_inode(), make it boolean.
We don't actually care about nlink; we only care whether the inode in
question is unlinked or not.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/os-linux.h')
-rw-r--r-- | fs/jffs2/os-linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/os-linux.h b/fs/jffs2/os-linux.h index 1b10d25..2cc866c 100644 --- a/fs/jffs2/os-linux.h +++ b/fs/jffs2/os-linux.h @@ -187,7 +187,7 @@ int jffs2_do_fill_super(struct super_block *sb, void *data, int silent); void jffs2_gc_release_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f); struct jffs2_inode_info *jffs2_gc_fetch_inode(struct jffs2_sb_info *c, - int inum, int nlink); + int inum, int unlinked); unsigned char *jffs2_gc_fetch_page(struct jffs2_sb_info *c, struct jffs2_inode_info *f, |