[PULL V2 0/4] Net patches

Jason Wang posted 4 patches 4 years, 5 months ago
Test docker-quick@centos7 passed
Test asan passed
Test checkpatch passed
Test FreeBSD passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1572316661-20043-1-git-send-email-jasowang@redhat.com
Maintainers: Li Zhijian <lizhijian@cn.fujitsu.com>, Jason Wang <jasowang@redhat.com>, Zhang Chen <chen.zhang@intel.com>, Sven Schnelle <svens@stackframe.org>, "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
There is a newer version of this series
MAINTAINERS                    |    6 +
hw/net/Kconfig                 |    5 +
hw/net/Makefile.objs           |    1 +
hw/net/trace-events            |   14 +
hw/net/tulip.c                 | 1029 ++++++++++++++++++++++++++++++++++++++++
hw/net/tulip.h                 |  267 +++++++++++
hw/net/virtio-net.c            |   27 +-
hw/virtio/virtio.c             |    7 +
include/hw/pci/pci_ids.h       |    1 +
include/hw/virtio/virtio-net.h |    2 +
include/hw/virtio/virtio.h     |    6 +
net/colo-compare.c             |    6 +-
12 files changed, 1365 insertions(+), 6 deletions(-)
create mode 100644 hw/net/tulip.c
create mode 100644 hw/net/tulip.h
[PULL V2 0/4] Net patches
Posted by Jason Wang 4 years, 5 months ago
The following changes since commit 187f35512106501fe9a11057f4d8705431e0026d:

  Merge remote-tracking branch 'remotes/stsquad/tags/pull-testing-next-251019-3' into staging (2019-10-26 10:13:48 +0100)

are available in the git repository at:

  https://github.com/jasowang/qemu.git tags/net-pull-request

for you to fetch changes up to 1e907a32b77e5d418538453df5945242e43224fa:

  COLO-compare: Fix incorrect `if` logic (2019-10-29 10:28:07 +0800)

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

Changes from V1:

- Fix compling issue

----------------------------------------------------------------
Fan Yang (1):
      COLO-compare: Fix incorrect `if` logic

Michael S. Tsirkin (1):
      virtio: new post_load hook

Mikhail Sennikovsky (1):
      virtio-net: prevent offloads reset on migration

Sven Schnelle (1):
      net: add tulip (dec21143) driver

 MAINTAINERS                    |    6 +
 hw/net/Kconfig                 |    5 +
 hw/net/Makefile.objs           |    1 +
 hw/net/trace-events            |   14 +
 hw/net/tulip.c                 | 1029 ++++++++++++++++++++++++++++++++++++++++
 hw/net/tulip.h                 |  267 +++++++++++
 hw/net/virtio-net.c            |   27 +-
 hw/virtio/virtio.c             |    7 +
 include/hw/pci/pci_ids.h       |    1 +
 include/hw/virtio/virtio-net.h |    2 +
 include/hw/virtio/virtio.h     |    6 +
 net/colo-compare.c             |    6 +-
 12 files changed, 1365 insertions(+), 6 deletions(-)
 create mode 100644 hw/net/tulip.c
 create mode 100644 hw/net/tulip.h



Re: [PULL V2 0/4] Net patches
Posted by Peter Maydell 4 years, 5 months ago
On Tue, 29 Oct 2019 at 02:37, Jason Wang <jasowang@redhat.com> wrote:
>
> The following changes since commit 187f35512106501fe9a11057f4d8705431e0026d:
>
>   Merge remote-tracking branch 'remotes/stsquad/tags/pull-testing-next-251019-3' into staging (2019-10-26 10:13:48 +0100)
>
> are available in the git repository at:
>
>   https://github.com/jasowang/qemu.git tags/net-pull-request
>
> for you to fetch changes up to 1e907a32b77e5d418538453df5945242e43224fa:
>
>   COLO-compare: Fix incorrect `if` logic (2019-10-29 10:28:07 +0800)
>
> ----------------------------------------------------------------
>
> Changes from V1:
>
> - Fix compling issue
>
> ----------------------------------------------------------------

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.2
for any user-visible changes.

-- PMM