-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change updates the kernel to Linux 6.0.16.
- Loading branch information
1 parent
8ed6208
commit 625819f
Showing
5 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
pve-kernel (6.0.16-1) edge; urgency=medium | ||
|
||
* Update to Linux 6.0.16. | ||
|
||
-- Fabian Mastenbroek <[email protected]> Sun, 01 Jan 2023 12:11:01 +0000 | ||
|
||
pve-kernel (6.0.15-1) edge; urgency=medium | ||
|
||
* Update to Linux 6.0.15. | ||
|
29 changes: 29 additions & 0 deletions
29
debian/patches/pve/0026-Revert-fortify-Do-not-cast-to-unsigned-char.patch
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Thomas Lamprecht <[email protected]> | ||
Date: Tue, 10 Jan 2023 08:52:40 +0100 | ||
Subject: [PATCH] Revert "fortify: Do not cast to "unsigned char"" | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
|
||
This reverts commit 106b7a61c488d2022f44e3531ce33461c7c0685f. | ||
|
||
Signed-off-by: Thomas Lamprecht <[email protected]> | ||
Signed-off-by: Fabian Grünbichler <[email protected]> | ||
--- | ||
include/linux/fortify-string.h | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/include/linux/fortify-string.h b/include/linux/fortify-string.h | ||
index 5001a11258e4..1067a8450826 100644 | ||
--- a/include/linux/fortify-string.h | ||
+++ b/include/linux/fortify-string.h | ||
@@ -18,7 +18,7 @@ void __write_overflow_field(size_t avail, size_t wanted) __compiletime_warning(" | ||
|
||
#define __compiletime_strlen(p) \ | ||
({ \ | ||
- char *__p = (char *)(p); \ | ||
+ unsigned char *__p = (unsigned char *)(p); \ | ||
size_t __ret = SIZE_MAX; \ | ||
size_t __p_size = __member_size(p); \ | ||
if (__p_size != SIZE_MAX && \ |
This file contains 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
Submodule linux
updated
from 0106d8 to 29e1bc