diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-27 22:51:08 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-27 22:51:08 -0500 |
commit | c4d30967f3020cda9df9ee22af79cd1f2c284244 (patch) | |
tree | 744565daf8f1d711c0186c3261ebf42eebe1a44e /include/net/9p | |
parent | 634095dab2a2001844fc8b26673c0cb14a766cdf (diff) |
9p: turn fid->dlist into hlist
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/net/9p')
-rw-r--r-- | include/net/9p/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/9p/client.h b/include/net/9p/client.h index 5ff70f433e87..4c7c01a73911 100644 --- a/include/net/9p/client.h +++ b/include/net/9p/client.h | |||
@@ -192,7 +192,7 @@ struct p9_fid { | |||
192 | void *rdir; | 192 | void *rdir; |
193 | 193 | ||
194 | struct list_head flist; | 194 | struct list_head flist; |
195 | struct list_head dlist; /* list of all fids attached to a dentry */ | 195 | struct hlist_node dlist; /* list of all fids attached to a dentry */ |
196 | }; | 196 | }; |
197 | 197 | ||
198 | /** | 198 | /** |