This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 3d51f7abf1c591dfd47d0070e2b6942ef91301af Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Sun, 1 Jun 2025 22:14:13 +0000 | |
Subject: [PATCH] Fix for NVIDIA 470.256.02 driver for GCC 15 | |
conftest.sh invokes GCC on its own, without going through the usual | |
kernel Makefile that would add the proper CFLAGS (e.g. -std=gnu11). | |
This means that it builds with the default of GCC, which in GCC 15 | |
has changed to -std=gnu23 which and has backwards incompatible changes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c9a877ea48935bb40597cc2e7d88b0035a27e6f2 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Sat, 12 Apr 2025 22:46:59 +0000 | |
Subject: [PATCH] Tentative fix for NVIDIA 470.256.02 driver for Linux 6.15-rc1 | |
The trickier part of this patch is that vm_flags_set and vm_flags_clear | |
depend on a GPL-only symbol (__vma_start_write) since Linux >=6.15. | |
In some situations (mainly nvidia_mmap_helper), we can replace it by | |
vm_flags_reset as the VMA gets locked by other previous calls. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From a0acb522ad849b2e2a3019794a293fdeb717ba03 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Sun, 23 Feb 2025 14:29:21 +0000 | |
Subject: [PATCH] Tentative patch for broadcom-wl 6.30.223.271 driver for Linux | |
6.15-rc1 | |
Due to the fact that the driver is unmaintained, and can't be adapted | |
to the current Linux kernel security standards (e.g. IBT), as it has a | |
proprietary blob; and this is likely to be an ever-growing security | |
risk, I have added a warning when the module is loaded. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 1dce6fd0b32d31e897143c4ac04eb9a8929bc1e5 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Sun, 8 Dec 2024 17:57:43 +0000 | |
Subject: [PATCH] Tentative fix for broadcom-wl 6.30.223.271 driver for Linux | |
6.14-rc1 | |
Related to the new parameter for get_tx_power introduced in | |
"wifi: cfg80211: send MLO links tx power info in GET_INTERFACE" | |
(Rameshkumar Sundaram, 25 Nov 2024). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From bee3ff1153f7b42491d2a0552d6f9a66a307ec1a Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Sun, 15 Dec 2024 17:56:03 +0000 | |
Subject: [PATCH] Tentative fix for NVIDIA 470.256.02 driver for Linux 6.14-rc1 | |
--- | |
nvidia-drm/nvidia-drm-drv.c | 3 +++ | |
1 file changed, 3 insertions(+) | |
diff --git a/nvidia-drm/nvidia-drm-drv.c b/nvidia-drm/nvidia-drm-drv.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <sys/syscall.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <errno.h> | |
#include <linux/reboot.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 5788a19e88aac78e6b2ec8bef7cb094fc14cfbf0 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Sat, 12 Oct 2024 11:54:40 +0000 | |
Subject: [PATCH] Tentative patch for broadcom-wl 6.30.223.271 driver for Linux | |
6.13-rc1 | |
The net/lib80211.h header has been removed by commit | |
"wifi: ipw2x00/lib80211: move remaining lib80211 into libipw" | |
(Johannes Berg, 7 Oct 2024). | |
The header does not appear to be actually used anywhere, so remove it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 9f91b171f680648647580c163bbc9cc1641e3920 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Sat, 16 Nov 2024 22:45:21 +0000 | |
Subject: [PATCH] Tentative fix for NVIDIA 470.256.02 driver for Linux 6.13-rc1 | |
--- | |
nvidia-modeset/nvidia-modeset.Kbuild | 8 +++++--- | |
nvidia/nvidia.Kbuild | 8 +++++--- | |
2 files changed, 10 insertions(+), 6 deletions(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 5575c6342f62f56b361480c97367b09c011bcc65 Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Thu, 3 Oct 2024 22:21:36 +0000 | |
Subject: [PATCH] Tentative patch for broadcom-wl 6.30.223.271 driver for Linux | |
6.12-rc2 | |
Just a trivial fix for 5f60d5f6bbc1 ("move asm/unaligned.h to | |
linux/unaligned.h"). | |
--- | |
src/wl/sys/wl_linux.c | 4 ++++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 839b964bd5be20275a4d1add020e68e407380adb Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <[email protected]> | |
Date: Sat, 17 Aug 2024 14:26:04 +0000 | |
Subject: [PATCH] Tentative fix for NVIDIA 470.256.02 driver for Linux 6.12-rc1 | |
Note that the fix requires enabling DRM kernel mode setting | |
(add the `nvidia-drm.modeset=1` parameter to the kernel command line). | |
(Thanks xtexChooser for the memory management fixes!) | |
--- |
NewerOlder