mbox

[PULL,0/6] fw_cfg: doc updates, various optimizations.

Message ID 1450342910-26827-1-git-send-email-kraxel@redhat.com
State New
Headers show

Pull-request

git://git.kraxel.org/qemu tags/pull-fw-cfg-20151217-1

Message

Gerd Hoffmann Dec. 17, 2015, 9:01 a.m. UTC
Hi,

Here comes a fw_cfg update with a doc update and various optimizations
from Gabriel L. Somlo.  Read callback is called only once (on select),
also sanity checks for multibyte reads are done only once.

please pull,
  Gerd

The following changes since commit f05b42d3fd30bb9673cc1ac1ee8c2af8f669964e:

  Update version for v2.5.0-rc4 release (2015-12-11 16:37:55 +0000)

are available in the git repository at:

  git://git.kraxel.org/qemu tags/pull-fw-cfg-20151217-1

for you to fetch changes up to 6c8d56a2e95712a6206a2671d2b04b2e59cabc0b:

  fw_cfg: replace ioport data read with generic method (2015-12-15 11:46:13 +0100)

----------------------------------------------------------------
fw_cfg: doc updates, various optimizations.

----------------------------------------------------------------
Gabriel L. Somlo (6):
      fw_cfg: move internal function call docs to header file
      fw_cfg: amend callback behavior spec to once per select
      fw_cfg: remove offset argument from callback prototype
      fw_cfg: avoid calculating invalid current entry pointer
      fw_cfg: add generic non-DMA read method
      fw_cfg: replace ioport data read with generic method

 docs/specs/fw_cfg.txt     |  85 +-----------------------------
 hw/arm/virt-acpi-build.c  |   2 +-
 hw/i386/acpi-build.c      |   2 +-
 hw/nvram/fw_cfg.c         |  75 +++++++++++++--------------
 include/hw/nvram/fw_cfg.h | 128 +++++++++++++++++++++++++++++++++++++++++++++-
 trace-events              |   2 +-
 6 files changed, 166 insertions(+), 128 deletions(-)

Comments

Peter Maydell Dec. 17, 2015, 1:30 p.m. UTC | #1
On 17 December 2015 at 09:01, Gerd Hoffmann <kraxel@redhat.com> wrote:
>   Hi,
>
> Here comes a fw_cfg update with a doc update and various optimizations
> from Gabriel L. Somlo.  Read callback is called only once (on select),
> also sanity checks for multibyte reads are done only once.
>
> please pull,
>   Gerd
>
> The following changes since commit f05b42d3fd30bb9673cc1ac1ee8c2af8f669964e:
>
>   Update version for v2.5.0-rc4 release (2015-12-11 16:37:55 +0000)
>
> are available in the git repository at:
>
>   git://git.kraxel.org/qemu tags/pull-fw-cfg-20151217-1
>
> for you to fetch changes up to 6c8d56a2e95712a6206a2671d2b04b2e59cabc0b:
>
>   fw_cfg: replace ioport data read with generic method (2015-12-15 11:46:13 +0100)
>
> ----------------------------------------------------------------
> fw_cfg: doc updates, various optimizations.
>
> ----------------------------------------------------------------
> Gabriel L. Somlo (6):
>       fw_cfg: move internal function call docs to header file
>       fw_cfg: amend callback behavior spec to once per select
>       fw_cfg: remove offset argument from callback prototype
>       fw_cfg: avoid calculating invalid current entry pointer
>       fw_cfg: add generic non-DMA read method
>       fw_cfg: replace ioport data read with generic method

Applied, thanks.

-- PMM