Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion volatility3/framework/symbols/linux/extensions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1574,7 +1574,9 @@ def _is_kernel_prior_to_struct_mount(self) -> bool:
'True' if the kernel lacks the 'mount' struct, typically indicating kernel < 3.3.
"""

return not self._context.symbol_space.has_type("mount")
return (not self._context.symbol_space.has_type("mount")) and self.has_member(
"mnt_parent"
)

def is_equal(self, vfsmount_ptr) -> bool:
"""Helper to make sure it is comparing two pointers to 'vfsmount'.
Expand Down
Loading