Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0bd87182 authored by Jens Axboe's avatar Jens Axboe Committed by Miklos Szeredi
Browse files

fuse: fix kunmap in fuse_ioctl_copy_user



Looks like another victim of the confusing kmap() vs kmap_atomic() API
differences.

Reported-by: default avatarTodor Gyumyushev <yodor1@gmail.com>
Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
Signed-off-by: default avatarMiklos Szeredi <mszeredi@suse.cz>
Cc: Tejun Heo <tj@kernel.org>
Cc: stable@kernel.org
parent f60311d5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1600,7 +1600,7 @@ static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
			kaddr += copy;
		}

		kunmap(map);
		kunmap(page);
	}

	return 0;