OSDN Git Service

fs/notify/mark.c: trivial cleanup
authorDavid Cohen <david.a.cohen@linux.intel.com>
Wed, 4 Jun 2014 23:05:42 +0000 (16:05 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 4 Jun 2014 23:53:52 +0000 (16:53 -0700)
Do not initialize private_destroy_list twice.  list_replace_init()
already takes care of initializing private_destroy_list.  We don't need
to initialize it with LIST_HEAD() beforehand.

Signed-off-by: David Cohen <david.a.cohen@linux.intel.com>
Cc: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/notify/mark.c

index 923fe4a..d90deaa 100644 (file)
@@ -340,7 +340,7 @@ void fsnotify_init_mark(struct fsnotify_mark *mark,
 static int fsnotify_mark_destroy(void *ignored)
 {
        struct fsnotify_mark *mark, *next;
-       LIST_HEAD(private_destroy_list);
+       struct list_head private_destroy_list;
 
        for (;;) {
                spin_lock(&destroy_lock);