diff --git a/lisa/trace.py b/lisa/trace.py index 8d3f6610f6a6d92828c0258619ca322496832052..b584a6c98b5271577008c8136db666030efe35b2 100644 --- a/lisa/trace.py +++ b/lisa/trace.py @@ -3535,7 +3535,7 @@ class Trace(Loggable, TraceBase): # 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):