mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-22 17:23:06 +00:00
docs: document that drgn.helpers.linux.mm also supports ppc64 now
Fixes: 191569bf31
("ppc64: add virtual address translation support")
Signed-off-by: Omar Sandoval <osandov@osandov.com>
This commit is contained in:
parent
59702918c9
commit
c63df3827a
@ -6,8 +6,8 @@ Memory Management
|
||||
-----------------
|
||||
|
||||
The ``drgn.helpers.linux.mm`` module provides helpers for working with the
|
||||
Linux memory management (MM) subsystem. Only AArch64, s390x, and x86-64 are
|
||||
currently supported.
|
||||
Linux memory management (MM) subsystem. Only AArch64, ppc64, s390x, and x86-64
|
||||
are currently supported.
|
||||
"""
|
||||
|
||||
import operator
|
||||
|
@ -91,6 +91,8 @@ skip_unless_have_test_kmod = unittest.skipUnless(
|
||||
"DRGN_TEST_KMOD" in os.environ, "test requires drgn_test Linux kernel module"
|
||||
)
|
||||
|
||||
# Please keep this in sync with docs/support_matrix.rst and the module
|
||||
# docstring in drgn/helpers/linux/mm.py.
|
||||
HAVE_FULL_MM_SUPPORT = NORMALIZED_MACHINE_NAME in (
|
||||
"aarch64",
|
||||
"ppc64",
|
||||
|
Loading…
Reference in New Issue
Block a user