Skip to content

Commit f2eaed1

Browse files
kylee0215akpm00
authored andcommitted
scripts/gdb: rework module VA range
After we enlarge the module VA range, we also change the module VA range in gdb scripts. Link: https://lkml.kernel.org/r/[email protected] Fixes: 3e35d30 ("arm64: module: rework module VA range selection") Signed-off-by: Kuan-Ying Lee <[email protected]> Cc: Jan Kiszka <[email protected]> Cc: Kieran Bingham <[email protected]> Cc: Kirill A. Shutemov <[email protected]> Cc: Michael Ellerman <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 63ce594 commit f2eaed1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/gdb/linux/mm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class aarch64_page_ops():
3333
def __init__(self):
3434
self.SUBSECTION_SHIFT = 21
3535
self.SEBSECTION_SIZE = 1 << self.SUBSECTION_SHIFT
36-
self.MODULES_VSIZE = 128 * 1024 * 1024
36+
self.MODULES_VSIZE = 2 * 1024 * 1024 * 1024
3737

3838
if constants.LX_CONFIG_ARM64_64K_PAGES:
3939
self.SECTION_SIZE_BITS = 29

0 commit comments

Comments
 (0)