hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I9244H
---------------------------
Reserve space for drm_syncobj in drm_syncobj.h.
Signed-off-by: Wang Wensheng wangwensheng4@huawei.com --- include/drm/drm_syncobj.h | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/include/drm/drm_syncobj.h b/include/drm/drm_syncobj.h index b40052132e52..33fb873cbd45 100644 --- a/include/drm/drm_syncobj.h +++ b/include/drm/drm_syncobj.h @@ -28,6 +28,7 @@
#include <linux/dma-fence.h> #include <linux/dma-fence-chain.h> +#include <linux/kabi.h>
struct drm_file;
@@ -65,6 +66,8 @@ struct drm_syncobj { * @file: A file backing for this syncobj. */ struct file *file; + KABI_RESERVE(1) + KABI_RESERVE(2) };
void drm_syncobj_free(struct kref *kref);