diff options
Diffstat (limited to 'include/net/9p')
-rw-r--r-- | include/net/9p/client.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/9p/client.h b/include/net/9p/client.h index ce7882da8e86..58ed9bd306bd 100644 --- a/include/net/9p/client.h +++ b/include/net/9p/client.h @@ -140,10 +140,16 @@ struct p9_client { * * TODO: This needs lots of explanation. */ +enum fid_source { + FID_FROM_OTHER, + FID_FROM_INODE, + FID_FROM_DENTRY, +}; struct p9_fid { struct p9_client *clnt; u32 fid; + atomic_t count; int mode; struct p9_qid qid; u32 iounit; |