This commit is contained in:
Miklos Szeredi 2005-07-22 12:54:08 +00:00
parent 106aa7664c
commit 2963d77cee
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2005-07-22 Miklos Szeredi <miklos@szeredi.hu>
* Fix bug, that causes filesystem requests to hang when unique
request counter becomes negative. This happens after
2,147,483,648 operations, so most people won't care. Thanks to
Franco Broi for the report and testing.
2005-03-19 Miklos Szeredi <miklos@szeredi.hu>
* kernel: add locking to background list (fixes previous fix)

View File

@ -679,7 +679,7 @@ static ssize_t fuse_dev_read(struct file *file, char __user *buf,
return fuse_dev_readv(file, &iov, 1, off);
}
static struct fuse_req *request_find(struct fuse_conn *fc, unsigned unique)
static struct fuse_req *request_find(struct fuse_conn *fc, int unique)
{
struct list_head *entry;