From 8d333c97017352ec7a63bfe1aff829a06fbe841e Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Fri, 11 Oct 2024 13:07:09 -0600 Subject: Factor back out a fidinfo struct --- lib9p/include/lib9p/srv.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib9p/include') diff --git a/lib9p/include/lib9p/srv.h b/lib9p/include/lib9p/srv.h index 7aca76c..4bf957c 100644 --- a/lib9p/include/lib9p/srv.h +++ b/lib9p/include/lib9p/srv.h @@ -81,14 +81,10 @@ struct lib9p_srv_file { /* Managed by srv.c, but should be cloned by ->vtable->clone(). */ struct lib9p_srv_file *_parent_dir; /* clone this - /* Managed by srv.c, and should be initialized to 0 by ->vtable->clone(). */ + /* Managed by srv.c, but should be initialized to 0 by ->vtable->clone(). */ /* ref type 1: an entry in fidmap * ref type 2: ->_parent_dir of another file */ struct lib9p_srv_file *_refcount; - lib9p_o_t _io_flags; - bool _io_isdir; - size_t _io_dir_idx; - uint32_t _io_dir_off; /* This is where your implementation data goes. */ char data[0]; -- cgit v1.2.3-2-g168b