aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/fid.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2013-02-27 22:51:08 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2013-02-27 22:51:08 -0500
commitc4d30967f3020cda9df9ee22af79cd1f2c284244 (patch)
tree744565daf8f1d711c0186c3261ebf42eebe1a44e /fs/9p/fid.h
parent634095dab2a2001844fc8b26673c0cb14a766cdf (diff)
9p: turn fid->dlist into hlist
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/9p/fid.h')
-rw-r--r--fs/9p/fid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/fid.h b/fs/9p/fid.h
index 469b5d517694..86eeb34ce46f 100644
--- a/fs/9p/fid.h
+++ b/fs/9p/fid.h
@@ -40,7 +40,7 @@
40 * Design and Implementation of the Linux 9P File System documentation 40 * Design and Implementation of the Linux 9P File System documentation
41 */ 41 */
42struct v9fs_dentry { 42struct v9fs_dentry {
43 struct list_head fidlist; 43 struct hlist_head fidlist;
44}; 44};
45 45
46struct p9_fid *v9fs_fid_lookup(struct dentry *dentry); 46struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);