All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] NFSD: Resolve the recall-any mask names in the trace format
@ 2026-08-18 18:41 Chuck Lever
  2026-08-19  6:05 ` Christoph Hellwig
  2026-08-19 10:56 ` Jeff Layton
  0 siblings, 2 replies; 3+ messages in thread
From: Chuck Lever @ 2026-08-18 18:41 UTC (permalink / raw)
  To: NeilBrown, Jeff Layton, Olga Kornievskaia, Dai Ngo, Tom Talpey; +Cc: linux-nfs

RCA4_TYPE_MASK_* are enum constants, so the preprocessor cannot fold
them into the print format that show_rca_mask() builds for the
nfsd_cb_recall_any event. Nothing declares an eval map for them
either, so trace_event_eval_update() has no substitution to apply at
module load, and the event's format file ships the enumerator names
verbatim. trace-cmd and perf cannot decode the bmval0 field.

Declare the eval maps for the nine mask bits show_rca_mask() decodes.
The format then carries the shift counts as integers, the same shape
the SUNRPC trace points already emit from their BIT() flag decoders.

Fixes: 638593be55c0 ("NFSD: add CB_RECALL_ANY tracepoints")
Signed-off-by: Chuck Lever <cel@kernel.org>
---
 fs/nfsd/trace.h | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/fs/nfsd/trace.h b/fs/nfsd/trace.h
index 3fa4d63cd30f..4fb1f32a3787 100644
--- a/fs/nfsd/trace.h
+++ b/fs/nfsd/trace.h
@@ -1946,6 +1946,16 @@ TRACE_EVENT(nfsd_cb_offload,
 		__entry->fh_hash, __entry->count, __entry->status)
 );
 
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_RDATA_DLG);
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_WDATA_DLG);
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_DIR_DLG);
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_FILE_LAYOUT);
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_BLK_LAYOUT);
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_OBJ_LAYOUT_MIN);
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_OBJ_LAYOUT_MAX);
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_OTHER_LAYOUT_MIN);
+TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_OTHER_LAYOUT_MAX);
+
 #define show_rca_mask(x) \
 	__print_flags(x, "|", \
 		{ BIT(RCA4_TYPE_MASK_RDATA_DLG),	"RDATA_DLG" }, \
-- 
2.54.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] NFSD: Resolve the recall-any mask names in the trace format
  2026-08-18 18:41 [PATCH] NFSD: Resolve the recall-any mask names in the trace format Chuck Lever
@ 2026-08-19  6:05 ` Christoph Hellwig
  2026-08-19 10:56 ` Jeff Layton
  1 sibling, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2026-08-19  6:05 UTC (permalink / raw)
  To: Chuck Lever
  Cc: NeilBrown, Jeff Layton, Olga Kornievskaia, Dai Ngo, Tom Talpey,
	linux-nfs

Looks good:

Reviewed-by: Christoph Hellwig <hch@lst.de>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] NFSD: Resolve the recall-any mask names in the trace format
  2026-08-18 18:41 [PATCH] NFSD: Resolve the recall-any mask names in the trace format Chuck Lever
  2026-08-19  6:05 ` Christoph Hellwig
@ 2026-08-19 10:56 ` Jeff Layton
  1 sibling, 0 replies; 3+ messages in thread
From: Jeff Layton @ 2026-08-19 10:56 UTC (permalink / raw)
  To: Chuck Lever, NeilBrown, Olga Kornievskaia, Dai Ngo, Tom Talpey; +Cc: linux-nfs

On Tue, 2026-08-18 at 14:41 -0400, Chuck Lever wrote:
> RCA4_TYPE_MASK_* are enum constants, so the preprocessor cannot fold
> them into the print format that show_rca_mask() builds for the
> nfsd_cb_recall_any event. Nothing declares an eval map for them
> either, so trace_event_eval_update() has no substitution to apply at
> module load, and the event's format file ships the enumerator names
> verbatim. trace-cmd and perf cannot decode the bmval0 field.
> 
> Declare the eval maps for the nine mask bits show_rca_mask() decodes.
> The format then carries the shift counts as integers, the same shape
> the SUNRPC trace points already emit from their BIT() flag decoders.
> 
> Fixes: 638593be55c0 ("NFSD: add CB_RECALL_ANY tracepoints")
> Signed-off-by: Chuck Lever <cel@kernel.org>
> ---
>  fs/nfsd/trace.h | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/fs/nfsd/trace.h b/fs/nfsd/trace.h
> index 3fa4d63cd30f..4fb1f32a3787 100644
> --- a/fs/nfsd/trace.h
> +++ b/fs/nfsd/trace.h
> @@ -1946,6 +1946,16 @@ TRACE_EVENT(nfsd_cb_offload,
>  		__entry->fh_hash, __entry->count, __entry->status)
>  );
>  
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_RDATA_DLG);
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_WDATA_DLG);
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_DIR_DLG);
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_FILE_LAYOUT);
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_BLK_LAYOUT);
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_OBJ_LAYOUT_MIN);
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_OBJ_LAYOUT_MAX);
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_OTHER_LAYOUT_MIN);
> +TRACE_DEFINE_ENUM(RCA4_TYPE_MASK_OTHER_LAYOUT_MAX);
> +
>  #define show_rca_mask(x) \
>  	__print_flags(x, "|", \
>  		{ BIT(RCA4_TYPE_MASK_RDATA_DLG),	"RDATA_DLG" }, \

Reviewed-by: Jeff Layton <jlayton@kernel.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-19 10:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-18 18:41 [PATCH] NFSD: Resolve the recall-any mask names in the trace format Chuck Lever
2026-08-19  6:05 ` Christoph Hellwig
2026-08-19 10:56 ` Jeff Layton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.