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 5797BD2ECE9 for ; Tue, 20 Jan 2026 13:49:39 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id CBBF310E5E9; Tue, 20 Jan 2026 13:49:38 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="YniZtlPz"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.18]) by gabe.freedesktop.org (Postfix) with ESMTPS id 50A8210E0A2; Tue, 20 Jan 2026 13:49:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1768916977; x=1800452977; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=DvSXOwho82C6rShrPrjspQULjsPGHUWAwm0qWIl180E=; b=YniZtlPzaZ2XG10g/XuHcumgfQKWux7mrndrppE5FPdU7uIpxhg+oyYU H2wgXqoxjHDwhn0D2j8XdCDq2trYIG97WN/ck8KNCzFft0KynhmC2NM/V kfwIBOMOgjQ58F6vE9u0IFzhNx7TQ0SicT7lk2oBqOICu3wDSEr307Whh z5aT5TQ0awx6/5z1mYZBKbpTvy/un409hr4G31ymFY20M2g9r3mc8DVyx L3vzjmSEPu5QM0RrW984X27GIRUOCVT1JnxNfjQqvI0WJLI8m7L+2PKaP zf8dZZzgF8rYxiceSkm/eQ10VVj8juyUEfmRM+ZZMhM4KM4aWXAaGe/tu g==; X-CSE-ConnectionGUID: Ejt+I9sxRPOIpUbJOYG0qg== X-CSE-MsgGUID: T/QNl2TKSZWmVWBoq+nuew== X-IronPort-AV: E=McAfee;i="6800,10657,11676"; a="70177783" X-IronPort-AV: E=Sophos;i="6.21,240,1763452800"; d="scan'208";a="70177783" Received: from fmviesa005.fm.intel.com ([10.60.135.145]) by orvoesa110.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Jan 2026 05:49:37 -0800 X-CSE-ConnectionGUID: UuzNvBg0TRKmIW4SSMPD2A== X-CSE-MsgGUID: iPEejFCuTZK1vFgJ4qnb3Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.21,240,1763452800"; d="scan'208";a="210596557" Received: from egrumbac-mobl6.ger.corp.intel.com (HELO [10.245.244.250]) ([10.245.244.250]) by fmviesa005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Jan 2026 05:49:35 -0800 Message-ID: Date: Tue, 20 Jan 2026 14:49:26 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 0/2] drm, drm/xe: Fix xe SVM configs To: intel-xe@lists.freedesktop.org Cc: Matthew Auld , Himal Prasad Ghimiray , Dafna Hirschfeld , Matthew Brost , Rodrigo Vivi , dri-devel@lists.freedesktop.org References: <20260120113322.97654-1-thomas.hellstrom@linux.intel.com> Content-Language: en-US From: =?UTF-8?Q?Thomas_Hellstr=C3=B6m?= In-Reply-To: <20260120113322.97654-1-thomas.hellstrom@linux.intel.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: intel-xe@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Xe graphics driver List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-xe-bounces@lists.freedesktop.org Sender: "Intel-xe" On 1/20/26 12:33, Thomas Hellström wrote: > The first patch fixes the problem of xe userptr not being enabled if > CONFIG_DEVICE_PRIVATE is missing. > > Second patch explicitly selects CONFIG_DEVICE_PRIVATE if DRM_XE_GPUSVM > is enabled, which is probably what most distros want. This patch is > not Fixes: tags since some configurations may actively exclude > CONFIG_DEVICE_PRIVATE and it's undesirable if a stable update breaks > those. Hmm. Need to take also CONFIG_ZONE_DEVICE into account. Will respin. > > Cc: Matthew Auld > Cc: Himal Prasad Ghimiray > Cc: Thomas Hellström > Cc: Dafna Hirschfeld > Cc: Matthew Brost > Cc: "Thomas Hellström" > Cc: Rodrigo Vivi > Cc: dri-devel@lists.freedesktop.org > > Thomas Hellström (2): > drm, drm/xe: Fix xe userptr in the absence of CONFIG_DEVICE_PRIVATE > drm/xe: Select CONFIG_DEVICE_PRIVATE when DRM_XE_GPUSVM is selected > > drivers/gpu/drm/Kconfig | 2 +- > drivers/gpu/drm/xe/Kconfig | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) >