hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I9244H
---------------------------
Reserve space for drm_modeset_acquire_ctx in drm_modeset_lock.h.
Signed-off-by: Wang Wensheng wangwensheng4@huawei.com --- include/drm/drm_modeset_lock.h | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/include/drm/drm_modeset_lock.h b/include/drm/drm_modeset_lock.h index ec4f543c3d95..446e8af9aa08 100644 --- a/include/drm/drm_modeset_lock.h +++ b/include/drm/drm_modeset_lock.h @@ -27,6 +27,7 @@ #include <linux/types.h> /* stackdepot.h is not self-contained */ #include <linux/stackdepot.h> #include <linux/ww_mutex.h> +#include <linux/kabi.h>
struct drm_modeset_lock;
@@ -72,6 +73,8 @@ struct drm_modeset_acquire_ctx {
/* Perform interruptible waits on this context. */ bool interruptible; + KABI_RESERVE(1) + KABI_RESERVE(2) };
/**