All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rahul Singh <rahul.singh@arm.com>
To: xen-devel@lists.xenproject.org
Cc: bertrand.marquis@arm.com, rahul.singh@arm.com,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	George Dunlap <george.dunlap@citrix.com>,
	Jan Beulich <jbeulich@suse.com>, Julien Grall <julien@xen.org>,
	Stefano Stabellini <sstabellini@kernel.org>, Wei Liu <wl@xen.org>,
	Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>
Subject: [PATCH 0/8] xen/evtchn: implement static event channel signaling
Date: Wed, 22 Jun 2022 15:37:57 +0100	[thread overview]
Message-ID: <cover.1655903088.git.rahul.singh@arm.com> (raw)

The purpose of this patch series is to add static event channel signaling
support to Xen on Arm based on design doc [1].

This patch series depends on patch series [2] to create event channel in Xen. 

[1] https://lists.xenproject.org/archives/html/xen-devel/2022-05/msg01160.html
[2] https://patchwork.kernel.org/project/xen-devel/list/?series=646289

Rahul Singh (8):
  xen/evtchn: make evtchn_bind_interdomain global
  xen/evtchn: modify evtchn_alloc_unbound to allocate specified port
  xen/evtchn: modify evtchn_bind_interdomain to allocate specified port
  xen/evtchn: modify evtchn_bind_interdomain to pass domain as argument
  xen/evtchn: don't close the static event channel.
  xen/evtchn: don't set notification in evtchn_bind_interdomain()
  xen: introduce xen-evtchn dom0less property
  xen/arm: introduce new xen,enhanced property value

 docs/misc/arm/device-tree/booting.txt |  62 +++++-
 xen/arch/arm/domain_build.c           | 290 +++++++++++++++++++-------
 xen/arch/arm/include/asm/domain.h     |   1 +
 xen/arch/arm/include/asm/kernel.h     |   3 +
 xen/arch/arm/include/asm/setup.h      |   1 +
 xen/arch/arm/setup.c                  |   2 +
 xen/common/event_channel.c            |  68 ++++--
 xen/include/xen/event.h               |   8 +-
 xen/include/xen/sched.h               |   1 +
 9 files changed, 351 insertions(+), 85 deletions(-)

-- 
2.25.1



             reply	other threads:[~2022-06-22 14:38 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-22 14:37 Rahul Singh [this message]
2022-06-22 14:37 ` [PATCH 1/8] xen/evtchn: make evtchn_bind_interdomain global Rahul Singh
2022-07-05 14:56   ` Jan Beulich
2022-07-06 11:53     ` Rahul Singh
2022-06-22 14:37 ` [PATCH 2/8] xen/evtchn: modify evtchn_alloc_unbound to allocate specified port Rahul Singh
2022-06-22 14:51   ` Julien Grall
2022-07-05 15:06     ` Jan Beulich
2022-07-11 16:08     ` Rahul Singh
2022-07-12 17:28       ` Julien Grall
2022-07-13  6:21         ` Jan Beulich
2022-07-13  9:35           ` Julien Grall
2022-07-13  9:53             ` Jan Beulich
2022-07-13 10:03               ` Bertrand Marquis
2022-07-13 10:33                 ` Julien Grall
2022-07-13 10:18               ` Julien Grall
2022-07-13 10:56                 ` Jan Beulich
2022-07-13 11:31                   ` Julien Grall
2022-07-13 12:12                     ` Bertrand Marquis
2022-07-13 12:29                       ` Julien Grall
2022-07-20  9:59                         ` Rahul Singh
2022-07-20 11:16                           ` Julien Grall
2022-07-20 13:34                             ` Jan Beulich
2022-07-21 12:50                             ` Rahul Singh
2022-07-21 13:29                               ` Julien Grall
2022-07-21 15:37                                 ` Rahul Singh
2022-07-26 17:37                                   ` Julien Grall
2022-07-28 15:37                                     ` Rahul Singh
2022-07-28 15:51                                       ` Jan Beulich
2022-07-28 20:50                                       ` Julien Grall
2022-07-29 12:35                                         ` Rahul Singh
2022-06-22 14:38 ` [PATCH 3/8] xen/evtchn: modify evtchn_bind_interdomain " Rahul Singh
2022-07-05 15:11   ` Jan Beulich
2022-07-05 15:22     ` Julien Grall
2022-07-05 15:42       ` Jan Beulich
2022-07-06 11:59         ` Rahul Singh
2022-07-06 11:57       ` Rahul Singh
2022-06-22 14:38 ` [PATCH 4/8] xen/evtchn: modify evtchn_bind_interdomain to pass domain as argument Rahul Singh
2022-07-05 15:13   ` Jan Beulich
2022-07-06 11:54     ` Rahul Singh
2022-06-22 14:38 ` [PATCH 5/8] xen/evtchn: don't close the static event channel Rahul Singh
2022-06-22 15:05   ` Julien Grall
2022-06-23 15:10     ` Rahul Singh
2022-06-23 15:30       ` Julien Grall
2022-06-23 15:33         ` Jan Beulich
2022-06-28 13:53         ` Rahul Singh
2022-06-28 14:26           ` Julien Grall
2022-06-28 14:52             ` Bertrand Marquis
2022-06-28 15:18               ` Julien Grall
2022-06-28 15:20                 ` Jan Beulich
2022-07-05 13:28                 ` Rahul Singh
2022-07-05 13:56                   ` Julien Grall
2022-07-06 10:42                     ` Rahul Singh
2022-07-06 11:04                       ` Julien Grall
2022-07-06 11:33                         ` Juergen Gross
2022-07-07 12:45                           ` Rahul Singh
2022-07-05 15:17   ` Jan Beulich
2022-07-05 15:26   ` Jan Beulich
2022-07-05 15:33     ` Jan Beulich
2022-06-22 14:38 ` [PATCH 6/8] xen/evtchn: don't set notification in evtchn_bind_interdomain() Rahul Singh
2022-07-05 15:23   ` Jan Beulich
2022-06-22 14:38 ` [PATCH 7/8] xen: introduce xen-evtchn dom0less property Rahul Singh
2022-08-05 16:10   ` Rahul Singh
2022-08-05 16:14     ` Julien Grall
2022-08-08  9:17       ` Rahul Singh
2022-06-22 14:38 ` [PATCH 8/8] xen/arm: introduce new xen,enhanced property value Rahul Singh

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=cover.1655903088.git.rahul.singh@arm.com \
    --to=rahul.singh@arm.com \
    --cc=Volodymyr_Babchuk@epam.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=bertrand.marquis@arm.com \
    --cc=george.dunlap@citrix.com \
    --cc=jbeulich@suse.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.