aboutsummaryrefslogtreecommitdiff
path: root/include/qemu/memfd.h
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2018-02-01 14:27:53 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2018-02-07 14:09:25 +0100
commit2ef8c0c99be7ee5b9dbceaae41b8890e7c81240f (patch)
treee89dc3c8bb9bf2b1a6c050b504ceb69ebc354f27 /include/qemu/memfd.h
parentc5b2a9e0782c54402b3e06afd14b4c1de9efba8f (diff)
downloadqemu-2ef8c0c99be7ee5b9dbceaae41b8890e7c81240f.zip
qemu-2ef8c0c99be7ee5b9dbceaae41b8890e7c81240f.tar.gz
qemu-2ef8c0c99be7ee5b9dbceaae41b8890e7c81240f.tar.bz2
memfd: add hugetlbsize argument
Learn to specificy hugetlb size as qemu_memfd_create() argument. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20180201132757.23063-4-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/qemu/memfd.h')
-rw-r--r--include/qemu/memfd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/memfd.h b/include/qemu/memfd.h
index 1d3ecc7..de10198 100644
--- a/include/qemu/memfd.h
+++ b/include/qemu/memfd.h
@@ -17,7 +17,7 @@
#endif
int qemu_memfd_create(const char *name, size_t size, bool hugetlb,
- unsigned int seals, Error **errp);
+ uint64_t hugetlbsize, unsigned int seals, Error **errp);
void *qemu_memfd_alloc(const char *name, size_t size, unsigned int seals,
int *fd, Error **errp);
void qemu_memfd_free(void *ptr, size_t size, int fd);