Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a28971ad authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] remove interface links at media_entity_unregister()



Interface links connected to an entity should be removed
before the entity itself can be removed.

Acked-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 7c4696a9
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -638,14 +638,30 @@ void media_device_unregister_entity(struct media_entity *entity)
		return;

	spin_lock(&mdev->lock);

	/* Remove interface links with this entity on it */
	list_for_each_entry_safe(link, tmp, &mdev->links, graph_obj.list) {
		if (media_type(link->gobj1) == MEDIA_GRAPH_ENTITY
		    && link->entity == entity) {
			media_gobj_remove(&link->graph_obj);
			kfree(link);
		}
	}

	/* Remove all data links that belong to this entity */
	list_for_each_entry_safe(link, tmp, &entity->links, list) {
		media_gobj_remove(&link->graph_obj);
		list_del(&link->list);
		kfree(link);
	}

	/* Remove all pads that belong to this entity */
	for (i = 0; i < entity->num_pads; i++)
		media_gobj_remove(&entity->pads[i].graph_obj);

	/* Remove the entity */
	media_gobj_remove(&entity->graph_obj);

	spin_unlock(&mdev->lock);
	entity->graph_obj.mdev = NULL;
}