aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/fuse/fuse_i.h4
-rw-r--r--fs/fuse/inode.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index 934dd819a4ef..dadffa21a206 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -464,7 +464,7 @@ extern const struct file_operations fuse_dev_operations;
464/** 464/**
465 * Get a filled in inode 465 * Get a filled in inode
466 */ 466 */
467struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid, 467struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
468 int generation, struct fuse_attr *attr, 468 int generation, struct fuse_attr *attr,
469 u64 attr_valid, u64 attr_version); 469 u64 attr_valid, u64 attr_version);
470 470
@@ -472,7 +472,7 @@ struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid,
472 * Send FORGET command 472 * Send FORGET command
473 */ 473 */
474void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req, 474void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
475 unsigned long nodeid, u64 nlookup); 475 u64 nodeid, u64 nlookup);
476 476
477/** 477/**
478 * Initialize READ or READDIR request 478 * Initialize READ or READDIR request
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 0cef5ea319f3..79b615873838 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -84,7 +84,7 @@ static void fuse_destroy_inode(struct inode *inode)
84} 84}
85 85
86void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req, 86void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
87 unsigned long nodeid, u64 nlookup) 87 u64 nodeid, u64 nlookup)
88{ 88{
89 struct fuse_forget_in *inarg = &req->misc.forget_in; 89 struct fuse_forget_in *inarg = &req->misc.forget_in;
90 inarg->nlookup = nlookup; 90 inarg->nlookup = nlookup;
@@ -207,7 +207,7 @@ static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
207 207
208static int fuse_inode_eq(struct inode *inode, void *_nodeidp) 208static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
209{ 209{
210 unsigned long nodeid = *(unsigned long *) _nodeidp; 210 u64 nodeid = *(u64 *) _nodeidp;
211 if (get_node_id(inode) == nodeid) 211 if (get_node_id(inode) == nodeid)
212 return 1; 212 return 1;
213 else 213 else
@@ -216,12 +216,12 @@ static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
216 216
217static int fuse_inode_set(struct inode *inode, void *_nodeidp) 217static int fuse_inode_set(struct inode *inode, void *_nodeidp)
218{ 218{
219 unsigned long nodeid = *(unsigned long *) _nodeidp; 219 u64 nodeid = *(u64 *) _nodeidp;
220 get_fuse_inode(inode)->nodeid = nodeid; 220 get_fuse_inode(inode)->nodeid = nodeid;
221 return 0; 221 return 0;
222} 222}
223 223
224struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid, 224struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
225 int generation, struct fuse_attr *attr, 225 int generation, struct fuse_attr *attr,
226 u64 attr_valid, u64 attr_version) 226 u64 attr_valid, u64 attr_version)
227{ 227{