From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.43]) by gabe.freedesktop.org (Postfix) with ESMTPS id E842910E030 for ; Mon, 13 Nov 2023 20:38:48 +0000 (UTC) Date: Mon, 13 Nov 2023 15:38:41 -0500 From: Rodrigo Vivi To: Francois Dugast Message-ID: References: <20231110155211.7-1-francois.dugast@intel.com> <20231110155211.7-5-francois.dugast@intel.com> Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20231110155211.7-5-francois.dugast@intel.com> MIME-Version: 1.0 Subject: Re: [igt-dev] [PATCH v1 4/7] drm-uapi/xe: Remove unused inaccessible memory region List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: igt-dev@lists.freedesktop.org Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: On Fri, Nov 10, 2023 at 03:52:08PM +0000, Francois Dugast wrote: > Align with commit ("drm/xe/uapi: Remove unused inaccessible memory region") > > Signed-off-by: Francois Dugast Reviewed-by: Rodrigo Vivi > --- > include/drm-uapi/xe_drm.h | 5 ----- > tests/intel/xe_query.c | 2 -- > 2 files changed, 7 deletions(-) > > diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h > index 1d8dc1b9c..68317a82e 100644 > --- a/include/drm-uapi/xe_drm.h > +++ b/include/drm-uapi/xe_drm.h > @@ -360,11 +360,6 @@ struct drm_xe_query_gt { > * they live on a different GPU/Tile. > */ > __u64 slow_mem_regions; > - /** > - * @inaccessible_mem_regions: Bit mask of instances from > - * drm_xe_query_mem_usage that is not accessible by this GT at all. > - */ > - __u64 inaccessible_mem_regions; > /** @reserved: Reserved */ > __u64 reserved[8]; > }; > diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c > index 2cff75414..e6258ff01 100644 > --- a/tests/intel/xe_query.c > +++ b/tests/intel/xe_query.c > @@ -285,8 +285,6 @@ test_query_gt_list(int fd) > gt_list->gt_list[i].native_mem_regions); > igt_info("slow_mem_regions: 0x%016llx\n", > gt_list->gt_list[i].slow_mem_regions); > - igt_info("inaccessible_mem_regions: 0x%016llx\n", > - gt_list->gt_list[i].inaccessible_mem_regions); > } > } > > -- > 2.34.1 >