mirror of https://gitee.com/openkylin/linux.git
drm/i915: Only one open() allowed on pipe CRC result files
It doesn't really make sense to have two processes dequeueing the CRC values at the same time. Forbid that usage. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
071444280b
commit
be5c7a9075
|
@ -1768,6 +1768,15 @@ struct pipe_crc_info {
|
|||
|
||||
static int i915_pipe_crc_open(struct inode *inode, struct file *filep)
|
||||
{
|
||||
struct pipe_crc_info *info = inode->i_private;
|
||||
struct drm_i915_private *dev_priv = info->dev->dev_private;
|
||||
struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
|
||||
|
||||
if (!atomic_dec_and_test(&pipe_crc->available)) {
|
||||
atomic_inc(&pipe_crc->available);
|
||||
return -EBUSY; /* already open */
|
||||
}
|
||||
|
||||
filep->private_data = inode->i_private;
|
||||
|
||||
return 0;
|
||||
|
@ -1775,6 +1784,12 @@ static int i915_pipe_crc_open(struct inode *inode, struct file *filep)
|
|||
|
||||
static int i915_pipe_crc_release(struct inode *inode, struct file *filep)
|
||||
{
|
||||
struct pipe_crc_info *info = inode->i_private;
|
||||
struct drm_i915_private *dev_priv = info->dev->dev_private;
|
||||
struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
|
||||
|
||||
atomic_inc(&pipe_crc->available); /* release the device */
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -2684,6 +2699,7 @@ void intel_display_crc_init(struct drm_device *dev)
|
|||
for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) {
|
||||
struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[i];
|
||||
|
||||
atomic_set(&pipe_crc->available, 1);
|
||||
init_waitqueue_head(&pipe_crc->wq);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1232,6 +1232,7 @@ struct intel_pipe_crc_entry {
|
|||
|
||||
#define INTEL_PIPE_CRC_ENTRIES_NR 128
|
||||
struct intel_pipe_crc {
|
||||
atomic_t available; /* exclusive access to the device */
|
||||
struct intel_pipe_crc_entry *entries;
|
||||
enum intel_pipe_crc_source source;
|
||||
atomic_t head, tail;
|
||||
|
|
Loading…
Reference in New Issue