We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ea6e9 commit ce49029Copy full SHA for ce49029
volatility3/framework/plugins/linux/sockstat.py
@@ -77,7 +77,9 @@ def _build_network_devices_map(self, netns_id: int) -> Dict:
77
net_device_symname = (
78
self._vmlinux.symbol_table_name + constants.BANG + "net_device"
79
)
80
- for net_dev in net.dev_base_head.to_list(net_device_symname, "dev_list"):
+ for net_dev in network.dev_base_head.to_list(
81
+ net_device_symname, "dev_list"
82
+ ):
83
if (
84
isinstance(netns_id, NotAvailableValue)
85
or network.get_inode() != netns_id
0 commit comments