mbox series

[v4,0/5] tools/xenstore: more cleanups

Message ID 20230627122750.2007-1-jgross@suse.com (mailing list archive)
Headers show
Series tools/xenstore: more cleanups | expand

Message

Jürgen Groß June 27, 2023, 12:27 p.m. UTC
Some more cleanups of Xenstore.

Changes in V2:
- rebase
- one small modification of patch 10
- added patches 11-13

Changes in V3:
- rebase
- modified patch 4
- added patches 10, 11 and 13

Changes in V4:
- patches 1-11 already committed
- modified patch 3
- rebased patch 4 after modifying patch 3

Juergen Gross (5):
  tools/xenstore: remove no longer needed functions from xs_lib.c
  tools/xenstore: replace xs_lib.c with a header
  tools/xenstore: split out environment specific live update code
  tools/xenstore: split out rest of live update control code
  tools/xenstore: remove unused stuff from list.h

 MAINTAINERS                               |   1 +
 tools/include/xen-tools/xenstore-common.h | 128 +++++
 tools/include/xenstore.h                  |   3 +
 tools/include/xenstore_lib.h              |   3 -
 tools/libs/store/Makefile                 |   4 -
 tools/libs/store/xs.c                     |  71 ++-
 tools/xenstore/COPYING                    | 514 -----------------
 tools/xenstore/Makefile                   |   2 +-
 tools/xenstore/Makefile.common            |  12 +-
 tools/xenstore/list.h                     | 227 --------
 tools/xenstore/xenstore_client.c          | 133 ++++-
 tools/xenstore/xenstored_control.c        | 661 +---------------------
 tools/xenstore/xenstored_control.h        |   8 -
 tools/xenstore/xenstored_core.c           |  19 +-
 tools/xenstore/xenstored_lu.c             | 408 +++++++++++++
 tools/xenstore/xenstored_lu.h             |  81 +++
 tools/xenstore/xenstored_lu_daemon.c      | 130 +++++
 tools/xenstore/xenstored_lu_minios.c      | 118 ++++
 tools/xenstore/xs_lib.c                   | 292 ----------
 tools/xenstore/xs_lib.h                   |  50 --
 20 files changed, 1085 insertions(+), 1780 deletions(-)
 create mode 100644 tools/include/xen-tools/xenstore-common.h
 delete mode 100644 tools/xenstore/COPYING
 create mode 100644 tools/xenstore/xenstored_lu.c
 create mode 100644 tools/xenstore/xenstored_lu.h
 create mode 100644 tools/xenstore/xenstored_lu_daemon.c
 create mode 100644 tools/xenstore/xenstored_lu_minios.c
 delete mode 100644 tools/xenstore/xs_lib.c
 delete mode 100644 tools/xenstore/xs_lib.h

Comments

Julien Grall June 29, 2023, 9:39 p.m. UTC | #1
Hi Juergen,

On 27/06/2023 13:27, Juergen Gross wrote:
> Some more cleanups of Xenstore.
> 
> Changes in V2:
> - rebase
> - one small modification of patch 10
> - added patches 11-13
> 
> Changes in V3:
> - rebase
> - modified patch 4
> - added patches 10, 11 and 13
> 
> Changes in V4:
> - patches 1-11 already committed
> - modified patch 3
> - rebased patch 4 after modifying patch 3
> 
> Juergen Gross (5):
>    tools/xenstore: remove no longer needed functions from xs_lib.c
>    tools/xenstore: replace xs_lib.c with a header
>    tools/xenstore: split out environment specific live update code
>    tools/xenstore: split out rest of live update control code
>    tools/xenstore: remove unused stuff from list.h

I have committed the series.

Cheers,