All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH/GIT PULL] Fixes for Xen v4.3 (v1)
@ 2013-05-10 21:00 Konrad Rzeszutek Wilk
  2013-05-10 21:00 ` [PATCH 1/5] MAINTAINERS: Change tmem maintainer Konrad Rzeszutek Wilk
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-05-10 21:00 UTC (permalink / raw)
  To: Ian.Campbell, George.Dunlap, xen-devel, Ian.Jackson, dgdegra

Please review the patches attached. Four of them have been Acked/Reviewed-by.
They are:

 [PATCH 1/5] MAINTAINERS: Change tmem maintainer.
 [PATCH 2/5] hypervisor/xen/tools: Remove the
 [PATCH 3/5] libxl: Change claim_mode from bool to int.
 [PATCH 4/5] libxl: claim: Print the values in 'xl info'

The last patch:
 [PATCH 5/5] libxl: Make 'xl vcpu-set' work properly on overcommited

has not yet been reviewed (well, v0 had been).

If they are OK please pull the following branch:

git://xenbits.xen.org/people/konradwilk/xen.git stable/for-xen-4.3

which has the following fixes:

 MAINTAINERS                         |  2 +-
 tools/libxc/xc_domain.c             |  9 ------
 tools/libxc/xenctrl.h               |  2 --
 tools/libxl/libxl.c                 | 15 +---------
 tools/libxl/libxl.h                 |  1 -
 tools/libxl/libxl_types.idl         |  1 +
 tools/libxl/xl.c                    |  6 ++--
 tools/libxl/xl.h                    |  2 +-
 tools/libxl/xl_cmdimpl.c            | 57 +++++++++++++++++++++----------------
 tools/libxl/xl_cmdtable.c           |  3 +-
 xen/common/memory.c                 |  8 ------
 xen/common/page_alloc.c             |  7 +++--
 xen/common/sysctl.c                 |  3 +-
 xen/include/public/memory.h         |  7 -----
 xen/include/public/sysctl.h         |  3 +-
 xen/include/xen/mm.h                |  2 +-
 xen/include/xsm/dummy.h             |  6 ----
 xen/include/xsm/xsm.h               |  6 ----
 xen/xsm/dummy.c                     |  1 -
 xen/xsm/flask/hooks.c               |  7 -----
 xen/xsm/flask/policy/access_vectors |  2 +-
 21 files changed, 53 insertions(+), 97 deletions(-)



Konrad Rzeszutek Wilk (5):
      MAINTAINERS: Change tmem maintainer.
      hypervisor/xen/tools: Remove the XENMEM_get_oustanding_pages and provide the data via xc_phys_info
      libxl: Change claim_mode from bool to int.
      libxl: claim: Print the values in 'xl info' unconditionally
      libxl: Make 'xl vcpu-set' work properly on overcommited hosts with an override.

Thanks!

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH/GIT PULL) Fixes for Xen 4.3 (v2).
@ 2013-05-13 19:29 Konrad Rzeszutek Wilk
  2013-05-13 19:29 ` [PATCH 4/5] libxl: claim: Print the values in 'xl info' unconditionally Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 13+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-05-13 19:29 UTC (permalink / raw)
  To: Ian.Campbell, George.Dunlap, xen-devel, Ian.Jackson, dgdegra

Please review the patches attached. All of them have been Acked/Reviewed-by
and reworked per the last posting.

If they are OK please pull the following branch:

git://xenbits.xen.org/people/konradwilk/xen.git stable/for-xen-4.3.v2

Konrad Rzeszutek Wilk (5):
      MAINTAINERS: Change tmem maintainer.
      hypervisor/xen/tools: Remove the XENMEM_get_oustanding_pages and provide the data via xc_phys_info
      libxl: Change claim_mode from bool to int.
      libxl: claim: Print the values in 'xl info' unconditionally
      libxl: Make 'xl vcpu-set' work properly on overcommited hosts with an override.

 MAINTAINERS                         |  2 +-
 tools/libxc/xc_domain.c             |  9 ------
 tools/libxc/xenctrl.h               |  2 --
 tools/libxl/libxl.c                 | 15 +---------
 tools/libxl/libxl.h                 |  1 -
 tools/libxl/libxl_types.idl         |  1 +
 tools/libxl/xl.c                    |  6 ++--
 tools/libxl/xl.h                    |  2 +-
 tools/libxl/xl_cmdimpl.c            | 58 +++++++++++++++++++++----------------
 tools/libxl/xl_cmdtable.c           |  3 +-
 xen/common/memory.c                 |  8 -----
 xen/common/page_alloc.c             |  7 +++--
 xen/common/sysctl.c                 |  3 +-
 xen/include/public/memory.h         |  7 -----
 xen/include/public/sysctl.h         |  3 +-
 xen/include/xen/mm.h                |  2 +-
 xen/include/xsm/dummy.h             |  6 ----
 xen/include/xsm/xsm.h               |  6 ----
 xen/xsm/dummy.c                     |  1 -
 xen/xsm/flask/hooks.c               |  7 -----
 xen/xsm/flask/policy/access_vectors |  2 +-
 21 files changed, 53 insertions(+), 98 deletions(-)

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

end of thread, other threads:[~2013-05-13 19:29 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-10 21:00 [PATCH/GIT PULL] Fixes for Xen v4.3 (v1) Konrad Rzeszutek Wilk
2013-05-10 21:00 ` [PATCH 1/5] MAINTAINERS: Change tmem maintainer Konrad Rzeszutek Wilk
2013-05-10 21:00 ` [PATCH 2/5] hypervisor/xen/tools: Remove the XENMEM_get_oustanding_pages and provide the data via xc_phys_info Konrad Rzeszutek Wilk
2013-05-10 21:00 ` [PATCH 3/5] libxl: Change claim_mode from bool to int Konrad Rzeszutek Wilk
2013-05-10 21:00 ` [PATCH 4/5] libxl: claim: Print the values in 'xl info' unconditionally Konrad Rzeszutek Wilk
2013-05-13 10:17   ` Ian Campbell
2013-05-13 10:22     ` Ian Campbell
2013-05-13 10:23       ` Ian Campbell
2013-05-13 10:24     ` Ian Campbell
2013-05-13 13:51     ` Konrad Rzeszutek Wilk
2013-05-10 21:00 ` [PATCH 5/5] libxl: Make 'xl vcpu-set' work properly on overcommited hosts with an override Konrad Rzeszutek Wilk
2013-05-13 10:25   ` Ian Campbell
2013-05-13 19:29 [PATCH/GIT PULL) Fixes for Xen 4.3 (v2) Konrad Rzeszutek Wilk
2013-05-13 19:29 ` [PATCH 4/5] libxl: claim: Print the values in 'xl info' unconditionally Konrad Rzeszutek Wilk

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.