commit 0cc3ec3d1add90d860786382dc5abe7ca94d242e
Author: Ulisses Furquim <[EMAIL PROTECTED]>
Date:   Fri Feb 8 04:18:16 2008 -0800

    inotify: fix check for one-shot watches before destroying them
    
    patch ac74c00e499ed276a965e5b5600667d5dc04a84a in mainline.
    
    As the IN_ONESHOT bit is never set when an event is sent we must check it
    in the watch's mask and not in the event's mask.
    
    Signed-off-by: Ulisses Furquim <[EMAIL PROTECTED]>
    Reported-by: "Clem Taylor" <[EMAIL PROTECTED]>
    Tested-by: "Clem Taylor" <[EMAIL PROTECTED]>
    Cc: Amy Griffis <[EMAIL PROTECTED]>
    Cc: Robert Love <[EMAIL PROTECTED]>
    Cc: John McCutchan <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>

diff --git a/fs/inotify_user.c b/fs/inotify_user.c
index 5e00933..7253ffd 100644
--- a/fs/inotify_user.c
+++ b/fs/inotify_user.c
@@ -269,7 +269,7 @@ static void inotify_dev_queue_event(struct inotify_watch 
*w, u32 wd, u32 mask,
        /* we can safely put the watch as we don't reference it while
         * generating the event
         */
-       if (mask & IN_IGNORED || mask & IN_ONESHOT)
+       if (mask & IN_IGNORED || w->mask & IN_ONESHOT)
                put_inotify_watch(w); /* final put */
 
        /* coalescing: drop this event if it is a dupe of the previous */
_______________________________________________
unionfs-cvs mailing list: http://unionfs.filesystems.org/
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs-cvs

Reply via email to