From: Vitaly Kuznetsov <vkuznets@redhat.com>
To: Nadav Amit <nadav.amit@gmail.com>,
Thomas Gleixner <tglx@linutronix.de>,
Paolo Bonzini <pbonzini@redhat.com>
Cc: "K. Y. Srinivasan" <kys@microsoft.com>,
"Haiyang Zhang" <haiyangz@microsoft.com>,
"Stephen Hemminger" <sthemmin@microsoft.com>,
"Michael Kelley (EOSG)" <Michael.H.Kelley@microsoft.com>,
"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
"Radim Krčmář" <rkrcmar@redhat.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"x86@kernel.org" <x86@kernel.org>,
"Roman Kagan" <rkagan@virtuozzo.com>
Subject: Re: [PATCH v2 1/4] x86/hyper-v: move synic/stimer control structures definitions to hyperv-tlfs.h
Date: Thu, 29 Nov 2018 12:36:18 +0100 [thread overview]
Message-ID: <87bm68i099.fsf@vitty.brq.redhat.com> (raw)
In-Reply-To: <B310522C-8D67-4143-8281-2C870A881F6B@gmail.com>
Nadav Amit <nadav.amit@gmail.com> writes:
>> On Nov 28, 2018, at 5:07 AM, Thomas Gleixner <tglx@linutronix.de> wrote:
>>
>> On Wed, 28 Nov 2018, Vitaly Kuznetsov wrote:
>>
>>> Nadav Amit <nadav.amit@gmail.com> writes:
>>>
>>>> On a different note: how come all of the hyper-v structs are not marked
>>>> with the “packed" attribute?
>>>
>>> "packed" should not be needed with proper padding; I vaguely remember
>>> someone (from x86@?) arguing _against_ "packed".
>>
>> Packed needs to be used, when describing fixed format data structures in
>> hardware or other ABIs, so the compiler cannot put alignment holes into
>> them.
>>
>> Using packed for generic data structures might result in suboptimal layouts
>> and prevents layout randomization.
>
> Right, I forgot about the structs randomization. So at least for it, the
> attribute should be needed.
>
Not sure when randomization.s used but Hyper-V drivers will of course be
utterly broken with it.
> To prevent conflicts, I think that this series should also add the
> attribute in a first patch, which would be tagged for stable.
As the patchset doesn't add new definitions and as Paolo already queued
it I'd go with a follow-up patch adding "packed" to all hyperv-tlfs.h
structures. The question is how to avoid conflicts when Linus will be
merging this. We can do:
- Topic branch in kvm
- Send the patch to x86, make topic branch and reabse kvm
- Send the patch to kvm
- ... ?
Paolo/Thomas, what would be your preference?
--
Vitaly
next prev parent reply other threads:[~2018-11-29 11:36 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-26 15:47 [PATCH v2 0/4] x86/kvm/hyper-v: Implement Direct Mode for synthetic timers Vitaly Kuznetsov
2018-11-26 15:47 ` [PATCH v2 1/4] x86/hyper-v: move synic/stimer control structures definitions to hyperv-tlfs.h Vitaly Kuznetsov
2018-11-26 17:00 ` Michael Kelley
2018-11-26 20:04 ` Roman Kagan
2018-11-27 13:10 ` Vitaly Kuznetsov
2018-11-27 15:52 ` Michael Kelley
2018-11-27 16:32 ` Vitaly Kuznetsov
2018-11-27 18:48 ` Roman Kagan
2018-11-28 1:49 ` Nadav Amit
2018-11-28 10:37 ` Vitaly Kuznetsov
2018-11-28 13:07 ` Thomas Gleixner
2018-11-28 17:55 ` Nadav Amit
2018-11-29 11:36 ` Vitaly Kuznetsov [this message]
2018-11-29 19:22 ` Thomas Gleixner
2018-11-29 7:52 ` Roman Kagan
2018-11-28 8:40 ` Paolo Bonzini
2018-11-26 15:47 ` [PATCH v2 2/4] x86/kvm/hyper-v: use stimer config definition from hyperv-tlfs.h Vitaly Kuznetsov
2018-11-26 15:47 ` [PATCH v2 3/4] x86/kvm/hyper-v: direct mode for synthetic timers Vitaly Kuznetsov
2018-11-26 16:44 ` Paolo Bonzini
2018-11-26 17:14 ` Vitaly Kuznetsov
2018-11-27 8:37 ` Roman Kagan
2018-11-27 13:54 ` Paolo Bonzini
2018-11-27 19:05 ` Roman Kagan
2018-11-28 8:43 ` Paolo Bonzini
2018-11-27 8:21 ` Roman Kagan
2018-12-03 17:12 ` Roman Kagan
2018-12-04 12:36 ` Vitaly Kuznetsov
2018-12-10 12:06 ` Roman Kagan
2018-12-10 12:54 ` Vitaly Kuznetsov
2018-12-10 13:21 ` Roman Kagan
2018-12-10 14:53 ` Vitaly Kuznetsov
2018-11-26 15:47 ` [PATCH v2 4/4] x86/kvm/hyper-v: avoid open-coding stimer_mark_pending() in kvm_hv_notify_acked_sint() Vitaly Kuznetsov
2018-11-26 16:45 ` Paolo Bonzini
2018-11-27 8:49 ` Roman Kagan
2018-11-26 16:45 ` [PATCH v2 0/4] x86/kvm/hyper-v: Implement Direct Mode for synthetic timers Paolo Bonzini
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=87bm68i099.fsf@vitty.brq.redhat.com \
--to=vkuznets@redhat.com \
--cc=Michael.H.Kelley@microsoft.com \
--cc=haiyangz@microsoft.com \
--cc=kvm@vger.kernel.org \
--cc=kys@microsoft.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nadav.amit@gmail.com \
--cc=pbonzini@redhat.com \
--cc=rkagan@virtuozzo.com \
--cc=rkrcmar@redhat.com \
--cc=sthemmin@microsoft.com \
--cc=tglx@linutronix.de \
--cc=x86@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