All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Beulich <jbeulich@suse.com>
To: "xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>
Cc: Stefano Stabellini <sstabellini@kernel.org>,
	Julien Grall <julien@xen.org>, Wei Liu <wl@xen.org>,
	George Dunlap <George.Dunlap@eu.citrix.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	Ian Jackson <ian.jackson@citrix.com>
Subject: Ping: [PATCH v3 5/8] evtchn: add compat struct checking for newer sub-ops
Date: Mon, 31 Aug 2020 09:44:10 +0200	[thread overview]
Message-ID: <3599eaa2-66b2-9039-829b-2409844d194d@suse.com> (raw)
In-Reply-To: <99e52b76-de0f-13ac-f37a-6e14cd4b566f@suse.com>

On 23.07.2020 17:50, Jan Beulich wrote:
> Various additions to the interface did not get mirrored into the compat
> handling machinery. Luckily all additions were done in ways not making
> any form of translation necessary.
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
> ---
> v3: New.

Anyone?

For the rest of this series, I'm going to put it in with Roger's
R-b-s, as there hasn't been other feedback in over a month. As the
one here is sufficiently simple and of little risk, I think I'll
also time out waiting for an ack or R-b by the end of the week.

Jan

> --- a/xen/common/compat/xlat.c
> +++ b/xen/common/compat/xlat.c
> @@ -54,6 +54,22 @@ CHECK_evtchn_op;
>  #undef xen_evtchn_status
>  #undef xen_evtchn_unmask
>  
> +#define xen_evtchn_expand_array evtchn_expand_array
> +CHECK_evtchn_expand_array;
> +#undef xen_evtchn_expand_array
> +
> +#define xen_evtchn_init_control evtchn_init_control
> +CHECK_evtchn_init_control;
> +#undef xen_evtchn_init_control
> +
> +#define xen_evtchn_reset evtchn_reset
> +CHECK_evtchn_reset;
> +#undef xen_evtchn_reset
> +
> +#define xen_evtchn_set_priority evtchn_set_priority
> +CHECK_evtchn_set_priority;
> +#undef xen_evtchn_set_priority
> +
>  #define xen_mmu_update mmu_update
>  CHECK_mmu_update;
>  #undef xen_mmu_update
> --- a/xen/include/xlat.lst
> +++ b/xen/include/xlat.lst
> @@ -66,8 +66,12 @@
>  ?	evtchn_bind_vcpu		event_channel.h
>  ?	evtchn_bind_virq		event_channel.h
>  ?	evtchn_close			event_channel.h
> +?	evtchn_expand_array		event_channel.h
> +?	evtchn_init_control		event_channel.h
>  ?	evtchn_op			event_channel.h
> +?	evtchn_reset			event_channel.h
>  ?	evtchn_send			event_channel.h
> +?	evtchn_set_priority		event_channel.h
>  ?	evtchn_status			event_channel.h
>  ?	evtchn_unmask			event_channel.h
>  ?	gnttab_cache_flush		grant_table.h
> 



  reply	other threads:[~2020-08-31  7:44 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-23 15:45 [PATCH v3 0/8] x86: compat header generation and checking adjustments Jan Beulich
2020-07-23 15:48 ` [PATCH v3 1/8] x86: fix compat header generation Jan Beulich
2020-08-31 13:07   ` Jan Beulich
2020-09-02 21:23     ` Don Slutz
2020-09-03  6:25       ` Jan Beulich
2020-07-23 15:48 ` [PATCH v3 2/8] x86/mce: add compat struct checking for XEN_MC_inject_v2 Jan Beulich
2020-07-23 15:49 ` [PATCH v3 3/8] x86/mce: bring hypercall subop compat checking in sync again Jan Beulich
2020-07-23 15:49 ` [PATCH v3 4/8] x86/dmop: add compat struct checking for XEN_DMOP_map_mem_type_to_ioreq_server Jan Beulich
2020-07-23 15:50 ` [PATCH v3 5/8] evtchn: add compat struct checking for newer sub-ops Jan Beulich
2020-08-31  7:44   ` Jan Beulich [this message]
2020-08-31 14:03     ` Ping: " Roger Pau Monné
2020-07-23 15:50 ` [PATCH v3 6/8] x86: generalize padding field handling Jan Beulich
2020-07-23 15:51 ` [PATCH v3 7/8] flask: drop dead compat translation code Jan Beulich
2020-07-23 15:52 ` [PATCH v3 8/8] x86: only generate compat headers actually needed Jan Beulich
2020-07-24  4:33 ` [PATCH v3 0/8] x86: compat header generation and checking adjustments Jürgen Groß
2020-07-24  6:27   ` Jan Beulich
2020-09-02  6:12 ` [PATCH v3.1 1/8] x86: fix compat header generation Jan Beulich
2020-09-03 13:07 ` [PATCH v3.2 " Jan Beulich

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=3599eaa2-66b2-9039-829b-2409844d194d@suse.com \
    --to=jbeulich@suse.com \
    --cc=George.Dunlap@eu.citrix.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=ian.jackson@citrix.com \
    --cc=julien@xen.org \
    --cc=sstabellini@kernel.org \
    --cc=wl@xen.org \
    --cc=xen-devel@lists.xenproject.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.