From: Vitaly Kuznetsov <vkuznets@redhat.com>
To: "Alex Ng \(LIS\)" <alexng@microsoft.com>
Cc: "devel\@linuxdriverproject.org" <devel@linuxdriverproject.org>,
"linux-kernel\@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"KY Srinivasan" <kys@microsoft.com>,
Haiyang Zhang <haiyangz@microsoft.com>
Subject: Re: [PATCH v2 RESEND 2/4] Drivers: hv: balloon: account for gaps in hot add regions
Date: Tue, 16 Aug 2016 10:40:08 +0200 [thread overview]
Message-ID: <87bn0tayzb.fsf@vitty.brq.redhat.com> (raw)
In-Reply-To: <BN3PR03MB214656E15D4C3865B9C13892D8120@BN3PR03MB2146.namprd03.prod.outlook.com> (Alex Ng's message of "Mon, 15 Aug 2016 22:17:34 +0000")
"Alex Ng (LIS)" <alexng@microsoft.com> writes:
>> @@ -676,35 +686,63 @@ static void hv_mem_hot_add(unsigned long start,
>> unsigned long size,
>>
>> static void hv_online_page(struct page *pg) {
>> - struct list_head *cur;
>> struct hv_hotadd_state *has;
>> + struct hv_hotadd_gap *gap;
>> unsigned long cur_start_pgp;
>> unsigned long cur_end_pgp;
>> + bool is_gap = false;
>>
>> list_for_each(cur, &dm_device.ha_region_list) {
>> has = list_entry(cur, struct hv_hotadd_state, list);
>> cur_start_pgp = (unsigned long)
>> + pfn_to_page(has->start_pfn);
>> + cur_end_pgp = (unsigned long)pfn_to_page(has->end_pfn);
>> +
>> + /* The page belongs to a different HAS. */
>> + if (((unsigned long)pg < cur_start_pgp) ||
>> + ((unsigned long)pg >= cur_end_pgp))
>> + continue;
>> +
>> + cur_start_pgp = (unsigned long)
>> pfn_to_page(has->covered_start_pfn);
>> cur_end_pgp = (unsigned long)pfn_to_page(has-
>> >covered_end_pfn);
>>
>> - if (((unsigned long)pg >= cur_start_pgp) &&
>> - ((unsigned long)pg < cur_end_pgp)) {
>> - /*
>> - * This frame is currently backed; online the
>> - * page.
>> - */
>> - __online_page_set_limits(pg);
>> - __online_page_increment_counters(pg);
>> - __online_page_free(pg);
>> + /* The page is not backed. */
>> + if (((unsigned long)pg < cur_start_pgp) ||
>> + ((unsigned long)pg >= cur_end_pgp))
>> + continue;
>> +
>> + /* Check for gaps. */
>> + list_for_each_entry(gap, &has->gap_list, list) {
>> + cur_start_pgp = (unsigned long)
>> + pfn_to_page(gap->start_pfn);
>> + cur_end_pgp = (unsigned long)
>> + pfn_to_page(gap->end_pfn);
>> + if (((unsigned long)pg >= cur_start_pgp) &&
>> + ((unsigned long)pg < cur_end_pgp)) {
>> + is_gap = true;
>> + break;
>> + }
>> }
>> +
>> + if (is_gap)
>> + break;
>> +
>> + /* This frame is currently backed; online the page. */
>> + __online_page_set_limits(pg);
>> + __online_page_increment_counters(pg);
>> + __online_page_free(pg);
>> + break;
>> }
>> }
>>
>
> We may need to add similar logic to check for gaps in hv_bring_pgs_online().
>
> [...]
Yes, probably, I'll take a look and try to refactor the onlinig code in
a separate function to avoid duplication.
>> static unsigned long handle_pg_range(unsigned long pg_start, @@ -834,13
>> +881,19 @@ static unsigned long process_hot_add(unsigned long pg_start,
>> unsigned long rg_size)
>> {
>> struct hv_hotadd_state *ha_region = NULL;
>> + int covered;
>>
>> if (pfn_cnt == 0)
>> return 0;
>>
>> - if (!dm_device.host_specified_ha_region)
>> - if (pfn_covered(pg_start, pfn_cnt))
>> + if (!dm_device.host_specified_ha_region) {
>> + covered = pfn_covered(pg_start, pfn_cnt);
>> + if (covered < 0)
>> + return 0;
>
> If the hot-add pages aren't covered by any region, then shouldn't it fall through instead of returning?
> That way the new ha_region can be added to the list and we hot-add the
> pages accordingly.
I was under an impression this is impossible:
hot_add_req()/process_hot_add() will create a new region in this
case. 'covered < 0' was added to handle one particular error: failure to
allocate memory to record gap (struct hv_hotadd_gap) and I don't have a
better idea how to handle this: if we can't remember the gap we'll crash
later on onlining...
--
Vitaly
next prev parent reply other threads:[~2016-08-16 8:40 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-11 12:47 [PATCH v2 RESEND 0/4] Drivers: hv: balloon: fix WS2012 memory hotplug issues and do some cleanup Vitaly Kuznetsov
2016-08-11 12:47 ` [PATCH v2 RESEND 1/4] Drivers: hv: balloon: keep track of where ha_region starts Vitaly Kuznetsov
2016-08-11 12:47 ` [PATCH v2 RESEND 2/4] Drivers: hv: balloon: account for gaps in hot add regions Vitaly Kuznetsov
2016-08-15 22:17 ` Alex Ng (LIS)
2016-08-16 8:40 ` Vitaly Kuznetsov [this message]
2016-08-16 21:44 ` Alex Ng (LIS)
2016-08-11 12:47 ` [PATCH v2 RESEND 3/4] Drivers: hv: balloon: don't wait for ol_waitevent when memhp_auto_online is enabled Vitaly Kuznetsov
2016-08-11 12:47 ` [PATCH v2 RESEND 4/4] Drivers: hv: balloon: replace ha_region_mutex with spinlock Vitaly Kuznetsov
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=87bn0tayzb.fsf@vitty.brq.redhat.com \
--to=vkuznets@redhat.com \
--cc=alexng@microsoft.com \
--cc=devel@linuxdriverproject.org \
--cc=haiyangz@microsoft.com \
--cc=kys@microsoft.com \
--cc=linux-kernel@vger.kernel.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