diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-16 14:56:05 -0500 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-01-11 23:34:14 -0700 |
commit | f263b08d4457e36126f150566219472f3a05c906 (patch) | |
tree | d699f327bb9ab53b6e110dcc878afbe9c290551e /lib9p/9p.generated.c | |
parent | c3b9d7e802d7d2e31131692d621515ac88178ebb (diff) |
lib9p: Rename `lib9p_*_stat()` to `lib9p_stat_*()` for consistency
Diffstat (limited to 'lib9p/9p.generated.c')
-rw-r--r-- | lib9p/9p.generated.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib9p/9p.generated.c b/lib9p/9p.generated.c index 85e0e2b..984ba7f 100644 --- a/lib9p/9p.generated.c +++ b/lib9p/9p.generated.c @@ -2155,12 +2155,12 @@ const struct _lib9p_send_tentry _lib9p_table_Rmsg_send[LIB9P_VER_NUM][0x80] = { #endif /* CONFIG_9P_ENABLE_9P2000_u */ }; -LM_FLATTEN bool _lib9p_validate_stat(struct _validate_ctx *ctx) { +LM_FLATTEN bool _lib9p_stat_validate(struct _validate_ctx *ctx) { return validate_stat(ctx); } -LM_FLATTEN void _lib9p_unmarshal_stat(struct _unmarshal_ctx *ctx, struct lib9p_stat *out) { +LM_FLATTEN void _lib9p_stat_unmarshal(struct _unmarshal_ctx *ctx, struct lib9p_stat *out) { unmarshal_stat(ctx, out); } -LM_FLATTEN bool _lib9p_marshal_stat(struct _marshal_ctx *ctx, struct lib9p_stat *val) { +LM_FLATTEN bool _lib9p_stat_marshal(struct _marshal_ctx *ctx, struct lib9p_stat *val) { return marshal_stat(ctx, val); } |