summaryrefslogtreecommitdiffstats
path: root/scripts/gdb
diff options
context:
space:
mode:
authorKuan-Ying Lee <kuan-ying.lee@canonical.com>2024-06-19 15:49:07 +0800
committerAndrew Morton <akpm@linux-foundation.org>2024-06-28 19:36:28 -0700
commitf2eaed1565acc2bdeb5c433f5f6c7bd7a0d62db1 (patch)
tree88c501b2a3c2d27088d800272e4eaed618de3085 /scripts/gdb
parent63ce5947ef45071d825d4712d6c5ece13f1ce2f6 (diff)
downloadlinux-f2eaed1565acc2bdeb5c433f5f6c7bd7a0d62db1.tar.gz
linux-f2eaed1565acc2bdeb5c433f5f6c7bd7a0d62db1.tar.bz2
linux-f2eaed1565acc2bdeb5c433f5f6c7bd7a0d62db1.zip
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/20240619074911.100434-3-kuan-ying.lee@canonical.com Fixes: 3e35d303ab7d ("arm64: module: rework module VA range selection") Signed-off-by: Kuan-Ying Lee <kuan-ying.lee@canonical.com> Cc: Jan Kiszka <jan.kiszka@siemens.com> Cc: Kieran Bingham <kbingham@kernel.org> Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'scripts/gdb')
-rw-r--r--scripts/gdb/linux/mm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gdb/linux/mm.py b/scripts/gdb/linux/mm.py
index 30738f174fe2..e0461248abe2 100644
--- a/scripts/gdb/linux/mm.py
+++ b/scripts/gdb/linux/mm.py
@@ -33,7 +33,7 @@ class aarch64_page_ops():
def __init__(self):
self.SUBSECTION_SHIFT = 21
self.SEBSECTION_SIZE = 1 << self.SUBSECTION_SHIFT
- self.MODULES_VSIZE = 128 * 1024 * 1024
+ self.MODULES_VSIZE = 2 * 1024 * 1024 * 1024
if constants.LX_CONFIG_ARM64_64K_PAGES:
self.SECTION_SIZE_BITS = 29