aboutsummaryrefslogtreecommitdiffstats
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
parente8663f383b9b965ea5f8b510db8eae2e918b8794 (diff)
downloadlibfuse-a055d4ea6484742069fc1596bbd0e35fc7fd8782.tar.gz
*** empty log message ***
-rw-r--r--Filesystems2
-rw-r--r--kernel/dev.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/Filesystems b/Filesystems
index 15da4df..d366483 100644
--- a/Filesystems
+++ b/Filesystems
@@ -15,7 +15,7 @@ Name: FunFS (status: alpha)
Author: Michael Grigoriev (Net Integration Technologies) <mag at
luminal org>
-Homepage: http://open.nit.ca/wiki/?page=FunFS
+Homepage: http://www.luminal.org/wiki/index.php/FunFS/FunFS
Description:
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);
}
}