diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-02 15:59:14 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-02 15:59:14 -0600 |
commit | c077d93a390be2b00e95b3c91adf3c23bc2d0f27 (patch) | |
tree | babe61a4ed092efbca1db59c47ae31e665103f31 | |
parent | 227a8d2f2a7e104460399ad24b3b2963f0842e86 (diff) |
lib9p: recv_tentry.basesize is dead code, remove it
-rw-r--r-- | lib9p/9p.generated.c | 1 | ||||
-rw-r--r-- | lib9p/internal.h | 1 | ||||
-rw-r--r-- | lib9p/protogen/c.py | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/lib9p/9p.generated.c b/lib9p/9p.generated.c index 8819458..3031392 100644 --- a/lib9p/9p.generated.c +++ b/lib9p/9p.generated.c @@ -4765,7 +4765,6 @@ const uint32_t _lib9p_table_msg_min_size[LIB9P_VER_NUM] = { }; #define _MSG_RECV(typ) [LIB9P_TYP_##typ/2] = { \ - .basesize = sizeof(struct lib9p_msg_##typ), \ .validate = validate_##typ, \ .unmarshal = (_unmarshal_fn_t)unmarshal_##typ, \ } diff --git a/lib9p/internal.h b/lib9p/internal.h index 92340a5..51bf792 100644 --- a/lib9p/internal.h +++ b/lib9p/internal.h @@ -50,7 +50,6 @@ struct _marshal_ret { typedef bool (*_marshal_fn_t)(struct lib9p_ctx *ctx, void *host_val, struct _marshal_ret *ret); struct _lib9p_recv_tentry { - size_t basesize; _validate_fn_t validate; _unmarshal_fn_t unmarshal; }; diff --git a/lib9p/protogen/c.py b/lib9p/protogen/c.py index cc1daea..0c9b21f 100644 --- a/lib9p/protogen/c.py +++ b/lib9p/protogen/c.py @@ -157,7 +157,6 @@ const char *const {c9util.ident('_table_ver_name')}[{c9util.ver_enum('NUM')}] = ret += "\n" ret += cutil.macro( f"#define _MSG_RECV(typ) [{c9util.Ident('TYP_')}##typ/2] = {{\n" - f"\t\t.basesize = sizeof(struct {c9util.ident('msg_')}##typ),\n" f"\t\t.validate = validate_##typ,\n" f"\t\t.unmarshal = (_unmarshal_fn_t)unmarshal_##typ,\n" f"\t}}\n" |