Remove temporary workaround for upstream bug

This commit is contained in:
a2x 2024-03-31 12:05:25 +10:00
parent 1ff3b23a2a
commit 1a2b23b3c0
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ pub fn interfaces(process: &mut IntoProcessInstanceArcBox<'_>) -> Result<Interfa
process
.module_list()?
.iter()
.filter(|module| !module.name.starts_with("nvidia")) // Temporary workaround for upstream bug: https://github.com/memflow/memflow-native/blob/1b063fc573957498b88a13b6120120480bc65ea5/src/linux/mem.rs#L168
.filter_map(|module| {
let buf = process.read_raw(module.base, module.size as _).ok()?;