mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-26 21:54:30 +08:00
fix
This commit is contained in:
parent
106aa7664c
commit
2963d77cee
@ -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)
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user