]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - include/linux/sync_file.h
Merge tag 'drm-misc-next-2017-05-16' of git://anongit.freedesktop.org/git/drm-misc...
[mirror_ubuntu-artful-kernel.git] / include / linux / sync_file.h
index 3e3ab84fc4cd23c76b2e158dc82029e6f2a6f611..d37beefdfbd592e3420e0bc59208c6dbda4b9b5b 100644 (file)
@@ -14,7 +14,6 @@
 #define _LINUX_SYNC_FILE_H
 
 #include <linux/types.h>
-#include <linux/kref.h>
 #include <linux/ktime.h>
 #include <linux/list.h>
 #include <linux/spinlock.h>
@@ -24,7 +23,6 @@
 /**
  * struct sync_file - sync file to export to the userspace
  * @file:              file representing this fence
- * @kref:              reference count on fence.
  * @name:              name of sync_file.  Useful for debugging
  * @sync_file_list:    membership in global file list
  * @wq:                        wait queue for fence signaling
@@ -33,7 +31,6 @@
  */
 struct sync_file {
        struct file             *file;
-       struct kref             kref;
        char                    name[32];
 #ifdef CONFIG_DEBUG_FS
        struct list_head        sync_file_list;