On Mon, Dec 17, 2018 at 10:32:06AM -0800, Eric Biggers wrote: > I don't see how that helps. The Merkle tree can still be too large to fit in > memory. In the worst case, it might not even fit in the address space. And I > don't see how get_user_pages() helps either over just copy_from_user(); what are > you proposing to do with the pages after getting them, exactly? Write them out to a file system specific area on the media. Note that get_user_pages is indeed not going to work if you run out of address space, but that seems like an odd use case. Out of of memory is not an issue as we generally iterate over a small number of pages for each individual get_user_pages call.