From: Wei Liu <wei.liu2@citrix.com>
To: Juergen Gross <jgross@suse.com>
Cc: haozhong.zhang@intel.com, wei.liu2@citrix.com,
zhangchen.fnst@cn.fujitsu.com, ian.jackson@eu.citrix.com,
yi.y.sun@linux.intel.com, xen-devel@lists.xenproject.org
Subject: Re: [PATCH 0/9] libxl: spolit up libxl.c
Date: Wed, 8 Feb 2017 16:54:55 +0000 [thread overview]
Message-ID: <20170208165454.atm62cjpby4xlnwt@citrix.com> (raw)
In-Reply-To: <20170208143527.d357ef6j3xul22ig@citrix.com>
And CC Zhangchen
On Wed, Feb 08, 2017 at 02:35:27PM +0000, Wei Liu wrote:
> Cc Yi Sun as well.
>
> Haozhong and Yi: This is just a heads-up -- Juergen from SuSE took the
> time to split libxl.c so things are better organised. It's likely this
> series will go in before yours, so you will then need to rebase your
> series. I don't expect there to be much breakage because it is all
> mechanical, but rebasing is still work for you.
>
> Let us know if you have any concern so that we can coordinate this.
>
> Wei.
>
> On Wed, Feb 08, 2017 at 02:13:37PM +0100, Juergen Gross wrote:
> > 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
next prev parent reply other threads:[~2017-02-08 16:55 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
2017-02-09 1:51 ` Zhang Chen
2017-02-09 9:36 ` Wei Liu
2017-02-09 1:12 ` Haozhong Zhang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170208165454.atm62cjpby4xlnwt@citrix.com \
--to=wei.liu2@citrix.com \
--cc=haozhong.zhang@intel.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jgross@suse.com \
--cc=xen-devel@lists.xenproject.org \
--cc=yi.y.sun@linux.intel.com \
--cc=zhangchen.fnst@cn.fujitsu.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).