Re: [PATCH v3 3/3] nfs: refactor nfs_errorf macros and remove unused ones

From: Sean Chang

Date: Fri Mar 20 2026 - 13:45:06 EST


On Thu, Mar 19, 2026 at 11:49 PM Andy Shevchenko
<andriy.shevchenko@xxxxxxxxx> wrote:
>
> > > > #define nfs_invalf(fc, fmt, ...) ((fc)->log.log ? \
> > > > invalf(fc, fmt, ## __VA_ARGS__) : \
> > >
> > > > invalf(fc, fmt, ## __VA_ARGS__) : \
> > > > ({ dfprintk(fac, fmt "\n", ## __VA_ARGS__); -EINVAL; }))
> > >
> > > Why not all of them?
> >
> > I initially only refactored nfs_errorf because it doesn't return a value.
> > For nfs_invalf, it will always return -EINVAL. Would you prefer me to
> > refactor it using the ({ ... }) statement expression pattern to keep the
> > return value, or is it better to leave it as is ?
>
> I don't think in this case it improves the situation. Yeah, it's unfortunate.
>
> > #define nfs_invalf(fc, fmt, ...) ({ \
> > if ((fc)->log.log) \
> > invalf(fc, fmt, ## __VA_ARGS__); \
>
> I believe this already has an error code inside, that's why it's only added to
> the 'else' branch.
>
> > else \
> > dfprintk(fac, fmt "\n", ## __VA_ARGS__);\
> > -EINVAL; \
> > })
>
> Okay, let's go with your original approach (ideally these all probably should
> be replaced by static inline:s).
>
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxx>
> Tested-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxx>
>

Thanks for your review and for providing the tags!
I'll include your Reviewed-by and Tested-by tags in the v4 submission.

> Unrelated to the series, but if you want to address these:
>
> nfs/super.c:1170:49: warning: incorrect type in initializer (different address spaces)
> nfs/super.c:1170:49: expected struct rpc_xprt *xprt1
> nfs/super.c:1170:49: got struct rpc_xprt [noderef] __rcu *cl_xprt
> nfs/super.c:1171:49: warning: incorrect type in initializer (different address spaces)
> nfs/super.c:1171:49: expected struct rpc_xprt *xprt2
> nfs/super.c:1171:49: got struct rpc_xprt [noderef] __rcu *cl_xprt
>
> nfs/./nfstrace.h:1488:1: warning: dereference of noderef expression
> nfs/./nfs4trace.h:2168:1: error: too long token expansion
> nfs/./nfs4trace.h:2234:1: error: too long token expansion
>

Regarding the Sparse warnings in super.c and the trace header errors,
I've noted them down. I'll look into them separately and may submit a
follow-up patch to address them later.

Best Regards,
Sean