aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse/fuse_i.h
diff options
context:
space:
mode:
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);