From: Fei Li <shirley17fei@gmail.com>
To: Fei Li <lifei1214@126.com>, qemu-devel@nongnu.org
Cc: Markus Armbruster <armbru@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v11 for-4.0 11/11] qemu_thread: supplement error handling for touch_all_pages
Date: Fri, 1 Feb 2019 13:41:18 +0800 [thread overview]
Message-ID: <a84d9009-a1fe-ed19-6379-90e0a07927f5@gmail.com> (raw)
In-Reply-To: <20190201052551.53359-1-lifei1214@126.com>
It seems that this poor patch is left alone. :(
I sent all, but this patch failed to join them, so sorry for that..
Could we just let it be?
Have a nice day, thanks
Fei
在 2019/2/1 下午1:25, Fei Li 写道:
> From: Fei Li <fli@suse.com>
>
> Supplement the error handling for touch_all_pages: add an Error
> parameter for it to propagate the error to its caller to do the
> handling in case it fails.
>
> Cc: Markus Armbruster <armbru@redhat.com>
> Signed-off-by: Fei Li <fli@suse.com>
> ---
> util/oslib-posix.c | 26 ++++++++++++++++----------
> 1 file changed, 16 insertions(+), 10 deletions(-)
>
> diff --git a/util/oslib-posix.c b/util/oslib-posix.c
> index b6c2ee270d..b4dd3d8970 100644
> --- a/util/oslib-posix.c
> +++ b/util/oslib-posix.c
> @@ -435,7 +435,7 @@ static inline int get_memset_num_threads(int smp_cpus)
> }
>
> static bool touch_all_pages(char *area, size_t hpagesize, size_t numpages,
> - int smp_cpus)
> + int smp_cpus, Error **errp)
> {
> size_t numpages_per_thread;
> size_t size_per_thread;
> @@ -452,20 +452,29 @@ static bool touch_all_pages(char *area, size_t hpagesize, size_t numpages,
> memset_thread[i].numpages = (i == (memset_num_threads - 1)) ?
> numpages : numpages_per_thread;
> memset_thread[i].hpagesize = hpagesize;
> - /* TODO: let the callers handle the error instead of abort() here */
> - qemu_thread_create(&memset_thread[i].pgthread, "touch_pages",
> - do_touch_pages, &memset_thread[i],
> - QEMU_THREAD_JOINABLE, &error_abort);
> + if (qemu_thread_create(&memset_thread[i].pgthread, "touch_pages",
> + do_touch_pages, &memset_thread[i],
> + QEMU_THREAD_JOINABLE, errp) < 0) {
> + memset_thread_failed = true;
> + break;
> + }
> addr += size_per_thread;
> numpages -= numpages_per_thread;
> }
> +
> + memset_num_threads = i;
> for (i = 0; i < memset_num_threads; i++) {
> qemu_thread_join(&memset_thread[i].pgthread);
> }
> g_free(memset_thread);
> memset_thread = NULL;
>
> - return memset_thread_failed;
> + if (memset_thread_failed) {
> + error_append_hint(errp, "os_mem_prealloc: Insufficient free host "
> + "memory pages available to allocate guest RAM");
> + return false;
> + }
> + return true;
> }
>
> void os_mem_prealloc(int fd, char *area, size_t memory, int smp_cpus,
> @@ -488,10 +497,7 @@ void os_mem_prealloc(int fd, char *area, size_t memory, int smp_cpus,
> }
>
> /* touch pages simultaneously */
> - if (touch_all_pages(area, hpagesize, numpages, smp_cpus)) {
> - error_setg(errp, "os_mem_prealloc: Insufficient free host memory "
> - "pages available to allocate guest RAM");
> - }
> + touch_all_pages(area, hpagesize, numpages, smp_cpus, errp);
>
> ret = sigaction(SIGBUS, &oldact, NULL);
> if (ret) {
next prev parent reply other threads:[~2019-02-01 5:41 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-01 5:25 [Qemu-devel] [PATCH v11 for-4.0 11/11] qemu_thread: supplement error handling for touch_all_pages Fei Li
2019-02-01 5:41 ` Fei Li [this message]
2019-02-01 9:51 ` Markus Armbruster
2019-02-01 15:03 ` Markus Armbruster
2019-02-03 13:19 ` Fei Li
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a84d9009-a1fe-ed19-6379-90e0a07927f5@gmail.com \
--to=shirley17fei@gmail.com \
--cc=armbru@redhat.com \
--cc=lifei1214@126.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).