[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <352f691c0c2727703616fe5ef1c3aedce31b452e.1465070119.git.salah.triki@acm.org>
Date: Sat, 4 Jun 2016 20:57:03 +0100
From: Salah Triki <salah.triki@....org>
To: akpm@...ux-foundation.org
Cc: Salah Triki <salah.triki@....org>, linux-kernel@...r.kernel.org
Subject: [PATCH V2 2/3] fs: befs: Insert NULL inode to dentry
As VFS expects, lookup should insert NULL inode to dentry when the named
inode does not exist.
Signed-off-by: Salah Triki <salah.triki@....org>
---
fs/befs/linuxvfs.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index e0bd6c7..91740dd 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -184,6 +184,7 @@ befs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
if (ret == BEFS_BT_NOT_FOUND) {
befs_debug(sb, "<--- %s %pd not found", __func__, dentry);
+ d_add(dentry, NULL);
return NULL;
} else if (ret != BEFS_OK || offset == 0) {
--
1.9.1
Powered by blists - more mailing lists