]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
fsnotify: fsnotify_obtain_group kzalloc cleanup
authorEric Paris <eparis@redhat.com>
Fri, 18 Dec 2009 02:24:22 +0000 (21:24 -0500)
committerEric Paris <eparis@redhat.com>
Wed, 28 Jul 2010 13:58:50 +0000 (09:58 -0400)
fsnotify_obtain_group uses kzalloc but then proceedes to set things to 0.
This patch just deletes those useless lines.

Signed-off-by: Eric Paris <eparis@redhat.com>
fs/notify/group.c

index 62fb8961a57be13d9cb4d461788e77f704322b89..934860e98095565858c8f249bc19c9857a47b3e4 100644 (file)
@@ -178,17 +178,14 @@ struct fsnotify_group *fsnotify_obtain_group(__u32 mask,
 
        atomic_set(&group->refcnt, 1);
 
-       group->on_group_list = 0;
        group->mask = mask;
 
        mutex_init(&group->notification_mutex);
        INIT_LIST_HEAD(&group->notification_list);
        init_waitqueue_head(&group->notification_waitq);
-       group->q_len = 0;
        group->max_events = UINT_MAX;
 
        spin_lock_init(&group->mark_lock);
-       atomic_set(&group->num_marks, 0);
        INIT_LIST_HEAD(&group->mark_entries);
 
        group->ops = ops;