Linus,

Real simple, basic cleanup.

Please, apply.

        Robert Love


Signed-off-by: Robert Love <[EMAIL PROTECTED]>

 fs/inotify.c          |    9 +++------
 include/linux/sched.h |    2 +-
 kernel/user.c         |    2 +-
 3 files changed, 5 insertions(+), 8 deletions(-)

diff -urN linux-inotify/fs/inotify.c linux/fs/inotify.c
--- linux-inotify/fs/inotify.c  2005-07-13 11:26:02.000000000 -0400
+++ linux/fs/inotify.c  2005-07-13 11:41:25.000000000 -0400
@@ -29,8 +29,6 @@
 #include <linux/mount.h>
 #include <linux/namei.h>
 #include <linux/poll.h>
-#include <linux/device.h>
-#include <linux/miscdevice.h>
 #include <linux/init.h>
 #include <linux/list.h>
 #include <linux/writeback.h>
@@ -936,7 +934,7 @@
 
        dev = filp->private_data;
 
-       ret = find_inode ((const char __user*)path, &nd);
+       ret = find_inode((const char __user*) path, &nd);
        if (ret)
                goto fput_and_out;
 
@@ -993,8 +991,9 @@
        if (!filp)
                return -EBADF;
        dev = filp->private_data;
-       ret = inotify_ignore (dev, wd);
+       ret = inotify_ignore(dev, wd);
        fput(filp);
+
        return ret;
 }
 
@@ -1034,8 +1033,6 @@
                                         sizeof(struct inotify_kernel_event),
                                         0, SLAB_PANIC, NULL, NULL);
 
-       printk(KERN_INFO "inotify syscall\n");
-
        return 0;
 }
 


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to