diff options
author | Inki Dae <inki.dae@samsung.com> | 2014-12-05 20:44:32 +0900 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2014-12-05 20:44:32 +0900 |
commit | 7f38183e71bbd43c9f2c23144bf8cc517886ca34 (patch) | |
tree | 029fec180f7505eee4928e74190906f53031840f | |
parent | 41514f4effa0efc1e49194689ba3fc8e320dd1ba (diff) | |
download | linux-3.10-7f38183e71bbd43c9f2c23144bf8cc517886ca34.tar.gz linux-3.10-7f38183e71bbd43c9f2c23144bf8cc517886ca34.tar.bz2 linux-3.10-7f38183e71bbd43c9f2c23144bf8cc517886ca34.zip |
dma-buf/dmabuf-sync: disable dmabuf sync module
This module has a resource free bug so this patch disables
dmabuf sync module until the bug is fixed.
Change-Id: Ic84c88e3d5dbead1c25bf4b238b8ef5f51045099
Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r-- | drivers/dma-buf/dmabuf-sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma-buf/dmabuf-sync.c b/drivers/dma-buf/dmabuf-sync.c index 94eb5ad9d6e..f63ed3084ac 100644 --- a/drivers/dma-buf/dmabuf-sync.c +++ b/drivers/dma-buf/dmabuf-sync.c @@ -33,7 +33,7 @@ (old->accessed_type == DMA_BUF_ACCESS_RW)) && \ new_type & DMA_BUF_ACCESS_DMA) -static int dmabuf_sync_enabled = 1; +static int dmabuf_sync_enabled = 0; static unsigned long seqno; static LIST_HEAD(orders); static DEFINE_SPINLOCK(orders_lock); |