[igt-dev] [PATCH v2 20/64] drm-uapi/xe: Remove unused QUERY_CONFIG_MEM_REGION_COUNT
Francois Dugast
francois.dugast at intel.com
Fri Nov 3 14:43:15 UTC 2023
Align with commit ("drm/xe/uapi: Remove unused QUERY_CONFIG_MEM_REGION_COUNT")
Signed-off-by: Francois Dugast <francois.dugast at intel.com>
---
include/drm-uapi/xe_drm.h | 5 +----
tests/intel/xe_query.c | 3 +--
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
index beaeb3f06..dc0c35e06 100644
--- a/include/drm-uapi/xe_drm.h
+++ b/include/drm-uapi/xe_drm.h
@@ -342,8 +342,6 @@ struct drm_xe_query_mem_usage {
* - %DRM_XE_QUERY_CONFIG_VA_BITS - Maximum bits of a virtual address
* - %DRM_XE_QUERY_CONFIG_GT_COUNT - Total number of GTs for the entire
* device
- * - %DRM_XE_QUERY_CONFIG_MEM_REGION_COUNT - Total number of accessible
- * memory regions
* - %DRM_XE_QUERY_CONFIG_MAX_EXEC_QUEUE_PRIORITY - Value of the highest
* available exec queue priority
*/
@@ -357,8 +355,7 @@ struct drm_xe_query_config {
#define DRM_XE_QUERY_CONFIG_MIN_ALIGNMENT 2
#define DRM_XE_QUERY_CONFIG_VA_BITS 3
#define DRM_XE_QUERY_CONFIG_GT_COUNT 4
-#define DRM_XE_QUERY_CONFIG_MEM_REGION_COUNT 5
-#define DRM_XE_QUERY_CONFIG_MAX_EXEC_QUEUE_PRIORITY 6
+#define DRM_XE_QUERY_CONFIG_MAX_EXEC_QUEUE_PRIORITY 5
/** @info: array of elements containing the config info */
__u64 info[];
};
diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c
index 29624a770..5e657a4d4 100644
--- a/tests/intel/xe_query.c
+++ b/tests/intel/xe_query.c
@@ -1,3 +1,4 @@
+
// SPDX-License-Identifier: MIT
/*
* Copyright © 2022 Intel Corporation
@@ -374,8 +375,6 @@ test_query_config(int fd)
config->info[DRM_XE_QUERY_CONFIG_VA_BITS]);
igt_info("DRM_XE_QUERY_CONFIG_GT_COUNT\t\t%llu\n",
config->info[DRM_XE_QUERY_CONFIG_GT_COUNT]);
- igt_info("DRM_XE_QUERY_CONFIG_MEM_REGION_COUNT\t%llu\n",
- config->info[DRM_XE_QUERY_CONFIG_MEM_REGION_COUNT]);
igt_info("DRM_XE_QUERY_CONFIG_MAX_EXEC_QUEUE_PRIORITY\t%llu\n",
config->info[DRM_XE_QUERY_CONFIG_MAX_EXEC_QUEUE_PRIORITY]);
dump_hex_debug(config, query.size);
--
2.34.1
More information about the igt-dev
mailing list