• L
    configfs: Protect configfs_dirent s_links list mutations · 5301a77d
    Louis Rilling 提交于
    Symlinks to a config_item are listed under its configfs_dirent s_links, but the
    list mutations are not protected by any common lock.
    
    This patch uses the configfs_dirent_lock spinlock to add the necessary
    protection.
    
    Note: we should also protect the list_empty() test in configfs_detach_prep() but
    1/ the lock should not be released immediately because nothing would prevent the
    list from being filled after a successful list_empty() test, making the problem
    tricky,
    2/ this will be solved by the rmdir() vs rename() deadlock bugfix.
    Signed-off-by: NLouis Rilling <Louis.Rilling@kerlabs.com>
    Signed-off-by: NJoel Becker <joel.becker@oracle.com>
    5301a77d
symlink.c 6.7 KB