diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-07-03 21:29:22 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2022-07-03 23:04:26 -0400 |
commit | 56440899dc06c69f05b59b1e76150de6547a125c (patch) | |
tree | 4f7ef4b4360867db3a01c99023c7180ff7672a36 /include/net/9p/9p.h | |
parent | 0ac0401f035bb278179176bc1d30b048230b453f (diff) |
9p: Add mempools for RPCs9p_mempool
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Cc: Eric Van Hensbergen <ericvh@gmail.com>
Cc: Latchesar Ionkov <lucho@ionkov.net>
Cc: Dominique Martinet <asmadeus@codewreck.org>
Diffstat (limited to 'include/net/9p/9p.h')
-rw-r--r-- | include/net/9p/9p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index 24a509f559ee..0b20ee6854d6 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h @@ -539,12 +539,12 @@ struct p9_rstatfs { struct p9_fcall { u32 size; u8 id; + bool used_mempool; u16 tag; size_t offset; size_t capacity; - struct kmem_cache *cache; u8 *sdata; }; |