From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D0492138359 for ; Tue, 28 Jul 2020 19:19:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E11FEE0918; Tue, 28 Jul 2020 19:19:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 948DBE0884 for ; Tue, 28 Jul 2020 19:19:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4697934F1DF for ; Tue, 28 Jul 2020 19:19:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61A1C2F4 for ; Tue, 28 Jul 2020 19:19:10 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1595963849.8b385d3cf6e678fcae6e7d3c915055a960bf6157.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mesa/mesa-20.0.8.ebuild media-libs/mesa/mesa-20.1.4.ebuild media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 8b385d3cf6e678fcae6e7d3c915055a960bf6157 X-VCS-Branch: master Date: Tue, 28 Jul 2020 19:19:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 805a301e-07a8-4cbf-973b-ac354e081199 X-Archives-Hash: 8166a81a7241143e90d0c9be811e3f00 commit: 8b385d3cf6e678fcae6e7d3c915055a960bf6157 Author: Matt Turner gentoo org> AuthorDate: Tue Jul 28 19:17:29 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Jul 28 19:17:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b385d3c media-libs/mesa: Check for CHECKPOINT_RESTORE on i965/iris Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-20.0.8.ebuild | 8 +++----- media-libs/mesa/mesa-20.1.4.ebuild | 8 +++----- media-libs/mesa/mesa-9999.ebuild | 8 +++----- 3 files changed, 9 insertions(+), 15 deletions(-) diff --git a/media-libs/mesa/mesa-20.0.8.ebuild b/media-libs/mesa/mesa-20.0.8.ebuild index 48dbdd650ef..8f36372581b 100644 --- a/media-libs/mesa/mesa-20.0.8.ebuild +++ b/media-libs/mesa/mesa-20.0.8.ebuild @@ -334,11 +334,9 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - # os_same_file_description requires the kcmp syscall, - # which is only available with CONFIG_CHECKPOINT_RESTORE=y. - # Currently only AMDGPU utilizes this function, so only AMDGPU users would - # get a spooky warning message if the syscall fails. - if use gallium && use video_cards_radeonsi; then + if ! use video_cards_i965 && + ! use video_cards_iris && + ! use video_cards_radeonsi; then CONFIG_CHECK="~CHECKPOINT_RESTORE" linux-info_pkg_setup fi diff --git a/media-libs/mesa/mesa-20.1.4.ebuild b/media-libs/mesa/mesa-20.1.4.ebuild index 00b4050b4e8..db0a161452c 100644 --- a/media-libs/mesa/mesa-20.1.4.ebuild +++ b/media-libs/mesa/mesa-20.1.4.ebuild @@ -334,11 +334,9 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - # os_same_file_description requires the kcmp syscall, - # which is only available with CONFIG_CHECKPOINT_RESTORE=y. - # Currently only AMDGPU utilizes this function, so only AMDGPU users would - # get a spooky warning message if the syscall fails. - if use gallium && use video_cards_radeonsi; then + if ! use video_cards_i965 && + ! use video_cards_iris && + ! use video_cards_radeonsi; then CONFIG_CHECK="~CHECKPOINT_RESTORE" linux-info_pkg_setup fi diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index ced0417b6d0..1e78bcd122f 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -333,11 +333,9 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - # os_same_file_description requires the kcmp syscall, - # which is only available with CONFIG_CHECKPOINT_RESTORE=y. - # Currently only AMDGPU utilizes this function, so only AMDGPU users would - # get a spooky warning message if the syscall fails. - if use gallium && use video_cards_radeonsi; then + if ! use video_cards_i965 && + ! use video_cards_iris && + ! use video_cards_radeonsi; then CONFIG_CHECK="~CHECKPOINT_RESTORE" linux-info_pkg_setup fi