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 CFAD313835B for ; Sat, 27 Feb 2021 15:38:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7407E095E; Sat, 27 Feb 2021 15:38:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 8965FE095E for ; Sat, 27 Feb 2021 15:38:09 +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 9A1B034112F for ; Sat, 27 Feb 2021 15:38:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FEA9532 for ; Sat, 27 Feb 2021 15:38:07 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1614440131.7f6317d96ed9ef220eea6945d03fb77e1a29d197.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/nvidia-drivers/files/nvidia-drivers-455.45.01-reduce-kmalloc-limit.patch X-VCS-Directories: x11-drivers/nvidia-drivers/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 7f6317d96ed9ef220eea6945d03fb77e1a29d197 X-VCS-Branch: master Date: Sat, 27 Feb 2021 15:38:07 +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: 819e8fe7-766d-4e3c-a2f8-4680ca5e5cc3 X-Archives-Hash: 2addbc6863a4375b75c7163d56b14ac9 commit: 7f6317d96ed9ef220eea6945d03fb77e1a29d197 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Feb 23 16:34:44 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Feb 27 15:35:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f6317d9 x11-drivers/nvidia-drivers: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/19617 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> ...nvidia-drivers-455.45.01-reduce-kmalloc-limit.patch | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/x11-drivers/nvidia-drivers/files/nvidia-drivers-455.45.01-reduce-kmalloc-limit.patch b/x11-drivers/nvidia-drivers/files/nvidia-drivers-455.45.01-reduce-kmalloc-limit.patch deleted file mode 100644 index c61033bf2a9..00000000000 --- a/x11-drivers/nvidia-drivers/files/nvidia-drivers-455.45.01-reduce-kmalloc-limit.patch +++ /dev/null @@ -1,18 +0,0 @@ -Patch taken from - https://forums.developer.nvidia.com/t/455-23-04-page-allocation-failure-in-kernel-module-at-random-points/155250/55 -Bug: https://bugs.gentoo.org/755497 -Credits go to Gregory Beauregard for pointing this out - ---- a/kernel/nvidia-modeset/nvidia-modeset-linux.c -+++ b/kernel/nvidia-modeset/nvidia-modeset-linux.c -@@ -282,8 +282,8 @@ - * are called while nvkms_lock is held. - *************************************************************************/ - --/* Don't use kmalloc for allocations larger than 128k */ --#define KMALLOC_LIMIT (128 * 1024) -+/* Don't use kmalloc for allocations larger than one page */ -+#define KMALLOC_LIMIT PAGE_SIZE - - void* NVKMS_API_CALL nvkms_alloc(size_t size, NvBool zero) - {