All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/5] bootdevice patches
@ 2014-12-16  9:22 arei.gonglei
  2014-12-16  9:22 ` [Qemu-devel] [PULL 1/5] bootdevice: move code about bootorder from vl.c to bootdevice.c arei.gonglei
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: arei.gonglei @ 2014-12-16  9:22 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

From: root <root@ceth6.(none)>

This is my first pull request as a submaintainer. Those patches just
move boot order related code to bootdevice.c and add a Error **errp
argument for corresponding functions so that it can propagate error messages
to the caller. Please pull.

Regards,
-Gonglei

The following changes since commit 54600752a1dd67844c2cf3c467db562c39499838:

  Merge remote-tracking branch 'remotes/rth/tags/x86-next-20141214' into staging (2014-12-15 11:11:52 +0000)

are available in the git repository at:


  https://github.com/gongleiarei/qemu.git tags/bootdevice-next-20141216

for you to fetch changes up to 8bcee1828dd00c03cea03a4fa53e48b58dca49af:

  bootdevice: add Error **errp argument for QEMUBootSetHandler (2014-12-16 16:52:39 +0800)

----------------------------------------------------------------
bootdevice: refactor and improvement

----------------------------------------------------------------

Gonglei (5):
  bootdevice: move code about bootorder from vl.c to bootdevice.c
  bootdevice: add Error **errp argument for validate_bootdevices()
  bootdevice: add Error **errp argument for qemu_boot_set()
  bootdevice: add validate check for qemu_boot_set()
  bootdevice: add Error **errp argument for QEMUBootSetHandler

 bootdevice.c            |   73 ++++++++++++++++++++++++++++++++++++++++++++
 hw/i386/pc.c            |   21 ++++++-------
 hw/ppc/mac_newworld.c   |    4 +--
 hw/ppc/mac_oldworld.c   |    5 ++-
 hw/sparc/sun4m.c        |    4 +--
 hw/sparc64/sun4u.c      |    4 +--
 include/hw/hw.h         |    6 ----
 include/sysemu/sysemu.h |    7 +++++
 monitor.c               |   14 ++++-----
 vl.c                    |   77 ++++++++---------------------------------------
 10 files changed, 116 insertions(+), 99 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL 0/5] bootdevice patches
@ 2014-12-16 10:12 arei.gonglei
  2014-12-16 10:12 ` [Qemu-devel] [PULL 5/5] bootdevice: add Error **errp argument for QEMUBootSetHandler arei.gonglei
  0 siblings, 1 reply; 14+ messages in thread
From: arei.gonglei @ 2014-12-16 10:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, Gonglei

From: Gonglei <arei.gonglei@huawei.com>

This is my first pull request as a submaintainer. Those patches just
move boot order related code to bootdevice.c and add a Error **errp
argument for corresponding functions so that it can propagate error messages
to the caller. Please pull.

Regards,
-Gonglei

The following changes since commit 54600752a1dd67844c2cf3c467db562c39499838:

  Merge remote-tracking branch 'remotes/rth/tags/x86-next-20141214' into staging (2014-12-15 11:11:52 +0000)

are available in the git repository at:


  https://github.com/gongleiarei/qemu.git tags/bootdevice-next-20141216

for you to fetch changes up to 8bcee1828dd00c03cea03a4fa53e48b58dca49af:

  bootdevice: add Error **errp argument for QEMUBootSetHandler (2014-12-16 16:52:39 +0800)

----------------------------------------------------------------
bootdevice: refactor and improvement

----------------------------------------------------------------

Gonglei (5):
  bootdevice: move code about bootorder from vl.c to bootdevice.c
  bootdevice: add Error **errp argument for validate_bootdevices()
  bootdevice: add Error **errp argument for qemu_boot_set()
  bootdevice: add validate check for qemu_boot_set()
  bootdevice: add Error **errp argument for QEMUBootSetHandler

 bootdevice.c            |   73 ++++++++++++++++++++++++++++++++++++++++++++
 hw/i386/pc.c            |   21 ++++++-------
 hw/ppc/mac_newworld.c   |    4 +--
 hw/ppc/mac_oldworld.c   |    5 ++-
 hw/sparc/sun4m.c        |    4 +--
 hw/sparc64/sun4u.c      |    4 +--
 include/hw/hw.h         |    6 ----
 include/sysemu/sysemu.h |    7 +++++
 monitor.c               |   14 ++++-----
 vl.c                    |   77 ++++++++---------------------------------------
 10 files changed, 116 insertions(+), 99 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PULL 0/5] bootdevice: Refactor and improvement
