forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
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-nonmm-stable-2023-11-02-14-08' of git://git.kernel.org/…
…pub/scm/linux/kernel/git/akpm/mm Pull non-MM updates from Andrew Morton: "As usual, lots of singleton and doubleton patches all over the tree and there's little I can say which isn't in the individual changelogs. The lengthier patch series are - 'kdump: use generic functions to simplify crashkernel reservation in arch', from Baoquan He. This is mainly cleanups and consolidation of the 'crashkernel=' kernel parameter handling - After much discussion, David Laight's 'minmax: Relax type checks in min() and max()' is here. Hopefully reduces some typecasting and the use of min_t() and max_t() - A group of patches from Oleg Nesterov which clean up and slightly fix our handling of reads from /proc/PID/task/... and which remove task_struct.thread_group" * tag 'mm-nonmm-stable-2023-11-02-14-08' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (64 commits) scripts/gdb/vmalloc: disable on no-MMU scripts/gdb: fix usage of MOD_TEXT not defined when CONFIG_MODULES=n .mailmap: add address mapping for Tomeu Vizoso mailmap: update email address for Claudiu Beznea tools/testing/selftests/mm/run_vmtests.sh: lower the ptrace permissions .mailmap: map Benjamin Poirier's address scripts/gdb: add lx_current support for riscv ocfs2: fix a spelling typo in comment proc: test ProtectionKey in proc-empty-vm test proc: fix proc-empty-vm test with vsyscall fs/proc/base.c: remove unneeded semicolon do_io_accounting: use sig->stats_lock do_io_accounting: use __for_each_thread() ocfs2: replace BUG_ON() at ocfs2_num_free_extents() with ocfs2_error() ocfs2: fix a typo in a comment scripts/show_delta: add __main__ judgement before main code treewide: mark stuff as __ro_after_init fs: ocfs2: check status values proc: test /proc/${pid}/statm compiler.h: move __is_constexpr() to compiler.h ...
- Loading branch information
Showing
106 changed files
with
894 additions
and
1,000 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 |
---|---|---|
|
@@ -95,6 +95,7 @@ Ben M Cahill <[email protected]> | |
Ben Widawsky <[email protected]> <[email protected]> | ||
Ben Widawsky <[email protected]> <[email protected]> | ||
Ben Widawsky <[email protected]> <[email protected]> | ||
Benjamin Poirier <[email protected]> <[email protected]> | ||
Bjorn Andersson <[email protected]> <[email protected]> | ||
Bjorn Andersson <[email protected]> <[email protected]> | ||
Bjorn Andersson <[email protected]> <[email protected]> | ||
|
@@ -128,6 +129,7 @@ Christian Brauner <[email protected]> <[email protected]> | |
Christian Marangi <[email protected]> | ||
Christophe Ricard <[email protected]> | ||
Christoph Hellwig <[email protected]> | ||
Claudiu Beznea <[email protected]> <[email protected]> | ||
Colin Ian King <[email protected]> <[email protected]> | ||
Corey Minyard <[email protected]> | ||
Damian Hobson-Garcia <[email protected]> | ||
|
@@ -568,6 +570,7 @@ Takashi YOSHII <[email protected]> | |
Tamizh Chelvam Raja <[email protected]> <[email protected]> | ||
Taniya Das <[email protected]> <[email protected]> | ||
Tejun Heo <[email protected]> | ||
Tomeu Vizoso <[email protected]> <[email protected]> | ||
Thomas Graf <[email protected]> | ||
Thomas Körper <[email protected]> <[email protected]> | ||
Thomas Pedersen <[email protected]> | ||
|
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,10 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-only */ | ||
#ifndef _ARM64_CRASH_CORE_H | ||
#define _ARM64_CRASH_CORE_H | ||
|
||
/* Current arm64 boot protocol requires 2MB alignment */ | ||
#define CRASH_ALIGN SZ_2M | ||
|
||
#define CRASH_ADDR_LOW_MAX arm64_dma_phys_limit | ||
#define CRASH_ADDR_HIGH_MAX (PHYS_MASK + 1) | ||
#endif |
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
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,11 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-only */ | ||
#ifndef _RISCV_CRASH_CORE_H | ||
#define _RISCV_CRASH_CORE_H | ||
|
||
#define CRASH_ALIGN PMD_SIZE | ||
|
||
#define CRASH_ADDR_LOW_MAX dma32_phys_limit | ||
#define CRASH_ADDR_HIGH_MAX memblock_end_of_DRAM() | ||
|
||
extern phys_addr_t memblock_end_of_DRAM(void); | ||
#endif |
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.