mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-17 20:35:40 +02:00
Merge pull request #1868 from Abyss-W4tcher/fix_broken_mount_enum_after_6_13
Linux: Fix broken mount enumeration on 6.13+
This commit is contained in:
@@ -2005,8 +2005,9 @@ class mnt_namespace(objects.StructType):
|
||||
self._context, self
|
||||
)
|
||||
for node in self.mounts.get_nodes():
|
||||
# See kernel's node_to_mount()
|
||||
mnt = linux.LinuxUtilities.container_of(
|
||||
node, "mount", "mnt_list", vmlinux
|
||||
node, "mount", "mnt_node", vmlinux
|
||||
)
|
||||
yield mnt
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user