@ 2014-12-22  8:56 arei.gonglei
  2014-12-22  8:56 ` [Qemu-devel] [PULL 5/5] bootdevice: add Error **errp argument for QEMUBootSetHandler arei.gonglei
  0 siblings, 1 reply; 14+ messages in thread
From: arei.gonglei @ 2014-12-22  8:56 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, Gonglei

From: Gonglei <arei.gonglei@huawei.com>

Hi, Peter

Those patches just move boot order related code to bootdevice.c
and add a Error **errp argument for corresponding functions so
that it can propagate error messages to the caller.

After a new round review, this is the secondly pull request.

Please pull, thanks
-Gonglei

The following changes since commit 328b3b6c44c17d94df115ed1851f54a0bd59a471:

  Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging (2014-12-20 22:04:13 +0000)

are available in the git repository at:


  https://github.com/gongleiarei/qemu.git tags/bootdevice-next-20141222

for you to fetch changes up to ddcd55316fb2851e144e719171621ad2816487dc:

  bootdevice: add Error **errp argument for QEMUBootSetHandler (2014-12-22 14:39:21 +0800)

----------------------------------------------------------------
bootdevice: Refactor and improvement

----------------------------------------------------------------

Gonglei (5):
  bootdevice: move code about bootorder from vl.c to bootdevice.c
  bootdevice: add Error **errp argument for validate_bootdevices()
  bootdevice: add Error **errp argument for qemu_boot_set()
  bootdevice: add validate check for qemu_boot_set()
  bootdevice: add Error **errp argument for QEMUBootSetHandler

 bootdevice.c            |   73 +++++++++++++++++++++++++++++++++++++++++++++
 hw/i386/pc.c            |   22 +++++++-------
 hw/ppc/mac_newworld.c   |    4 +--
 hw/ppc/mac_oldworld.c   |    5 ++--
 hw/sparc/sun4m.c        |    4 +--
 hw/sparc64/sun4u.c      |    4 +--
 include/hw/hw.h         |    6 ----
 include/sysemu/sysemu.h |    8 +++++
 monitor.c               |   14 ++++-----
 vl.c                    |   75 +++++++----------------------------------------
 10 files changed, 118 insertions(+), 97 deletions(-)

-- 
1.7.9.5

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

end of thread, other threads:[~2014-12-22  8:57 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-16  9:22 [Qemu-devel] [PULL 0/5] bootdevice patches arei.gonglei
2014-12-16  9:22 ` [Qemu-devel] [PULL 1/5] bootdevice: move code about bootorder from vl.c to bootdevice.c arei.gonglei
2014-12-16  9:22 ` [Qemu-devel] [PULL 2/5] bootdevice: add Error **errp argument for validate_bootdevices() arei.gonglei
2014-12-16  9:22 ` [Qemu-devel] [PULL 3/5] bootdevice: add Error **errp argument for qemu_boot_set() arei.gonglei
2014-12-16  9:22 ` [Qemu-devel] [PULL 4/5] bootdevice: add validate check " arei.gonglei
2014-12-16  9:22 ` [Qemu-devel] [PULL 5/5] bootdevice: add Error **errp argument for QEMUBootSetHandler arei.gonglei
2014-12-16 12:42   ` Peter Maydell
2014-12-16 13:04     ` Gonglei
2014-12-16 13:23       ` Peter Maydell
2014-12-17  3:16         ` Gonglei
2014-12-16 14:01 ` [Qemu-devel] [PULL 0/5] bootdevice patches Peter Maydell
2014-12-17  3:27   ` Gonglei
  -- strict thread matches above, loose matches on Subject: below --
2014-12-16 10:12 arei.gonglei
2014-12-16 10:12 ` [Qemu-devel] [PULL 5/5] bootdevice: add Error **errp argument for QEMUBootSetHandler arei.gonglei
2014-12-22  8:56 [Qemu-devel] [PULL 0/5] bootdevice: Refactor and improvement arei.gonglei
2014-12-22  8:56 ` [Qemu-devel] [PULL 5/5] bootdevice: add Error **errp argument for QEMUBootSetHandler arei.gonglei

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.