• Andrzej Pietrasiewicz's avatar
    usb: gadget: configfs: keep a function if it is not successfully added · 5a68e9b5
    Andrzej Pietrasiewicz authored
    If usb_add_function() fails then the currently processed function
    is already not in the list in struct config_usb_cfg, and neither is it
    in the list in struct usb_configuration. At the err_purge_funcs label the
    purge_config_funcs() is called, which iterates over all configurations,
    and in each configuration it iterates over all _successfully_ added
    functions, and moves them back from the list in struct usb_configuration
    to the list in struct config_usb_cfg. BUT the function which has just
    failed adding and caused the unwind process is not taken care of and
    is effectively lost.
    
    This patch modifies the configfs_composite_bind() function so that if
    the usb_add_function() fails, then the currently processed function
    is returned to the list in struct config_usb_cfg.
    
    It would be tempting to delay the list_del() in question after
    usb_add_function() invocation, but a struct list_head (&f->list) cannot be
    stored in more than one list at the same time, so the list_del() must
    be called before usb_add_function(). Hence, the solution is to list_add()
    after usb_add_function() in case of error.
    Signed-off-by: default avatarAndrzej Pietrasiewicz <andrzej.p@samsung.com>
    Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
    Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
    5a68e9b5
configfs.c 24.1 KB