]> nv-tegra.nvidia Code Review - linux-2.6.git/blobdiff - fs/notify/dnotify/dnotify.c
dnotify: do not bother to lock entry->lock when reading mask
[linux-2.6.git] / fs / notify / dnotify / dnotify.c
index 5134e898f60da0cd9d445ae9c25d146662a06260..ec459b6e8c641302515dc244f0ecce62f5404694 100644 (file)
@@ -153,9 +153,8 @@ static bool dnotify_should_send_event(struct fsnotify_group *group,
        if (!entry)
                return false;
 
-       spin_lock(&entry->lock);
        send = (mask & entry->mask);
-       spin_unlock(&entry->lock);
+
        fsnotify_put_mark(entry); /* matches fsnotify_find_mark_entry */
 
        return send;