All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] libxl: spolit up libxl.c
@ 2017-02-08 13:13 Juergen Gross
  2017-02-08 13:13 ` [PATCH 1/9] libxl: adjust copyright comment of libxl.c Juergen Gross
                   ` (10 more replies)
  0 siblings, 11 replies; 19+ messages in thread
From: Juergen Gross @ 2017-02-08 13:13 UTC (permalink / raw)
  To: xen-devel; +Cc: Juergen Gross, wei.liu2, ian.jackson, haozhong.zhang

libxl.c has become rather large. Split it up into multiple files.

Code movement only. No functional change intended.

Juergen Gross (9):
  libxl: adjust copyright comment of libxl.c
  libxl: carve out cpupool specific functions from libxl.c
  libxl: carve out scheduler specific functions from libxl.c
  libxl: carve out disk specific functions from libxl.c
  libxl: carve out console specific functions from libxl.c
  libxl: carve out memory specific functions from libxl.c
  libxl: move device specific functions out of libxl.c
  libxl: carve out tmem specific functions from libxl.c
  libxl: carve out domain specific functions from libxl.c

 tools/libxl/Makefile         |    4 +-
 tools/libxl/libxl.c          | 6252 +-----------------------------------------
 tools/libxl/libxl_console.c  |  862 ++++++
 tools/libxl/libxl_cpupool.c  |  443 +++
 tools/libxl/libxl_device.c   |  435 ++-
 tools/libxl/libxl_disk.c     | 1258 +++++++++
 tools/libxl/libxl_domain.c   | 1744 ++++++++++++
 tools/libxl/libxl_internal.h |    8 +-
 tools/libxl/libxl_mem.c      |  601 ++++
 tools/libxl/libxl_sched.c    |  915 +++++++
 tools/libxl/libxl_tmem.c     |  167 ++
 11 files changed, 6424 insertions(+), 6265 deletions(-)
 create mode 100644 tools/libxl/libxl_console.c
 create mode 100644 tools/libxl/libxl_cpupool.c
 create mode 100644 tools/libxl/libxl_disk.c
 create mode 100644 tools/libxl/libxl_domain.c
 create mode 100644 tools/libxl/libxl_mem.c
 create mode 100644 tools/libxl/libxl_sched.c
 create mode 100644 tools/libxl/libxl_tmem.c

-- 
2.10.2


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

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

end of thread, other threads:[~2017-02-09  9:36 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-08 13:13 [PATCH 0/9] libxl: spolit up libxl.c Juergen Gross
2017-02-08 13:13 ` [PATCH 1/9] libxl: adjust copyright comment of libxl.c Juergen Gross
2017-02-08 13:13 ` [PATCH 2/9] libxl: carve out cpupool specific functions from libxl.c Juergen Gross
2017-02-08 13:13 ` [PATCH 3/9] libxl: carve out scheduler " Juergen Gross
2017-02-08 13:13 ` [PATCH 4/9] libxl: carve out disk " Juergen Gross
2017-02-08 13:13 ` [PATCH 5/9] libxl: carve out console " Juergen Gross
2017-02-08 13:13 ` [PATCH 6/9] libxl: carve out memory " Juergen Gross
2017-02-08 13:13 ` [PATCH 7/9] libxl: move device specific functions out of libxl.c Juergen Gross
2017-02-08 13:13 ` [PATCH 8/9] libxl: carve out tmem specific functions from libxl.c Juergen Gross
2017-02-08 13:13 ` [PATCH 9/9] libxl: carve out domain " Juergen Gross
2017-02-08 14:33 ` [PATCH 0/9] libxl: spolit up libxl.c Ian Jackson
2017-02-08 14:54   ` Juergen Gross
2017-02-08 16:12     ` Ian Jackson
2017-02-08 16:28       ` Juergen Gross
2017-02-08 14:35 ` Wei Liu
2017-02-08 16:54   ` Wei Liu
2017-02-09  1:51     ` Zhang Chen
2017-02-09  9:36       ` Wei Liu
2017-02-09  1:12   ` Haozhong Zhang

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.