Changes v1 -> v2: - Fix trailing space issue - Rebase against new code using g_strdup_printf() Signed-off-by: Eduardo Habkost <ehabkost@xxxxxxxxxx> --- exec.c | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/exec.c b/exec.c index 1e98244..456ac73 100644 --- a/exec.c +++ b/exec.c @@ -2356,11 +2356,31 @@ static long gethugepagesize(const char *path) return fs.f_bsize; } +/* Return FD to temporary file inside directory at 'path', + * truncated to size 'length' + */ +static int get_temp_fd(const char *path) +{ + int fd; + gchar *filename; + + filename = g_strdup_printf("%s/qemu_back_mem.XXXXXX", path); + fd = mkstemp(filename); + if (fd < 0) { + perror("unable to create backing store for hugepages"); + g_free(filename); + return -1; + } + unlink(filename); + g_free(filename); + + return fd; +} + static void *file_ram_alloc(RAMBlock *block, size_t length, const char *path) { - gchar *filename; void *area; int fd; #ifdef MAP_POPULATE @@ -2382,15 +2402,10 @@ static void *file_ram_alloc(RAMBlock *block, return NULL; } - filename = g_strdup_printf("%s/qemu_back_mem.XXXXXX", path); - fd = mkstemp(filename); + fd = get_temp_fd(path); if (fd < 0) { - perror("unable to create backing store for hugepages"); - g_free(filename); return NULL; } - unlink(filename); - g_free(filename); length = (length + hpagesize - 1) & ~(hpagesize - 1); -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html