forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'mm-hotfixes-stable-2022-10-28' of git://git.kernel.org/pub…
…/scm/linux/kernel/git/akpm/mm Pull misc hotfixes from Andrew Morton: "Eight fix pre-6.0 bugs and the remainder address issues which were introduced in the 6.1-rc merge cycle, or address issues which aren't considered sufficiently serious to warrant a -stable backport" * tag 'mm-hotfixes-stable-2022-10-28' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (23 commits) mm: multi-gen LRU: move lru_gen_add_mm() out of IRQ-off region lib: maple_tree: remove unneeded initialization in mtree_range_walk() mmap: fix remap_file_pages() regression mm/shmem: ensure proper fallback if page faults mm/userfaultfd: replace kmap/kmap_atomic() with kmap_local_page() x86: fortify: kmsan: fix KMSAN fortify builds x86: asm: make sure __put_user_size() evaluates pointer once Kconfig.debug: disable CONFIG_FRAME_WARN for KMSAN by default x86/purgatory: disable KMSAN instrumentation mm: kmsan: export kmsan_copy_page_meta() mm: migrate: fix return value if all subpages of THPs are migrated successfully mm/uffd: fix vma check on userfault for wp mm: prep_compound_tail() clear page->private mm,madvise,hugetlb: fix unexpected data loss with MADV_DONTNEED on hugetlbfs mm/page_isolation: fix clang deadcode warning fs/ext4/super.c: remove unused `deprecated_msg' ipc/msg.c: fix percpu_counter use after free memory tier, sysfs: rename attribute "nodes" to "nodelist" MAINTAINERS: git://github.com -> https://github.com for nilfs2 mm/kmemleak: prevent soft lockup in kmemleak_scan()'s object iteration loops ...
- Loading branch information
Showing
28 changed files
with
196 additions
and
68 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ Description: A collection of all the memory tiers allocated. | |
|
||
|
||
What: /sys/devices/virtual/memory_tiering/memory_tierN/ | ||
/sys/devices/virtual/memory_tiering/memory_tierN/nodes | ||
/sys/devices/virtual/memory_tiering/memory_tierN/nodelist | ||
Date: August 2022 | ||
Contact: Linux memory management mailing list <[email protected]> | ||
Description: Directory with details of a specific memory tier | ||
|
@@ -21,5 +21,5 @@ Description: Directory with details of a specific memory tier | |
A smaller value of N implies a higher (faster) memory tier in the | ||
hierarchy. | ||
|
||
nodes: NUMA nodes that are part of this memory tier. | ||
nodelist: NUMA nodes that are part of this memory tier. | ||
|
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 |
---|---|---|
|
@@ -14523,7 +14523,7 @@ L: [email protected] | |
S: Supported | ||
W: https://nilfs.sourceforge.io/ | ||
W: https://nilfs.osdn.jp/ | ||
T: git git://github.com/konis/nilfs2.git | ||
T: git https://github.com/konis/nilfs2.git | ||
F: Documentation/filesystems/nilfs2.rst | ||
F: fs/nilfs2/ | ||
F: include/trace/events/nilfs2.h | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -1741,10 +1741,6 @@ static const struct fs_parameter_spec ext4_param_specs[] = { | |
|
||
#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3)) | ||
|
||
static const char deprecated_msg[] = | ||
"Mount option \"%s\" will be removed by %s\n" | ||
"Contact [email protected] if you think we should keep it.\n"; | ||
|
||
#define MOPT_SET 0x0001 | ||
#define MOPT_CLEAR 0x0002 | ||
#define MOPT_NOSUPPORT 0x0004 | ||
|
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
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
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
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
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,21 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
/* | ||
* KMSAN string functions API used in other headers. | ||
* | ||
* Copyright (C) 2022 Google LLC | ||
* Author: Alexander Potapenko <[email protected]> | ||
* | ||
*/ | ||
#ifndef _LINUX_KMSAN_STRING_H | ||
#define _LINUX_KMSAN_STRING_H | ||
|
||
/* | ||
* KMSAN overrides the default memcpy/memset/memmove implementations in the | ||
* kernel, which requires having __msan_XXX function prototypes in several other | ||
* headers. Keep them in one place instead of open-coding. | ||
*/ | ||
void *__msan_memcpy(void *dst, const void *src, size_t size); | ||
void *__msan_memset(void *s, int c, size_t n); | ||
void *__msan_memmove(void *dest, const void *src, size_t len); | ||
|
||
#endif /* _LINUX_KMSAN_STRING_H */ |
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
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
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
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
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
Oops, something went wrong.