On Mon, 2025-04-07 at 10:24 -0400, Jeff Layton wrote: > In particular, doing this makes NFS4ERR_NXIO look like -ENXIO when > the tracepoints fire. > > Signed-off-by: Jeff Layton <jlayton@xxxxxxxxxx> > --- > fs/nfs/nfs4trace.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/nfs/nfs4trace.h b/fs/nfs/nfs4trace.h > index > bc67fe6801b138204641319ecaf1115aac76af62..eb7d625d45e83f025ef96952660 > dded85aa0ca89 100644 > --- a/fs/nfs/nfs4trace.h > +++ b/fs/nfs/nfs4trace.h > @@ -2089,7 +2089,7 @@ DECLARE_EVENT_CLASS(nfs4_flexfiles_io_event, > TP_printk( > "error=%ld (%s) fileid=%02x:%02x:%llu > fhandle=0x%08x " > "offset=%llu count=%u stateid=%d:0x%08x > dstaddr=%s", > - -__entry->error, > + __entry->error, > show_nfs4_status(__entry->error), > MAJOR(__entry->dev), MINOR(__entry->dev), > (unsigned long long)__entry->fileid, > Hmm... I've been getting tired of not having the RPC level errors in the above, so I was actually thinking of changing those tracepoints to something more like this. 8<--------------------------------------------------------------------