diff mbox series

writeback: Refine the show_inode_state() macro definition

Message ID 20240820094922.375996-1-sunjunchao2870@gmail.com (mailing list archive)
State Superseded
Headers show
Series writeback: Refine the show_inode_state() macro definition | expand

Commit Message

Julian Sun Aug. 20, 2024, 9:49 a.m. UTC
Currently, the show_inode_state() macro only prints
part of the state of inode->i_state. Let’s improve it
to display more of its state.

Signed-off-by: Julian Sun <sunjunchao2870@gmail.com>
---
 include/trace/events/writeback.h | 9 +++++++++
 1 file changed, 9 insertions(+)

Comments

Julian Sun Aug. 20, 2024, 9:54 a.m. UTC | #1
Apologies, this patch was sent by mistake. Please refer to the latest patch

Julian Sun <sunjunchao2870@gmail.com> 于2024年8月20日周二 17:49写道:
>
> Currently, the show_inode_state() macro only prints
> part of the state of inode->i_state. Let’s improve it
> to display more of its state.
>
> Signed-off-by: Julian Sun <sunjunchao2870@gmail.com>
> ---
>  include/trace/events/writeback.h | 9 +++++++++
>  1 file changed, 9 insertions(+)
>
> diff --git a/include/trace/events/writeback.h b/include/trace/events/writeback.h
> index 54e353c9f919..a2c2bb1cddd7 100644
> --- a/include/trace/events/writeback.h
> +++ b/include/trace/events/writeback.h
> @@ -21,6 +21,15 @@
>                 {I_SYNC,                "I_SYNC"},              \
>                 {I_DIRTY_TIME,          "I_DIRTY_TIME"},        \
>                 {I_REFERENCED,          "I_REFERENCED"}         \
> +               {I_DIO_WAKEUP,  "I_DIO_WAKEUP"} \
> +               {I_LINKABLE,    "I_LINKABLE"}   \
> +               {I_DIRTY_TIME,  "I_DIRTY_TIME"} \
> +               {I_WB_SWITCH,   "I_WB_SWITCH"}  \
> +               {I_OVL_INUSE,   "I_OVL_INUSE"}  \
> +               {I_CREATING,    "I_CREATING"}   \
> +               {I_DONTCACHE,   "I_DONTCACHE"}  \
> +               {I_SYNC_QUEUED, "I_SYNC_QUEUED"}        \
> +               {I_PINNING_NETFS_WB, "I_PINNING_NETFS_WB"} \
>         )
>
>  /* enums need to be exported to user space */
> --
> 2.39.2
>
diff mbox series

Patch

diff --git a/include/trace/events/writeback.h b/include/trace/events/writeback.h
index 54e353c9f919..a2c2bb1cddd7 100644
--- a/include/trace/events/writeback.h
+++ b/include/trace/events/writeback.h
@@ -21,6 +21,15 @@ 
 		{I_SYNC,		"I_SYNC"},		\
 		{I_DIRTY_TIME,		"I_DIRTY_TIME"},	\
 		{I_REFERENCED,		"I_REFERENCED"}		\
+		{I_DIO_WAKEUP,	"I_DIO_WAKEUP"}	\
+		{I_LINKABLE,	"I_LINKABLE"}	\
+		{I_DIRTY_TIME,	"I_DIRTY_TIME"}	\
+		{I_WB_SWITCH,	"I_WB_SWITCH"}	\
+		{I_OVL_INUSE,	"I_OVL_INUSE"}	\
+		{I_CREATING,	"I_CREATING"}	\
+		{I_DONTCACHE,	"I_DONTCACHE"}	\
+		{I_SYNC_QUEUED,	"I_SYNC_QUEUED"}	\
+		{I_PINNING_NETFS_WB, "I_PINNING_NETFS_WB"} \
 	)
 
 /* enums need to be exported to user space */