dma-buf/sync_file: de-stage sync_file
authorGustavo Padovan <gustavo.padovan@collabora.co.uk>
Thu, 28 Apr 2016 13:46:58 +0000 (10:46 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Apr 2016 00:37:10 +0000 (17:37 -0700)
sync_file is useful to connect one or more fences to the file. The file is
used by userspace to track fences between drivers that share DMA bufs.

Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/Kconfig
drivers/dma-buf/Kconfig [new file with mode: 0644]
drivers/dma-buf/Makefile
drivers/dma-buf/sync_file.c [moved from drivers/staging/android/sync_file.c with 100% similarity]
drivers/staging/android/Kconfig
drivers/staging/android/Makefile

index d2ac339..430f761 100644 (file)
@@ -114,6 +114,8 @@ source "drivers/rtc/Kconfig"
 
 source "drivers/dma/Kconfig"
 
+source "drivers/dma-buf/Kconfig"
+
 source "drivers/dca/Kconfig"
 
 source "drivers/auxdisplay/Kconfig"
diff --git a/drivers/dma-buf/Kconfig b/drivers/dma-buf/Kconfig
new file mode 100644 (file)
index 0000000..9824bc4
--- /dev/null
@@ -0,0 +1,11 @@
+menu "DMABUF options"
+
+config SYNC_FILE
+       bool "sync_file support for fences"
+       default n
+       select ANON_INODES
+       select DMA_SHARED_BUFFER
+       ---help---
+         This option enables the fence framework synchronization to export
+         sync_files to userspace that can represent one or more fences.
+endmenu
index 57a675f..4a424ec 100644 (file)
@@ -1 +1,2 @@
 obj-y := dma-buf.o fence.o reservation.o seqno-fence.o
+obj-$(CONFIG_SYNC_FILE)                += sync_file.o
index 68042ab..6480f60 100644 (file)
@@ -38,6 +38,7 @@ config SW_SYNC
        bool "Software synchronization objects"
        default n
        depends on SYNC
+       depends on SYNC_FILE
        ---help---
          A sync object driver that uses a 32bit counter to coordinate
          synchronization.  Useful when there is no hardware primitive backing
index ebc2df1..980d6dc 100644 (file)
@@ -4,5 +4,5 @@ obj-y                                   += ion/
 
 obj-$(CONFIG_ASHMEM)                   += ashmem.o
 obj-$(CONFIG_ANDROID_LOW_MEMORY_KILLER)        += lowmemorykiller.o
-obj-$(CONFIG_SYNC)                     += sync_file.o sync.o sync_debug.o
+obj-$(CONFIG_SYNC)                     += sync.o sync_debug.o
 obj-$(CONFIG_SW_SYNC)                  += sw_sync.o