diff --git a/lisa/trace.py b/lisa/trace.py index 8d3f6610f6..b584a6c98b 100644 --- a/lisa/trace.py +++ b/lisa/trace.py @@ -3535,7 +3535,7 @@ def _select_userspace(self, source_event, meta_event, df): # That said, it's not the end of the world if we don't filter on that # as the meta event name is supposed to be unique anyway if not is_numeric_dtype(df['ip'].dtype): - df = df[df['ip'] == 'tracing_mark_write'] + df = df[df['ip'].str.startswith('tracing_mark_write')] return (df, 'buf') def _select_trace_printk(self, source_event, meta_event, df):