diff options
author | 2024-03-02 17:37:42 -0500 | |
---|---|---|
committer | 2024-03-02 17:37:42 -0500 | |
commit | 716de4e052aef03d91ee22f639257565d995c4cc (patch) | |
tree | 056bb5bfa856949821d54982a1b1ce969222a176 | |
parent | Linux patch 6.6.19 (diff) | |
download | linux-patches-6.6-26.tar.gz linux-patches-6.6-26.tar.bz2 linux-patches-6.6-26.zip |
Linux patch 6.6.206.6-26
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
-rw-r--r-- | 0000_README | 4 | ||||
-rw-r--r-- | 1019_linux-6.6.20.patch | 33 |
2 files changed, 37 insertions, 0 deletions
diff --git a/0000_README b/0000_README index fc6a3e20..48a0b288 100644 --- a/0000_README +++ b/0000_README @@ -119,6 +119,10 @@ Patch: 1018_linux-6.6.19.patch From: https://www.kernel.org Desc: Linux 6.6.19 +Patch: 1019_linux-6.6.20.patch +From: https://www.kernel.org +Desc: Linux 6.6.20 + Patch: 1510_fs-enable-link-security-restrictions-by-default.patch From: http://sources.debian.net/src/linux/3.16.7-ckt4-3/debian/patches/debian/fs-enable-link-security-restrictions-by-default.patch/ Desc: Enable link security restrictions by default. diff --git a/1019_linux-6.6.20.patch b/1019_linux-6.6.20.patch new file mode 100644 index 00000000..e00a3b82 --- /dev/null +++ b/1019_linux-6.6.20.patch @@ -0,0 +1,33 @@ +diff --git a/Makefile b/Makefile +index 6130b6bd8d6c5..a3bdd583afcc6 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 6 + PATCHLEVEL = 6 +-SUBLEVEL = 19 ++SUBLEVEL = 20 + EXTRAVERSION = + NAME = Hurr durr I'ma ninja sloth + +diff --git a/fs/ntfs3/frecord.c b/fs/ntfs3/frecord.c +index 61c51650266ef..22fe7f58ad638 100644 +--- a/fs/ntfs3/frecord.c ++++ b/fs/ntfs3/frecord.c +@@ -2457,7 +2457,6 @@ int ni_read_frame(struct ntfs_inode *ni, u64 frame_vbo, struct page **pages, + struct ATTR_LIST_ENTRY *le = NULL; + struct runs_tree *run = &ni->file.run; + u64 valid_size = ni->i_valid; +- loff_t i_size = i_size_read(&ni->vfs_inode); + u64 vbo_disk; + size_t unc_size; + u32 frame_size, i, npages_disk, ondisk_size; +@@ -2509,6 +2508,7 @@ int ni_read_frame(struct ntfs_inode *ni, u64 frame_vbo, struct page **pages, + err = -EOPNOTSUPP; + goto out1; + #else ++ loff_t i_size = i_size_read(&ni->vfs_inode); + u32 frame_bits = ni_ext_compress_bits(ni); + u64 frame64 = frame_vbo >> frame_bits; + u64 frames, vbo_data; |