]> git.karo-electronics.de Git - karo-tx-linux.git/commit
fuse: rework fuse_retrieve()
authorMaxim Patlasov <mpatlasov@parallels.com>
Fri, 26 Oct 2012 15:48:42 +0000 (19:48 +0400)
committerMiklos Szeredi <mszeredi@suse.cz>
Tue, 6 Nov 2012 12:09:35 +0000 (13:09 +0100)
commitdfa74576499c79bf82f0e3721ff3ec977153d8a4
treeaef1434a31b52d111c56d430fd9443b62a100a83
parentfbc8f1ecb5c412ab18bc7820a7e44f428c95943f
fuse: rework fuse_retrieve()

The patch reworks fuse_retrieve() to allocate only so many page pointers
as needed. The core part of the patch is the following calculation:

num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;

(thanks Miklos for formula). All other changes are mostly shuffling lines.

Signed-off-by: Maxim Patlasov <mpatlasov@parallels.com>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
fs/fuse/dev.c