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

Juergen Gross posted 5 patches 10 months, 1 week ago
Failed in applying to current master (apply log)
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
[PATCH v4 0/5] tools/xenstore: more cleanups
Posted by Juergen Gross 10 months, 1 week ago
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

-- 
2.35.3
Re: [PATCH v4 0/5] tools/xenstore: more cleanups
Posted by Julien Grall 10 months ago
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,

-- 
Julien Grall