From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.88]) by gabe.freedesktop.org (Postfix) with ESMTPS id A7F2D10E3E2 for ; Tue, 26 Sep 2023 13:01:21 +0000 (UTC) From: Francois Dugast To: igt-dev@lists.freedesktop.org Date: Tue, 26 Sep 2023 13:00:42 +0000 Message-Id: <20230926130054.6-13-francois.dugast@intel.com> In-Reply-To: <20230926130054.6-1-francois.dugast@intel.com> References: <20230926130054.6-1-francois.dugast@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH v3 12/24] drm-uapi/xe: Remove unused field of drm_xe_query_gt List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Rodrigo Vivi Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Rodrigo Vivi Align with commit ("drm/xe/uapi: Remove unused field of drm_xe_query_gt") Signed-off-by: Rodrigo Vivi Signed-off-by: Francois Dugast --- include/drm-uapi/xe_drm.h | 2 -- tests/intel/xe_query.c | 1 - 2 files changed, 3 deletions(-) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index 68cc5e051..a6773c244 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -355,8 +355,6 @@ struct drm_xe_query_gt { __u16 gt_id; /** @clock_freq: A clock frequency for timestamp */ __u32 clock_freq; - /** @features: Reserved for future information about GT features */ - __u64 features; /** * @native_mem_regions: Bit mask of instances from * drm_xe_query_mem_usage that lives on the same GPU/Tile and have diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c index eb8d52897..3aa2918f0 100644 --- a/tests/intel/xe_query.c +++ b/tests/intel/xe_query.c @@ -281,7 +281,6 @@ test_query_gts(int fd) igt_info("type: %d\n", gts->gts[i].type); igt_info("gt_id: %d\n", gts->gts[i].gt_id); igt_info("clock_freq: %u\n", gts->gts[i].clock_freq); - igt_info("features: 0x%016llx\n", gts->gts[i].features); igt_info("native_mem_regions: 0x%016llx\n", gts->gts[i].native_mem_regions); igt_info("slow_mem_regions: 0x%016llx\n", -- 2.34.1