]> git.karo-electronics.de Git - karo-tx-linux.git/commit
of: dma: fix protection of DMA controller data stored by DMA helpers
authorJon Hunter <jon-hunter@ti.com>
Thu, 11 Oct 2012 19:43:01 +0000 (14:43 -0500)
committerVinod Koul <vinod.koul@linux.intel.com>
Wed, 28 Nov 2012 17:03:05 +0000 (22:33 +0530)
commitd4397a4acc3b8c9c96a0be6faa5fb0db9259e4d1
treeed8b8f615b82a722f27444d94069fed89f443e98
parent00dc4dfd4854029c0473cc65e1523a44a5d714ae
of: dma: fix protection of DMA controller data stored by DMA helpers

In the current implementation of the OF DMA helpers, read-copy-update (RCU)
linked lists are being used for storing and accessing the DMA controller data.
This part of implementation is based upon V2 of the DMA helpers by Nicolas [1].
During a recent review of RCU, it became apparent that the code is missing the
required rcu_read_lock()/unlock() calls as well as synchronisation calls before
freeing any memory protected by RCU.

Having looked into adding the appropriate RCU calls to protect the DMA data it
became apparent that with the current DMA helper implementation, using RCU is
not as attractive as it may have been before. The main reasons being that ...

1. We need to protect the DMA data around calls to the xlate function.
2. The of_dma_simple_xlate() function calls the DMA engine function
   dma_request_channel() which employs a mutex and so could sleep.
3. The RCU read-side critical sections must not sleep and so we cannot hold
   an RCU read lock around the xlate function.

Therefore, instead of using RCU, an alternative for this use-case is to employ
a simple spinlock inconjunction with a usage count variable to keep track of
how many current users of the DMA data structure there are. With this
implementation, the DMA data cannot be freed until all current users of the
DMA data are finished.

This patch is based upon the DMA helpers fix for potential deadlock [2].

[1] http://article.gmane.org/gmane.linux.ports.arm.omap/73622
[2] http://marc.info/?l=linux-arm-kernel&m=134859982520984&w=2

Signed-off-by: Jon Hunter <jon-hunter@ti.com>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
drivers/of/dma.c
include/linux/of_dma.h