aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2004-01-13 17:19:15 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2004-01-13 17:19:15 +0000
commita055d4ea6484742069fc1596bbd0e35fc7fd8782 (patch)
tree7e625059d07b585ba5a71dc7d17160ce08a4f80f /kernel
parente8663f383b9b965ea5f8b510db8eae2e918b8794 (diff)
downloadlibfuse-a055d4ea6484742069fc1596bbd0e35fc7fd8782.tar.gz
*** empty log message ***
Diffstat (limited to 'kernel')
-rw-r--r--kernel/dev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/dev.c b/kernel/dev.c
index dcc03b1..4f45658 100644
--- a/kernel/dev.c
+++ b/kernel/dev.c
@@ -130,7 +130,7 @@ void request_send(struct fuse_conn *fc, struct fuse_in *in,
}
-static inline void destroy_request(struct fuse_conn *fc, struct fuse_req *req)
+static inline void destroy_request(struct fuse_req *req)
{
if(req) {
int i;
@@ -262,7 +262,7 @@ static ssize_t fuse_dev_read(struct file *file, char *buf, size_t nbytes,
req = NULL;
}
spin_unlock(&fuse_lock);
- destroy_request(fc, req);
+ destroy_request(req);
return ret;
}
@@ -526,7 +526,7 @@ static void end_requests(struct fuse_conn *fc, struct list_head *head)
wake_up(&req->waitq);
}
else
- destroy_request(fc, req);
+ destroy_request(req);
}
}