From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 265CFE77197 for ; Mon, 30 Dec 2024 12:53:05 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id DACD610E4D7; Mon, 30 Dec 2024 12:53:04 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="EtEFBCZd"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.13]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6062310E4D4; Mon, 30 Dec 2024 12:53:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1735563183; x=1767099183; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=IDvghJba7JjGPaVQsZq4GaUxd0zGSoYzKYUUvegtXB8=; b=EtEFBCZdzyiMl0HiYOSX2SA7CjCDTnD7BiohwkTvFqvO7YgWshKLwAgg r09yrtFGFVYxJ0JJL1Z1ytZUh76OSqjj3Yw24O0FcvRqgnk9ubMlkpRkT CbsV6vGAEVdTD9i3MHS1Pzux97ROl3Shc76ZEhfVFw5GYSBmNOuRcsSW8 AVj62z3AW1SSZeUyp+FbK674Ej5OjoFcgtmQACxUWqgwhO8hhgWR6cqea Ptx9IghJU8MlRsol3u0iEhk3ie3EoBEd0WCT+Sxo12n/iYMuEltk049Yq 5n9FDAd7jt/J2Z/tnET+ik0eLhtM+TEXLhVvtlaMvQMr5u/Fm6kBuqAUa w==; X-CSE-ConnectionGUID: NlgrwkNJROOVjrB2m265sg== X-CSE-MsgGUID: IcyREhpJSGWiAQAZehUloA== X-IronPort-AV: E=McAfee;i="6700,10204,11301"; a="46846512" X-IronPort-AV: E=Sophos;i="6.12,276,1728975600"; d="scan'208";a="46846512" Received: from orviesa005.jf.intel.com ([10.64.159.145]) by orvoesa105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Dec 2024 04:53:03 -0800 X-CSE-ConnectionGUID: 6SxJJcprTvWh1lZAVleZIA== X-CSE-MsgGUID: EdZp8m3YR9+crc8h0pPX9w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.12,224,1728975600"; d="scan'208";a="105780663" Received: from tejas-super-server.iind.intel.com ([10.145.169.166]) by orviesa005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Dec 2024 04:53:01 -0800 From: Tejas Upadhyay To: igt-dev@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Auld@freedesktop.org, Matthew , Tejas Upadhyay Subject: [PATCH V6 3/4] include/intel_drm_local.h: Add DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER Date: Mon, 30 Dec 2024 18:27:56 +0530 Message-Id: <20241230125757.2581381-4-tejas.upadhyay@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20241230125757.2581381-1-tejas.upadhyay@intel.com> References: <20241230125757.2581381-1-tejas.upadhyay@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: igt-dev@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development mailing list for IGT GPU Tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" For now dump into intel_drm_local.h. Once the uapi on the kernel side is merged, and is part of drm-next, we can sync the kernel headers and remove this. Reviewed-by: Matthew Auld Signed-off-by: Tejas Upadhyay --- include/drm-uapi-experimental/intel_drm_local.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/drm-uapi-experimental/intel_drm_local.h b/include/drm-uapi-experimental/intel_drm_local.h index b48c9e219..40e8dcc43 100644 --- a/include/drm-uapi-experimental/intel_drm_local.h +++ b/include/drm-uapi-experimental/intel_drm_local.h @@ -20,6 +20,8 @@ extern "C" { * clean these up when kernel uapi headers are sync'd. */ +#define DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER (1 << 0) + #if defined(__cplusplus) } #endif -- 2.34.1