Commit 594c8ec1 authored by Lin Yujun's avatar Lin Yujun
Browse files

drm: drm_gem.h: Add kabi_reserve

hulk inclusion
bugzilla: https://gitee.com/openeuler/kernel/issues/I8PS7G


CVE: NA

---------------------------------------------

Add kabi_reserve in drm_gem.h

Signed-off-by: default avatarLin Yujun <linyujun809@huawei.com>
parent 2ca47cd6
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -41,6 +41,8 @@

#include <drm/drm_vma_manager.h>

#include <linux/kabi.h>

struct iosys_map;
struct drm_gem_object;

@@ -216,6 +218,9 @@ struct drm_gem_object_funcs {
	 * This is optional but necessary for mmap support.
	 */
	const struct vm_operations_struct *vm_ops;

	KABI_RESERVE(1)
	KABI_RESERVE(2)
};

/**
@@ -421,6 +426,9 @@ struct drm_gem_object {
	 * The current LRU list that the GEM object is on.
	 */
	struct drm_gem_lru *lru;

	KABI_RESERVE(1)
	KABI_RESERVE(2)
};

/**