[media] media-device: remove interfaces and interface links
Just like what's done with entities, when the media controller is unregistered, release any interface and interface links that might still be there. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
a28971ad14
commit
d47109fa45
|
@ -574,6 +574,17 @@ void media_device_unregister(struct media_device *mdev)
|
||||||
{
|
{
|
||||||
struct media_entity *entity;
|
struct media_entity *entity;
|
||||||
struct media_entity *next;
|
struct media_entity *next;
|
||||||
|
struct media_interface *intf, *tmp_intf;
|
||||||
|
|
||||||
|
/* Remove all interfaces from the media device */
|
||||||
|
spin_lock(&mdev->lock);
|
||||||
|
list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
|
||||||
|
graph_obj.list) {
|
||||||
|
__media_remove_intf_links(intf);
|
||||||
|
media_gobj_remove(&intf->graph_obj);
|
||||||
|
kfree(intf);
|
||||||
|
}
|
||||||
|
spin_unlock(&mdev->lock);
|
||||||
|
|
||||||
list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
|
list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
|
||||||
media_device_unregister_entity(entity);
|
media_device_unregister_entity(entity);
|
||||||
|
@ -633,27 +644,24 @@ void media_device_unregister_entity(struct media_entity *entity)
|
||||||
int i;
|
int i;
|
||||||
struct media_device *mdev = entity->graph_obj.mdev;
|
struct media_device *mdev = entity->graph_obj.mdev;
|
||||||
struct media_link *link, *tmp;
|
struct media_link *link, *tmp;
|
||||||
|
struct media_interface *intf;
|
||||||
|
|
||||||
if (mdev == NULL)
|
if (mdev == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
spin_lock(&mdev->lock);
|
spin_lock(&mdev->lock);
|
||||||
|
|
||||||
/* Remove interface links with this entity on it */
|
/* Remove all interface links pointing to this entity */
|
||||||
list_for_each_entry_safe(link, tmp, &mdev->links, graph_obj.list) {
|
list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
|
||||||
if (media_type(link->gobj1) == MEDIA_GRAPH_ENTITY
|
list_for_each_entry_safe(link, tmp, &intf->links, list) {
|
||||||
&& link->entity == entity) {
|
if (media_type(link->gobj1) == MEDIA_GRAPH_ENTITY
|
||||||
media_gobj_remove(&link->graph_obj);
|
&& link->entity == entity)
|
||||||
kfree(link);
|
__media_remove_intf_link(link);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove all data links that belong to this entity */
|
/* Remove all data links that belong to this entity */
|
||||||
list_for_each_entry_safe(link, tmp, &entity->links, list) {
|
__media_entity_remove_links(entity);
|
||||||
media_gobj_remove(&link->graph_obj);
|
|
||||||
list_del(&link->list);
|
|
||||||
kfree(link);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Remove all pads that belong to this entity */
|
/* Remove all pads that belong to this entity */
|
||||||
for (i = 0; i < entity->num_pads; i++)
|
for (i = 0; i < entity->num_pads; i++)
|
||||||
|
|
|
@ -674,9 +674,11 @@ static void __media_entity_remove_link(struct media_entity *entity,
|
||||||
|
|
||||||
/* Remove the remote link */
|
/* Remove the remote link */
|
||||||
list_del(&rlink->list);
|
list_del(&rlink->list);
|
||||||
|
media_gobj_remove(&rlink->graph_obj);
|
||||||
kfree(rlink);
|
kfree(rlink);
|
||||||
}
|
}
|
||||||
list_del(&link->list);
|
list_del(&link->list);
|
||||||
|
media_gobj_remove(&link->graph_obj);
|
||||||
kfree(link);
|
kfree(link);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -920,11 +922,13 @@ struct media_link *media_create_intf_link(struct media_entity *entity,
|
||||||
EXPORT_SYMBOL_GPL(media_create_intf_link);
|
EXPORT_SYMBOL_GPL(media_create_intf_link);
|
||||||
|
|
||||||
|
|
||||||
static void __media_remove_intf_link(struct media_link *link)
|
void __media_remove_intf_link(struct media_link *link)
|
||||||
{
|
{
|
||||||
|
list_del(&link->list);
|
||||||
media_gobj_remove(&link->graph_obj);
|
media_gobj_remove(&link->graph_obj);
|
||||||
kfree(link);
|
kfree(link);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(__media_remove_intf_link);
|
||||||
|
|
||||||
void media_remove_intf_link(struct media_link *link)
|
void media_remove_intf_link(struct media_link *link)
|
||||||
{
|
{
|
||||||
|
|
|
@ -325,6 +325,7 @@ void media_devnode_remove(struct media_intf_devnode *devnode);
|
||||||
struct media_link *media_create_intf_link(struct media_entity *entity,
|
struct media_link *media_create_intf_link(struct media_entity *entity,
|
||||||
struct media_interface *intf,
|
struct media_interface *intf,
|
||||||
u32 flags);
|
u32 flags);
|
||||||
|
void __media_remove_intf_link(struct media_link *link);
|
||||||
void media_remove_intf_link(struct media_link *link);
|
void media_remove_intf_link(struct media_link *link);
|
||||||
void __media_remove_intf_links(struct media_interface *intf);
|
void __media_remove_intf_links(struct media_interface *intf);
|
||||||
void media_remove_intf_links(struct media_interface *intf);
|
void media_remove_intf_links(struct media_interface *intf);
|
||||||
|
|
Loading…
Reference in New Issue