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:
Omar Sandoval 2023-10-25 16:47:20 -07:00
parent 59702918c9
commit c63df3827a
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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",