mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 00:46:47 +07:00
71ebc9a379
Constructing the name takes the majority of the time for allocating a sync_file to wrap a fence, and the name is very rarely used (only via the sync_file status user interface). To reduce the impact on the common path (that of creating sync_file to pass around), defer the construction of the name until it is first used. v2: Update kerneldoc (kbuild test robot) v3: sync_debug.c was peeking at the name v4: Comment upon the potential race between two users of sync_file_get_name() and claim that such a race is below the level of notice. However, to prevent any future nuisance, use a global spinlock to serialize the assignment of the name. v5: Completely avoid the read/write race by only storing the name passed in from the user inside sync_file->user_name and passing in a buffer to dynamically construct the name otherwise. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Sumit Semwal <sumit.semwal@linaro.org> Cc: Gustavo Padovan <gustavo@padovan.org> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: David Herrmann <dh.herrmann@gmail.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.com> Link: http://patchwork.freedesktop.org/patch/msgid/20170516111042.24719-1-chris@chris-wilson.co.uk
58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
/*
|
|
* include/linux/sync_file.h
|
|
*
|
|
* Copyright (C) 2012 Google, Inc.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#ifndef _LINUX_SYNC_FILE_H
|
|
#define _LINUX_SYNC_FILE_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/ktime.h>
|
|
#include <linux/list.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/dma-fence.h>
|
|
#include <linux/dma-fence-array.h>
|
|
|
|
/**
|
|
* struct sync_file - sync file to export to the userspace
|
|
* @file: file representing this fence
|
|
* @sync_file_list: membership in global file list
|
|
* @wq: wait queue for fence signaling
|
|
* @fence: fence with the fences in the sync_file
|
|
* @cb: fence callback information
|
|
*/
|
|
struct sync_file {
|
|
struct file *file;
|
|
/**
|
|
* @user_name:
|
|
*
|
|
* Name of the sync file provided by userspace, for merged fences.
|
|
* Otherwise generated through driver callbacks (in which case the
|
|
* entire array is 0).
|
|
*/
|
|
char user_name[32];
|
|
#ifdef CONFIG_DEBUG_FS
|
|
struct list_head sync_file_list;
|
|
#endif
|
|
|
|
wait_queue_head_t wq;
|
|
|
|
struct dma_fence *fence;
|
|
struct dma_fence_cb cb;
|
|
};
|
|
|
|
#define POLL_ENABLED DMA_FENCE_FLAG_USER_BITS
|
|
|
|
struct sync_file *sync_file_create(struct dma_fence *fence);
|
|
struct dma_fence *sync_file_get_fence(int fd);
|
|
char *sync_file_get_name(struct sync_file *sync_file, char *buf, int len);
|
|
|
|
#endif /* _LINUX_SYNC_H */
|