Message ID | 20210315210453.1667925-4-jason@jlekstrand.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | dma-buf: Add an API for exporting sync files (v6) | expand |
On Mon, Mar 15, 2021 at 4:05 PM Jason Ekstrand <jason@jlekstrand.net> wrote: > > Modern userspace APIs like Vulkan are built on an explicit > synchronization model. This doesn't always play nicely with the > implicit synchronization used in the kernel and assumed by X11 and > Wayland. The client -> compositor half of the synchronization isn't too > bad, at least on intel, because we can control whether or not i915 > synchronizes on the buffer and whether or not it's considered written. > > The harder part is the compositor -> client synchronization when we get > the buffer back from the compositor. We're required to be able to > provide the client with a VkSemaphore and VkFence representing the point > in time where the window system (compositor and/or display) finished > using the buffer. With current APIs, it's very hard to do this in such > a way that we don't get confused by the Vulkan driver's access of the > buffer. In particular, once we tell the kernel that we're rendering to > the buffer again, any CPU waits on the buffer or GPU dependencies will > wait on some of the client rendering and not just the compositor. > > This new IOCTL solves this problem by allowing us to get a snapshot of > the implicit synchronization state of a given dma-buf in the form of a > sync file. It's effectively the same as a poll() or I915_GEM_WAIT only, > instead of CPU waiting directly, it encapsulates the wait operation, at > the current moment in time, in a sync_file so we can check/wait on it > later. As long as the Vulkan driver does the sync_file export from the > dma-buf before we re-introduce it for rendering, it will only contain > fences from the compositor or display. This allows to accurately turn > it into a VkFence or VkSemaphore without any over- synchronization. > > v2 (Jason Ekstrand): > - Use a wrapper dma_fence_array of all fences including the new one > when importing an exclusive fence. > > v3 (Jason Ekstrand): > - Lock around setting shared fences as well as exclusive > - Mark SIGNAL_SYNC_FILE as a read-write ioctl. > - Initialize ret to 0 in dma_buf_wait_sync_file > > v4 (Jason Ekstrand): > - Use the new dma_resv_get_singleton helper > > v5 (Jason Ekstrand): > - Rename the IOCTLs to import/export rather than wait/signal > - Drop the WRITE flag and always get/set the exclusive fence > > v6 (Jason Ekstrand): > - Drop the sync_file import as it was all-around sketchy and not nearly > as useful as import. > - Re-introduce READ/WRITE flag support for export > - Rework the commit message > > Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> > --- > drivers/dma-buf/dma-buf.c | 55 ++++++++++++++++++++++++++++++++++++ > include/uapi/linux/dma-buf.h | 6 ++++ > 2 files changed, 61 insertions(+) > > diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c > index f264b70c383eb..e7f9dd62c19a9 100644 > --- a/drivers/dma-buf/dma-buf.c > +++ b/drivers/dma-buf/dma-buf.c > @@ -20,6 +20,7 @@ > #include <linux/debugfs.h> > #include <linux/module.h> > #include <linux/seq_file.h> > +#include <linux/sync_file.h> > #include <linux/poll.h> > #include <linux/dma-resv.h> > #include <linux/mm.h> > @@ -362,6 +363,57 @@ static long dma_buf_set_name(struct dma_buf *dmabuf, const char __user *buf) > return ret; > } > > +static long dma_buf_export_sync_file(struct dma_buf *dmabuf, > + void __user *user_data) > +{ > + struct dma_buf_sync_file arg; > + struct dma_fence *fence = NULL; > + struct sync_file *sync_file; > + int fd, ret; > + > + if (copy_from_user(&arg, user_data, sizeof(arg))) > + return -EFAULT; > + > + if (arg.flags & ~DMA_BUF_SYNC_RW) > + return -EINVAL; > + > + fd = get_unused_fd_flags(O_CLOEXEC); > + if (fd < 0) > + return fd; > + > + if (arg.flags & DMA_BUF_SYNC_WRITE) { > + ret = dma_resv_get_singleton(dmabuf->resv, NULL, &fence); > + if (ret) > + goto err_put_fd; > + } else if (arg.flags & DMA_BUF_SYNC_READ) { > + fence = dma_resv_get_excl(dmabuf->resv); > + } > + > + if (!fence) > + fence = dma_fence_get_stub(); > + > + sync_file = sync_file_create(fence); > + > + dma_fence_put(fence); > + > + if (!sync_file) { > + ret = -EINVAL; Should this be -EINVAL or -ENOMEM? > + goto err_put_fd; > + } > + > + fd_install(fd, sync_file->file); > + > + arg.fd = fd; > + if (copy_to_user(user_data, &arg, sizeof(arg))) > + return -EFAULT; > + > + return 0; > + > +err_put_fd: > + put_unused_fd(fd); > + return ret; > +} > + > static long dma_buf_ioctl(struct file *file, > unsigned int cmd, unsigned long arg) > { > @@ -405,6 +457,9 @@ static long dma_buf_ioctl(struct file *file, > case DMA_BUF_SET_NAME_B: > return dma_buf_set_name(dmabuf, (const char __user *)arg); > > + case DMA_BUF_IOCTL_EXPORT_SYNC_FILE: > + return dma_buf_export_sync_file(dmabuf, (void __user *)arg); > + > default: > return -ENOTTY; > } > diff --git a/include/uapi/linux/dma-buf.h b/include/uapi/linux/dma-buf.h > index 7f30393b92c3b..9bce1e8bd31d3 100644 > --- a/include/uapi/linux/dma-buf.h > +++ b/include/uapi/linux/dma-buf.h > @@ -37,6 +37,11 @@ struct dma_buf_sync { > > #define DMA_BUF_NAME_LEN 32 > > +struct dma_buf_sync_file { > + __u32 flags; > + __s32 fd; > +}; > + > #define DMA_BUF_BASE 'b' > #define DMA_BUF_IOCTL_SYNC _IOW(DMA_BUF_BASE, 0, struct dma_buf_sync) > > @@ -46,5 +51,6 @@ struct dma_buf_sync { > #define DMA_BUF_SET_NAME _IOW(DMA_BUF_BASE, 1, const char *) > #define DMA_BUF_SET_NAME_A _IOW(DMA_BUF_BASE, 1, u32) > #define DMA_BUF_SET_NAME_B _IOW(DMA_BUF_BASE, 1, u64) > +#define DMA_BUF_IOCTL_EXPORT_SYNC_FILE _IOWR(DMA_BUF_BASE, 2, struct dma_buf_sync_file) > > #endif > -- > 2.29.2 >
Hi Jason,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on tegra-drm/drm/tegra/for-next]
[also build test ERROR on linus/master v5.12-rc3 next-20210315]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Jason-Ekstrand/dma-buf-add-dma_fence_array_for_each-v2/20210316-060509
base: git://anongit.freedesktop.org/tegra/linux.git drm/tegra/for-next
config: xtensa-randconfig-r022-20210315 (attached as .config)
compiler: xtensa-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/570269f5d3ec3a13936fa2224682d39c8a037126
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Jason-Ekstrand/dma-buf-add-dma_fence_array_for_each-v2/20210316-060509
git checkout 570269f5d3ec3a13936fa2224682d39c8a037126
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=xtensa
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
xtensa-linux-ld: drivers/dma-buf/dma-buf.o: in function `dma_buf_dynamic_attach':
>> dma-buf.c:(.text+0xf4c): undefined reference to `sync_file_create'
xtensa-linux-ld: drivers/dma-buf/dma-buf.o: in function `dma_buf_unmap_attachment':
dma-buf.c:(.text+0x10b0): undefined reference to `sync_file_create'
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
Hi Jason,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on tegra-drm/drm/tegra/for-next]
[also build test ERROR on linus/master v5.12-rc3 next-20210315]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Jason-Ekstrand/dma-buf-add-dma_fence_array_for_each-v2/20210316-060509
base: git://anongit.freedesktop.org/tegra/linux.git drm/tegra/for-next
config: parisc-randconfig-s031-20210315 (attached as .config)
compiler: hppa-linux-gcc (GCC) 9.3.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# apt-get install sparse
# sparse version: v0.6.3-277-gc089cd2d-dirty
# https://github.com/0day-ci/linux/commit/570269f5d3ec3a13936fa2224682d39c8a037126
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Jason-Ekstrand/dma-buf-add-dma_fence_array_for_each-v2/20210316-060509
git checkout 570269f5d3ec3a13936fa2224682d39c8a037126
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' ARCH=parisc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
hppa-linux-ld: drivers/dma-buf/dma-buf.o: in function `dma_buf_ioctl':
>> (.text+0x1944): undefined reference to `sync_file_create'
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
On 2021-03-16 12:10 a.m., Jason Ekstrand wrote: > On Mon, Mar 15, 2021 at 4:05 PM Jason Ekstrand <jason@jlekstrand.net> wrote: >> >> Modern userspace APIs like Vulkan are built on an explicit >> synchronization model. This doesn't always play nicely with the >> implicit synchronization used in the kernel and assumed by X11 and >> Wayland. The client -> compositor half of the synchronization isn't too >> bad, at least on intel, because we can control whether or not i915 >> synchronizes on the buffer and whether or not it's considered written. >> >> The harder part is the compositor -> client synchronization when we get >> the buffer back from the compositor. We're required to be able to >> provide the client with a VkSemaphore and VkFence representing the point >> in time where the window system (compositor and/or display) finished >> using the buffer. With current APIs, it's very hard to do this in such >> a way that we don't get confused by the Vulkan driver's access of the >> buffer. In particular, once we tell the kernel that we're rendering to >> the buffer again, any CPU waits on the buffer or GPU dependencies will >> wait on some of the client rendering and not just the compositor. >> >> This new IOCTL solves this problem by allowing us to get a snapshot of >> the implicit synchronization state of a given dma-buf in the form of a >> sync file. It's effectively the same as a poll() or I915_GEM_WAIT only, >> instead of CPU waiting directly, it encapsulates the wait operation, at >> the current moment in time, in a sync_file so we can check/wait on it >> later. As long as the Vulkan driver does the sync_file export from the >> dma-buf before we re-introduce it for rendering, it will only contain >> fences from the compositor or display. This allows to accurately turn >> it into a VkFence or VkSemaphore without any over- synchronization. >> >> v2 (Jason Ekstrand): >> - Use a wrapper dma_fence_array of all fences including the new one >> when importing an exclusive fence. >> >> v3 (Jason Ekstrand): >> - Lock around setting shared fences as well as exclusive >> - Mark SIGNAL_SYNC_FILE as a read-write ioctl. >> - Initialize ret to 0 in dma_buf_wait_sync_file >> >> v4 (Jason Ekstrand): >> - Use the new dma_resv_get_singleton helper >> >> v5 (Jason Ekstrand): >> - Rename the IOCTLs to import/export rather than wait/signal >> - Drop the WRITE flag and always get/set the exclusive fence >> >> v6 (Jason Ekstrand): >> - Drop the sync_file import as it was all-around sketchy and not nearly >> as useful as import. >> - Re-introduce READ/WRITE flag support for export >> - Rework the commit message >> >> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> >> --- >> drivers/dma-buf/dma-buf.c | 55 ++++++++++++++++++++++++++++++++++++ >> include/uapi/linux/dma-buf.h | 6 ++++ >> 2 files changed, 61 insertions(+) >> >> diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c >> index f264b70c383eb..e7f9dd62c19a9 100644 >> --- a/drivers/dma-buf/dma-buf.c >> +++ b/drivers/dma-buf/dma-buf.c [...] >> @@ -362,6 +363,57 @@ static long dma_buf_set_name(struct dma_buf *dmabuf, const char __user *buf) >> return ret; >> } >> >> +static long dma_buf_export_sync_file(struct dma_buf *dmabuf, >> + void __user *user_data) >> +{ >> + struct dma_buf_sync_file arg; >> + struct dma_fence *fence = NULL; >> + struct sync_file *sync_file; >> + int fd, ret; >> + >> + if (copy_from_user(&arg, user_data, sizeof(arg))) >> + return -EFAULT; >> + >> + if (arg.flags & ~DMA_BUF_SYNC_RW) >> + return -EINVAL; >> + >> + fd = get_unused_fd_flags(O_CLOEXEC); >> + if (fd < 0) >> + return fd; >> + >> + if (arg.flags & DMA_BUF_SYNC_WRITE) { >> + ret = dma_resv_get_singleton(dmabuf->resv, NULL, &fence); >> + if (ret) >> + goto err_put_fd; >> + } else if (arg.flags & DMA_BUF_SYNC_READ) { >> + fence = dma_resv_get_excl(dmabuf->resv); >> + } >> + >> + if (!fence) >> + fence = dma_fence_get_stub(); >> + >> + sync_file = sync_file_create(fence); >> + >> + dma_fence_put(fence); >> + >> + if (!sync_file) { >> + ret = -EINVAL; > > Should this be -EINVAL or -ENOMEM? The latter makes more sense to me, since sync_file_create returning NULL is not related to invalid ioctl parameters.
On Tue, Mar 16, 2021 at 3:51 AM Michel Dänzer <michel@daenzer.net> wrote: > > On 2021-03-16 12:10 a.m., Jason Ekstrand wrote: > > On Mon, Mar 15, 2021 at 4:05 PM Jason Ekstrand <jason@jlekstrand.net> wrote: > >> > >> Modern userspace APIs like Vulkan are built on an explicit > >> synchronization model. This doesn't always play nicely with the > >> implicit synchronization used in the kernel and assumed by X11 and > >> Wayland. The client -> compositor half of the synchronization isn't too > >> bad, at least on intel, because we can control whether or not i915 > >> synchronizes on the buffer and whether or not it's considered written. > >> > >> The harder part is the compositor -> client synchronization when we get > >> the buffer back from the compositor. We're required to be able to > >> provide the client with a VkSemaphore and VkFence representing the point > >> in time where the window system (compositor and/or display) finished > >> using the buffer. With current APIs, it's very hard to do this in such > >> a way that we don't get confused by the Vulkan driver's access of the > >> buffer. In particular, once we tell the kernel that we're rendering to > >> the buffer again, any CPU waits on the buffer or GPU dependencies will > >> wait on some of the client rendering and not just the compositor. > >> > >> This new IOCTL solves this problem by allowing us to get a snapshot of > >> the implicit synchronization state of a given dma-buf in the form of a > >> sync file. It's effectively the same as a poll() or I915_GEM_WAIT only, > >> instead of CPU waiting directly, it encapsulates the wait operation, at > >> the current moment in time, in a sync_file so we can check/wait on it > >> later. As long as the Vulkan driver does the sync_file export from the > >> dma-buf before we re-introduce it for rendering, it will only contain > >> fences from the compositor or display. This allows to accurately turn > >> it into a VkFence or VkSemaphore without any over- synchronization. > >> > >> v2 (Jason Ekstrand): > >> - Use a wrapper dma_fence_array of all fences including the new one > >> when importing an exclusive fence. > >> > >> v3 (Jason Ekstrand): > >> - Lock around setting shared fences as well as exclusive > >> - Mark SIGNAL_SYNC_FILE as a read-write ioctl. > >> - Initialize ret to 0 in dma_buf_wait_sync_file > >> > >> v4 (Jason Ekstrand): > >> - Use the new dma_resv_get_singleton helper > >> > >> v5 (Jason Ekstrand): > >> - Rename the IOCTLs to import/export rather than wait/signal > >> - Drop the WRITE flag and always get/set the exclusive fence > >> > >> v6 (Jason Ekstrand): > >> - Drop the sync_file import as it was all-around sketchy and not nearly > >> as useful as import. > >> - Re-introduce READ/WRITE flag support for export > >> - Rework the commit message > >> > >> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> > >> --- > >> drivers/dma-buf/dma-buf.c | 55 ++++++++++++++++++++++++++++++++++++ > >> include/uapi/linux/dma-buf.h | 6 ++++ > >> 2 files changed, 61 insertions(+) > >> > >> diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c > >> index f264b70c383eb..e7f9dd62c19a9 100644 > >> --- a/drivers/dma-buf/dma-buf.c > >> +++ b/drivers/dma-buf/dma-buf.c > [...] > >> @@ -362,6 +363,57 @@ static long dma_buf_set_name(struct dma_buf *dmabuf, const char __user *buf) > >> return ret; > >> } > >> > >> +static long dma_buf_export_sync_file(struct dma_buf *dmabuf, > >> + void __user *user_data) > >> +{ > >> + struct dma_buf_sync_file arg; > >> + struct dma_fence *fence = NULL; > >> + struct sync_file *sync_file; > >> + int fd, ret; > >> + > >> + if (copy_from_user(&arg, user_data, sizeof(arg))) > >> + return -EFAULT; > >> + > >> + if (arg.flags & ~DMA_BUF_SYNC_RW) > >> + return -EINVAL; > >> + > >> + fd = get_unused_fd_flags(O_CLOEXEC); > >> + if (fd < 0) > >> + return fd; > >> + > >> + if (arg.flags & DMA_BUF_SYNC_WRITE) { > >> + ret = dma_resv_get_singleton(dmabuf->resv, NULL, &fence); > >> + if (ret) > >> + goto err_put_fd; > >> + } else if (arg.flags & DMA_BUF_SYNC_READ) { > >> + fence = dma_resv_get_excl(dmabuf->resv); > >> + } > >> + > >> + if (!fence) > >> + fence = dma_fence_get_stub(); > >> + > >> + sync_file = sync_file_create(fence); > >> + > >> + dma_fence_put(fence); > >> + > >> + if (!sync_file) { > >> + ret = -EINVAL; > > > > Should this be -EINVAL or -ENOMEM? > > The latter makes more sense to me, since sync_file_create returning NULL is not related to invalid ioctl parameters. I've switched to -ENOMEM. It'll be part of v8 whenever I send it out. I'd like to get some "real" review first. --Jason
diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index f264b70c383eb..e7f9dd62c19a9 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -20,6 +20,7 @@ #include <linux/debugfs.h> #include <linux/module.h> #include <linux/seq_file.h> +#include <linux/sync_file.h> #include <linux/poll.h> #include <linux/dma-resv.h> #include <linux/mm.h> @@ -362,6 +363,57 @@ static long dma_buf_set_name(struct dma_buf *dmabuf, const char __user *buf) return ret; } +static long dma_buf_export_sync_file(struct dma_buf *dmabuf, + void __user *user_data) +{ + struct dma_buf_sync_file arg; + struct dma_fence *fence = NULL; + struct sync_file *sync_file; + int fd, ret; + + if (copy_from_user(&arg, user_data, sizeof(arg))) + return -EFAULT; + + if (arg.flags & ~DMA_BUF_SYNC_RW) + return -EINVAL; + + fd = get_unused_fd_flags(O_CLOEXEC); + if (fd < 0) + return fd; + + if (arg.flags & DMA_BUF_SYNC_WRITE) { + ret = dma_resv_get_singleton(dmabuf->resv, NULL, &fence); + if (ret) + goto err_put_fd; + } else if (arg.flags & DMA_BUF_SYNC_READ) { + fence = dma_resv_get_excl(dmabuf->resv); + } + + if (!fence) + fence = dma_fence_get_stub(); + + sync_file = sync_file_create(fence); + + dma_fence_put(fence); + + if (!sync_file) { + ret = -EINVAL; + goto err_put_fd; + } + + fd_install(fd, sync_file->file); + + arg.fd = fd; + if (copy_to_user(user_data, &arg, sizeof(arg))) + return -EFAULT; + + return 0; + +err_put_fd: + put_unused_fd(fd); + return ret; +} + static long dma_buf_ioctl(struct file *file, unsigned int cmd, unsigned long arg) { @@ -405,6 +457,9 @@ static long dma_buf_ioctl(struct file *file, case DMA_BUF_SET_NAME_B: return dma_buf_set_name(dmabuf, (const char __user *)arg); + case DMA_BUF_IOCTL_EXPORT_SYNC_FILE: + return dma_buf_export_sync_file(dmabuf, (void __user *)arg); + default: return -ENOTTY; } diff --git a/include/uapi/linux/dma-buf.h b/include/uapi/linux/dma-buf.h index 7f30393b92c3b..9bce1e8bd31d3 100644 --- a/include/uapi/linux/dma-buf.h +++ b/include/uapi/linux/dma-buf.h @@ -37,6 +37,11 @@ struct dma_buf_sync { #define DMA_BUF_NAME_LEN 32 +struct dma_buf_sync_file { + __u32 flags; + __s32 fd; +}; + #define DMA_BUF_BASE 'b' #define DMA_BUF_IOCTL_SYNC _IOW(DMA_BUF_BASE, 0, struct dma_buf_sync) @@ -46,5 +51,6 @@ struct dma_buf_sync { #define DMA_BUF_SET_NAME _IOW(DMA_BUF_BASE, 1, const char *) #define DMA_BUF_SET_NAME_A _IOW(DMA_BUF_BASE, 1, u32) #define DMA_BUF_SET_NAME_B _IOW(DMA_BUF_BASE, 1, u64) +#define DMA_BUF_IOCTL_EXPORT_SYNC_FILE _IOWR(DMA_BUF_BASE, 2, struct dma_buf_sync_file) #endif
Modern userspace APIs like Vulkan are built on an explicit synchronization model. This doesn't always play nicely with the implicit synchronization used in the kernel and assumed by X11 and Wayland. The client -> compositor half of the synchronization isn't too bad, at least on intel, because we can control whether or not i915 synchronizes on the buffer and whether or not it's considered written. The harder part is the compositor -> client synchronization when we get the buffer back from the compositor. We're required to be able to provide the client with a VkSemaphore and VkFence representing the point in time where the window system (compositor and/or display) finished using the buffer. With current APIs, it's very hard to do this in such a way that we don't get confused by the Vulkan driver's access of the buffer. In particular, once we tell the kernel that we're rendering to the buffer again, any CPU waits on the buffer or GPU dependencies will wait on some of the client rendering and not just the compositor. This new IOCTL solves this problem by allowing us to get a snapshot of the implicit synchronization state of a given dma-buf in the form of a sync file. It's effectively the same as a poll() or I915_GEM_WAIT only, instead of CPU waiting directly, it encapsulates the wait operation, at the current moment in time, in a sync_file so we can check/wait on it later. As long as the Vulkan driver does the sync_file export from the dma-buf before we re-introduce it for rendering, it will only contain fences from the compositor or display. This allows to accurately turn it into a VkFence or VkSemaphore without any over- synchronization. v2 (Jason Ekstrand): - Use a wrapper dma_fence_array of all fences including the new one when importing an exclusive fence. v3 (Jason Ekstrand): - Lock around setting shared fences as well as exclusive - Mark SIGNAL_SYNC_FILE as a read-write ioctl. - Initialize ret to 0 in dma_buf_wait_sync_file v4 (Jason Ekstrand): - Use the new dma_resv_get_singleton helper v5 (Jason Ekstrand): - Rename the IOCTLs to import/export rather than wait/signal - Drop the WRITE flag and always get/set the exclusive fence v6 (Jason Ekstrand): - Drop the sync_file import as it was all-around sketchy and not nearly as useful as import. - Re-introduce READ/WRITE flag support for export - Rework the commit message Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> --- drivers/dma-buf/dma-buf.c | 55 ++++++++++++++++++++++++++++++++++++ include/uapi/linux/dma-buf.h | 6 ++++ 2 files changed, 61 insertions(+)