• Li Zefan's avatar
    cgroup: fix cgroup_rmdir() vs close(eventfd) race · 810cbee4
    Li Zefan authored
    commit 205a872b
    
     ("cgroup: fix lockdep
    warning for event_control") solved a deadlock by introducing a new
    bug.
    
    Move cgrp->event_list to a temporary list doesn't mean you can traverse
    this list locklessly, because at the same time cgroup_event_wake() can
    be called and remove the event from the list. The result of this race
    is disastrous.
    
    We adopt the way how kvm irqfd code implements race-free event removal,
    which is now described in the comments in cgroup_event_wake().
    
    v3:
    - call eventfd_signal() no matter it's eventfd close or cgroup removal
    that removes the cgroup event.
    Acked-by: default avatarKirill A. Shutemov <kirill@shutemov.name>
    Signed-off-by: default avatarLi Zefan <lizefan@huawei.com>
    Signed-off-by: default avatarTejun Heo <tj@kernel.org>
    810cbee4
cgroup.c 148 KB