VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Robert Love <rml@novell.com> 2005-07-12 17:06:03 -0400 committer: Linus Torvalds <torvalds@g5.osdl.org> 2005-07-12 20:38:38 -0700 commit: 0eeca28300df110bd6ed54b31193c83b87921443 parent: bd4c625c061c2a38568d0add3478f59172455159
Commit Summary:
[PATCH] inotify
Diffstat:
1 file changed, 2 insertions, 0 deletions
diff --git a/fs/file_table.c b/fs/file_table.c
index fa7849fae134..1d3de78e6bc9 100644
--- a/fs/file_table.c
+++ b/fs/file_table.c
@@ -16,6 +16,7 @@
 #include <linux/eventpoll.h>
 #include <linux/mount.h>
 #include <linux/cdev.h>
+#include <linux/fsnotify.h>
 
 /* sysctl tunables... */
 struct files_stat_struct files_stat = {
@@ -126,6 +127,8 @@ void fastcall __fput(struct file *file)
 	struct inode *inode = dentry->d_inode;
 
 	might_sleep();
+
+	fsnotify_close(file);
 	/*
 	 * The function eventpoll_release() should be the first called
 	 * in the file cleanup chain.