All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xen-devel] [PATCH v3 00/10] xen/nodemask: API cleanup and fixes
@ 2019-07-29 12:11 Andrew Cooper
  2019-07-29 12:11 ` [Xen-devel] [PATCH v3 01/10] page-alloc: Clamp get_free_buddy() to online nodes Andrew Cooper
                   ` (9 more replies)
  0 siblings, 10 replies; 33+ messages in thread
From: Andrew Cooper @ 2019-07-29 12:11 UTC (permalink / raw)
  To: Xen-devel
  Cc: Juergen Gross, Stefano Stabellini, Wei Liu, George Dunlap,
	Andrew Cooper, Dario Faggioli, Julien Grall, Jan Beulich,
	Volodymyr Babchuk, Roger Pau Monné

This series has expanded substantially from v2.

The bugfix has been moved to patch 1, in case it wants backporting.
Everything else is API cleanup following from Jan's request to do more than in
v2.

Andrew Cooper (10):
  page-alloc: Clamp get_free_buddy() to online nodes
  xen/bitmap: Drop {bitmap,cpumask,nodes}_shift_{left,right}()
  xen/nodemask: Drop any_online_node() and first_unset_node()
  xen/mask: Convert {cpu,node}mask_test() to be static inline
  xen/cpumask: Introduce a CPUMASK_PR() wrapper for printing
  xen/nodemask: Introduce a NODEMASK_PR() wrapper for printing
  xen/nodemask: Drop nodes_{setall,clear}() and improve the initialisers
  xen/nodemask: Introduce unlocked __nodemask_{set,clear}() helpers
  xen/nodemask: Sanitise the remainder of the nodemask API
  xen/nodemask: Drop remaining refeces to linux

 xen/arch/x86/cpu/mcheck/mce.c |   2 +-
 xen/arch/x86/crash.c          |   2 +-
 xen/arch/x86/dom0_build.c     |  12 +-
 xen/arch/x86/io_apic.c        |   6 +-
 xen/arch/x86/irq.c            |   5 +-
 xen/arch/x86/numa.c           |   7 +-
 xen/arch/x86/srat.c           |  15 +-
 xen/arch/x86/sysctl.c         |   3 +-
 xen/common/bitmap.c           |  88 -----------
 xen/common/cpupool.c          |   7 +-
 xen/common/domain.c           |  10 +-
 xen/common/domctl.c           |   4 +-
 xen/common/keyhandler.c       |  10 +-
 xen/common/page_alloc.c       |  35 +++--
 xen/common/sched_credit.c     |   8 +-
 xen/common/sched_credit2.c    |  12 +-
 xen/common/sched_null.c       |   7 +-
 xen/common/sched_rt.c         |   3 +-
 xen/common/sysctl.c           |   2 +-
 xen/include/xen/bitmap.h      |  22 ---
 xen/include/xen/cpumask.h     |  41 ++---
 xen/include/xen/nodemask.h    | 346 +++++++++++++++++-------------------------
 22 files changed, 228 insertions(+), 419 deletions(-)

-- 
2.11.0


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

end of thread, other threads:[~2019-07-31 13:33 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-29 12:11 [Xen-devel] [PATCH v3 00/10] xen/nodemask: API cleanup and fixes Andrew Cooper
2019-07-29 12:11 ` [Xen-devel] [PATCH v3 01/10] page-alloc: Clamp get_free_buddy() to online nodes Andrew Cooper
2019-07-29 15:48   ` Jan Beulich
2019-07-29 17:26     ` Andrew Cooper
2019-07-30  8:09       ` Jan Beulich
2019-07-30 17:32         ` Andrew Cooper
2019-07-31  8:22           ` Jan Beulich
2019-07-31  9:01             ` Andrew Cooper
2019-07-29 12:11 ` [Xen-devel] [PATCH v3 02/10] xen/bitmap: Drop {bitmap, cpumask, nodes}_shift_{left, right}() Andrew Cooper
2019-07-29 15:50   ` Jan Beulich
2019-07-29 12:11 ` [Xen-devel] [PATCH v3 03/10] xen/nodemask: Drop any_online_node() and first_unset_node() Andrew Cooper
2019-07-29 15:51   ` Jan Beulich
2019-07-29 12:11 ` [Xen-devel] [PATCH v3 04/10] xen/mask: Convert {cpu, node}mask_test() to be static inline Andrew Cooper
2019-07-30  8:52   ` Jan Beulich
2019-07-30  9:03     ` Andrew Cooper
2019-07-29 12:11 ` [Xen-devel] [PATCH v3 05/10] xen/cpumask: Introduce a CPUMASK_PR() wrapper for printing Andrew Cooper
2019-07-30  8:55   ` Jan Beulich
2019-07-29 12:12 ` [Xen-devel] [PATCH v3 06/10] xen/nodemask: Introduce a NODEMASK_PR() " Andrew Cooper
2019-07-30  8:58   ` Jan Beulich
2019-07-30  9:09     ` Andrew Cooper
2019-07-29 12:12 ` [Xen-devel] [PATCH v3 07/10] xen/nodemask: Drop nodes_{setall, clear}() and improve the initialisers Andrew Cooper
2019-07-30  9:44   ` Jan Beulich
2019-07-31 12:49     ` Andrew Cooper
2019-07-31 13:12       ` Jan Beulich
2019-07-31 13:32         ` Andrew Cooper
2019-07-29 12:12 ` [Xen-devel] [PATCH v3 08/10] xen/nodemask: Introduce unlocked __nodemask_{set, clear}() helpers Andrew Cooper
2019-07-30 11:26   ` Jan Beulich
2019-07-30 17:48     ` Andrew Cooper
2019-07-31  8:41       ` Jan Beulich
2019-07-29 12:12 ` [Xen-devel] [PATCH v3 09/10] xen/nodemask: Sanitise the remainder of the nodemask API Andrew Cooper
2019-07-30 11:43   ` Jan Beulich
2019-07-29 12:12 ` [Xen-devel] [PATCH v3 10/10] xen/nodemask: Drop remaining refeces to linux Andrew Cooper
2019-07-30 11:44   ` Jan Beulich

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.