Skip to content

Commit

Permalink
Add Linux 6.0.16
Browse files Browse the repository at this point in the history
This change updates the kernel to Linux 6.0.16.
  • Loading branch information
fabianishere committed Feb 25, 2023
1 parent 8ed6208 commit 625819f
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 1 deletion.
Binary file modified crack.bundle
Binary file not shown.
6 changes: 6 additions & 0 deletions debian/changelog
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.
Expand Down
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 && \
1 change: 1 addition & 0 deletions debian/patches/series.linux
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ pve/0022-KVM-svm-drop-explicit-return-value-of-kvm_vcpu_map.patch
pve/0023-KVM-x86-SVM-use-smram-structs.patch
pve/0024-KVM-x86-SVM-don-t-save-SVM-state-to-SMRAM-when-VM-is.patch
pve/0025-KVM-x86-smm-preserve-interrupt-shadow-in-SMRAM.patch
pve/0026-Revert-fortify-Do-not-cast-to-unsigned-char.patch
2 changes: 1 addition & 1 deletion linux
Submodule linux updated from 0106d8 to 29e1bc

0 comments on commit 625819f

Please sign in to comment.