You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qubes-linux-kernel/patches.suse/export-release_open_intent

24 lines
650 B

From: Jeff Mahoney <jeffm@suse.com>
Subject: Export release_open_intent for NFS branches with aufs
Patch-mainline: never
aufs requires a way to release an open intent when handling an error
condition after using NFSv4's atomic open. It was using put_filp,
but release_open_intent is more appropriate.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
---
fs/namei.c | 1 +
1 file changed, 1 insertion(+)
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -562,6 +562,7 @@ void release_open_intent(struct nameidat
fput(file);
}
}
+EXPORT_SYMBOL_GPL(release_open_intent);
static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
{