From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: Wei Liu <wei.liu2@citrix.com>
Cc: ian.campbell@citrix.com,
Dario Faggioli <dario.faggioli@citrix.com>,
stefano.stabellini@eu.citrix.com, ian.jackson@eu.citrix.com,
xen-devel@lists.xen.org
Subject: Re: [PATCH for-xen-4.5] libxl: Allow copying smaller bitmap into a larger one
Date: Mon, 24 Nov 2014 10:48:19 -0500 [thread overview]
Message-ID: <54735343.1020208@oracle.com> (raw)
In-Reply-To: <20141124104703.GH30053@zion.uk.xensource.com>
On 11/24/2014 05:47 AM, Wei Liu wrote:
> CC'ing Dario...
>
> On Mon, Nov 24, 2014 at 10:41:27AM +0000, Wei Liu wrote:
>> On Thu, Nov 20, 2014 at 04:27:34PM -0500, Boris Ostrovsky wrote:
>>> When parsing bitmap objects JSON parser will create libxl_bitmap
>>> map of the smallest size needed.
>>>
>>> This can cause problems when saved image file specifies CPU affinity.
>>> For example, if 'vcpu_hard_affinity' in the saved image has only the
>>> first CPU specified, just a single byte will be allocated and
>>> libxl_bitmap->size will be set to 1.
>>>
>>> This will result in assertion in libxl_set_vcpuaffinity()->libxl_bitmap_copy()
>>> since the destination bitmap is created for maximum number of CPUs.
>>>
>>> We could allocate that bitmap of the same size as the source, however,
>>> it is later passed to xc_vcpu_setaffinity() which expects it to be
>>> sized to the max number of CPUs
>>>
>>> Instead, we should allow copying the (smaller) bitmap read by the parser
>>> and keep the rest of bytes in the destination map unmodified (zero in
>>> this case)
>>>
>> Here is some more thoughts on this issue:
>>
>> This API is used by VCPU placement and NUMA placement logic in libxl. To
>> fix the breakage, we don't necessary need to expose new API or change
>> API behaviour, we only need to have a internal function to do it.
>>
>> The reversed case (large bitmap to small one) is not valid in libxl, as
>> in the pinning will fail. But bitmap copy happens before that, we would
>> still need to deal with that. Dario, can you provide some input on
>> the expected behaviour?
I understand that hypervisor will ignore bits that are beyond what it
knows about --- see xenctl_bitmap_to_bitmap(). And libxl will will issue
a warning. But only if byte-sized bitmaps are the same. If they are not
will will pop the assertion (in debug builds).
>>
>> The partial copy function should explicitly zero-out all remaining bits.
I actually thought that partial copy function should do just that ---
copy bits that it has and leave others unchanged. The caller, if desires
so, should have cleared the mask prior to the call. (This is for the
case when destination is larger than source, of course).
-boris
next prev parent reply other threads:[~2014-11-24 15:48 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-20 21:27 [PATCH for-xen-4.5] libxl: Allow copying smaller bitmap into a larger one Boris Ostrovsky
2014-11-21 11:12 ` Wei Liu
2014-11-21 14:43 ` Boris Ostrovsky
2014-11-21 11:26 ` Dario Faggioli
2014-11-21 14:47 ` Boris Ostrovsky
2014-11-24 10:41 ` Wei Liu
2014-11-24 10:47 ` Wei Liu
2014-11-24 15:48 ` Boris Ostrovsky [this message]
2014-11-25 9:42 ` Dario Faggioli
2014-11-25 9:48 ` Wei Liu
2014-11-25 10:39 ` Wei Liu
2014-11-25 11:15 ` Wei Liu
2014-11-25 11:41 ` Dario Faggioli
2014-11-25 14:57 ` Boris Ostrovsky
2014-11-25 15:54 ` Konrad Rzeszutek Wilk
2014-11-28 12:10 ` Ian Campbell
2014-11-26 12:51 ` Ian Campbell
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=54735343.1020208@oracle.com \
--to=boris.ostrovsky@oracle.com \
--cc=dario.faggioli@citrix.com \
--cc=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.