On Wed, 24 Mar 2021 15:04:11 +0200 "Tzvetomir Stoyanov (VMware)" <tz.stoyanov@xxxxxxxxx> wrote: > @@ -2601,7 +2605,8 @@ static int handle_options(struct tracecmd_input *handle) > * gtod. It is stored as ASCII with '0x' > * appended. > */ > - if (handle->flags & TRACECMD_FL_IGNORE_DATE) > + if (handle->flags & > + (TRACECMD_FL_IGNORE_DATE || TRACECMD_FL_RAW_TS)) Needs to be a binary 'or' "|", not a logical 'or' "||", as the above is the same as: if (handle->flags & 1) If I don't find anything else wrong in this series, I'll fix this myself. -- Steve > break; > offset = strtoll(buf, NULL, 0); > /* Convert from micro to nano */