xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v8 0/6] xen: systemd support
@ 2014-07-26  2:14 Luis R. Rodriguez
  2014-07-26  2:14 ` [PATCH v8 1/6] cxenstored: also fail if only 1 socket was given by systemd Luis R. Rodriguez
                   ` (6 more replies)
  0 siblings, 7 replies; 30+ messages in thread
From: Luis R. Rodriguez @ 2014-07-26  2:14 UTC (permalink / raw)
  To: xen-devel; +Cc: Luis R. Rodriguez

From: "Luis R. Rodriguez" <mcgrof@suse.com>

Here's my v8 series. Quite a bit of patches are alreayd merged
on the xen origin/staging branch, this addresses the last feedback
from the v7 series and is rebased. It contains two fixes spotted
as possible issues by Ian Campbell.

I think this is it, after about 2 months of spinning patches. Phew.

Luis R. Rodriguez (6):
  cxenstored: also fail if only 1 socket was given by systemd
  oxenstored: also fail if only 1 socket was given by systemd
  autoconf: xen: move standard path variables to config/Paths.mk.in
  xencommons: move module list into a generic place
  autoconf: xen: enable explicit preference option for xenstored
    preference
  systemd: add xen systemd service and module files

 .gitignore                                         |   6 +
 Makefile                                           |   6 +-
 README                                             |  60 ++++++++++
 config/Linux.modules                               |  20 ++++
 config/Paths.mk.in                                 |  37 +++++++
 config/Stubdom.mk.in                               |   1 +
 config/Tools.mk.in                                 |   6 +
 configure.ac                                       |   8 +-
 m4/README.source                                   |   8 ++
 m4/paths.m4                                        |  61 ++++++++++
 m4/systemd.m4                                      | 123 +++++++++++++++++++++
 m4/xenstored.m4                                    |  56 ++++++++++
 tools/Rules.mk                                     |   1 +
 tools/configure.ac                                 |  30 ++++-
 tools/hotplug/Linux/Makefile                       |  17 ++-
 ...ysconfig.xencommons => sysconfig.xencommons.in} |  13 ++-
 .../Linux/init.d/{xencommons => xencommons.in.in}  |  24 +---
 tools/hotplug/Linux/systemd/Makefile               |  67 +++++++++++
 tools/hotplug/Linux/systemd/proc-xen.mount.in      |   9 ++
 .../Linux/systemd/var-lib-xenstored.mount.in       |  13 +++
 .../systemd/xen-qemu-dom0-disk-backend.service.in  |  22 ++++
 .../hotplug/Linux/systemd/xen-watchdog.service.in  |  13 +++
 tools/hotplug/Linux/systemd/xenconsoled.service.in |  20 ++++
 tools/hotplug/Linux/systemd/xendomains.service.in  |  16 +++
 tools/hotplug/Linux/systemd/xenstored.service.in   |  27 +++++
 tools/hotplug/Linux/systemd/xenstored.socket.in    |  11 ++
 tools/hotplug/Linux/systemd/xenstored_ro.socket.in |  11 ++
 tools/hotplug/Linux/update-modules.sh              |  30 +++++
 tools/ocaml/xenstored/Makefile                     |   5 +
 tools/ocaml/xenstored/systemd_stubs.c              |   2 +-
 tools/xenstore/Makefile                            |   6 +
 tools/xenstore/xenstored_core.c                    |   2 +-
 32 files changed, 695 insertions(+), 36 deletions(-)
 create mode 100644 config/Linux.modules
 create mode 100644 config/Paths.mk.in
 create mode 100644 m4/paths.m4
 create mode 100644 m4/systemd.m4
 create mode 100644 m4/xenstored.m4
 rename tools/hotplug/Linux/init.d/{sysconfig.xencommons => sysconfig.xencommons.in} (63%)
 rename tools/hotplug/Linux/init.d/{xencommons => xencommons.in.in} (82%)
 create mode 100644 tools/hotplug/Linux/systemd/Makefile
 create mode 100644 tools/hotplug/Linux/systemd/proc-xen.mount.in
 create mode 100644 tools/hotplug/Linux/systemd/var-lib-xenstored.mount.in
 create mode 100644 tools/hotplug/Linux/systemd/xen-qemu-dom0-disk-backend.service.in
 create mode 100644 tools/hotplug/Linux/systemd/xen-watchdog.service.in
 create mode 100644 tools/hotplug/Linux/systemd/xenconsoled.service.in
 create mode 100644 tools/hotplug/Linux/systemd/xendomains.service.in
 create mode 100644 tools/hotplug/Linux/systemd/xenstored.service.in
 create mode 100644 tools/hotplug/Linux/systemd/xenstored.socket.in
 create mode 100644 tools/hotplug/Linux/systemd/xenstored_ro.socket.in
 create mode 100755 tools/hotplug/Linux/update-modules.sh

-- 
2.0.1

^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2014-09-23  8:20 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-26  2:14 [PATCH v8 0/6] xen: systemd support Luis R. Rodriguez
2014-07-26  2:14 ` [PATCH v8 1/6] cxenstored: also fail if only 1 socket was given by systemd Luis R. Rodriguez
2014-07-26  2:14 ` [PATCH v8 2/6] oxenstored: " Luis R. Rodriguez
2014-07-26  2:14 ` [PATCH v8 3/6] autoconf: xen: move standard path variables to config/Paths.mk.in Luis R. Rodriguez
2014-08-04 14:24   ` Julien Grall
2014-08-04 14:28     ` Ian Campbell
2014-08-04 14:30   ` Ian Campbell
2014-09-23  7:55     ` Luis R. Rodriguez
2014-09-23  8:15       ` Olaf Hering
2014-09-23  8:19         ` Luis R. Rodriguez
2014-07-26  2:14 ` [PATCH v8 4/6] xencommons: move module list into a generic place Luis R. Rodriguez
2014-07-26  2:14 ` [PATCH v8 5/6] autoconf: xen: enable explicit preference option for xenstored preference Luis R. Rodriguez
2014-07-26  2:14 ` [PATCH v8 6/6] systemd: add xen systemd service and module files Luis R. Rodriguez
2014-07-28 12:46 ` [PATCH v8 0/6] xen: systemd support Ian Campbell
2014-07-28 15:02   ` Luis R. Rodriguez
2014-07-28 15:05     ` Ian Campbell
2014-07-28 17:57       ` Luis R. Rodriguez
2014-07-29  8:56         ` Ian Campbell
2014-07-30 16:22           ` Luis R. Rodriguez
2014-07-30 16:25             ` Ian Campbell
2014-07-30 16:43               ` Luis R. Rodriguez
2014-07-31  8:30                 ` Ian Campbell
2014-07-28 16:52   ` Andrew Cooper
2014-07-28 16:57     ` Andrew Cooper
2014-07-28 17:00       ` Luis R. Rodriguez
2014-07-28 18:33         ` Luis R. Rodriguez
2014-07-29  8:54           ` Ian Campbell
2014-07-29  9:33             ` Andrew Cooper
2014-07-29  9:49               ` Ian Campbell
2014-07-29 10:47                 ` Andrew Cooper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).