linux-stable/drivers/rpmsg
Ohad Ben-Cohen 5a081caa04 rpmsg: avoid premature deallocation of endpoints
When an inbound message arrives, the rpmsg core looks up its
associated endpoint and invokes the registered callback.

If a message arrives while its endpoint is being removed (because
the rpmsg driver was removed, or a recovery of a remote processor
has kicked in) we must ensure atomicity, i.e.:

- Either the ept is removed before it is found

or

- The ept is found but will not be freed until the callback returns

This is achieved by maintaining a per-ept reference count, which,
when drops to zero, will trigger deallocation of the ept.

With this in hand, it is now forbidden to directly deallocate
epts once they have been added to the endpoints idr.

Cc: stable <stable@vger.kernel.org>
Reported-by: Fernando Guzman Lugo <fernando.lugo@ti.com>
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
2012-07-04 11:51:42 +03:00
..
Kconfig rpmsg: depend on EXPERIMENTAL 2012-02-22 18:28:43 +02:00
Makefile rpmsg: add virtio-based remote processor messaging bus 2012-02-08 22:53:58 +02:00
virtio_rpmsg_bus.c rpmsg: avoid premature deallocation of endpoints 2012-07-04 11:51:42 +03:00