All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [readdir] Return correct inode number of .. directory
@ 2013-08-08 18:42 Richard Yao
  2013-08-08 18:45 ` Richard Yao
  2013-08-08 19:08 ` Al Viro
  0 siblings, 2 replies; 4+ messages in thread
From: Richard Yao @ 2013-08-08 18:42 UTC (permalink / raw)
  To: Alexander Viro; +Cc: linux-fsdevel, Richard Yao

dir_emit_dotdot() currently passes parent_ino(file->f_path.dentry) to
dir_emit(). Passing a dentry to parent_ino() is wrong. This should have
been parent_ino(file->f_path.dentry->i_ino).

Signed-off-by: Richard Yao <ryao@gentoo.org>
---
 include/linux/fs.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/fs.h b/include/linux/fs.h
index 9818747..7495f2e 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2717,7 +2717,7 @@ static inline bool dir_emit_dot(struct file *file, struct dir_context *ctx)
 static inline bool dir_emit_dotdot(struct file *file, struct dir_context *ctx)
 {
 	return ctx->actor(ctx, "..", 2, ctx->pos,
-			  parent_ino(file->f_path.dentry), DT_DIR) == 0;
+			  parent_ino(file->f_path.dentry->i_ino), DT_DIR) == 0;
 }
 static inline bool dir_emit_dots(struct file *file, struct dir_context *ctx)
 {
-- 
1.8.1.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-08-08 21:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-08 18:42 [PATCH] [readdir] Return correct inode number of .. directory Richard Yao
2013-08-08 18:45 ` Richard Yao
2013-08-08 19:08 ` Al Viro
2013-08-08 21:10   ` Richard Yao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.