aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse/fuse_i.h
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2008-11-26 06:03:55 -0500
committerMiklos Szeredi <miklos@szeredi.hu>2008-11-26 06:03:55 -0500
commitb93f858ab2a4bee779c360002f313ad6c3504cdc (patch)
tree0523108e8c76035f35a3712ced5bf8e329731c78 /fs/fuse/fuse_i.h
parent95668a69a4bb862063c4d28a746e55107dee7b98 (diff)
fuse: add fuse_ prefix to several functions
Add fuse_ prefix to request_send*() and get_root_inode() as some of those functions will be exported for CUSE. With or without CUSE export, having the function names scoped is a good idea for debuggability. Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r--fs/fuse/fuse_i.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index 986fbd4c1ff5..c08e7e890923 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -619,19 +619,20 @@ void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req);
619/** 619/**
620 * Send a request (synchronous) 620 * Send a request (synchronous)
621 */ 621 */
622void request_send(struct fuse_conn *fc, struct fuse_req *req); 622void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req);
623 623
624/** 624/**
625 * Send a request with no reply 625 * Send a request with no reply
626 */ 626 */
627void request_send_noreply(struct fuse_conn *fc, struct fuse_req *req); 627void fuse_request_send_noreply(struct fuse_conn *fc, struct fuse_req *req);
628 628
629/** 629/**
630 * Send a request in the background 630 * Send a request in the background
631 */ 631 */
632void request_send_background(struct fuse_conn *fc, struct fuse_req *req); 632void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req);
633 633
634void request_send_background_locked(struct fuse_conn *fc, struct fuse_req *req); 634void fuse_request_send_background_locked(struct fuse_conn *fc,
635 struct fuse_req *req);
635 636
636/* Abort all requests */ 637/* Abort all requests */
637void fuse_abort_conn(struct fuse_conn *fc); 638void fuse_abort_conn(struct fuse_conn *fc);