[PULL V2 00/13] Net patches

Jason Wang posted 13 patches 2 years, 2 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220112083220.51806-1-jasowang@redhat.com
Maintainers: Markus Armbruster <armbru@redhat.com>, Eric Blake <eblake@redhat.com>, Zhang Chen <chen.zhang@intel.com>, Jason Wang <jasowang@redhat.com>, Li Zhijian <lizhijian@fujitsu.com>
There is a newer version of this series
MAINTAINERS                   |   5 +
hw/net/vmxnet3.c              |   4 +-
meson.build                   |  16 +-
meson_options.txt             |   2 +
net/clients.h                 |  11 ++
net/colo-compare.c            |  28 ++--
net/filter-mirror.c           |  66 +++++++--
net/meson.build               |   7 +
net/net.c                     |  10 ++
net/tap-linux.c               |   1 +
net/tap.c                     |   1 +
net/vmnet-bridged.m           | 111 ++++++++++++++
net/vmnet-common.m            | 330 ++++++++++++++++++++++++++++++++++++++++++
net/vmnet-host.c              | 105 ++++++++++++++
net/vmnet-shared.c            |  91 ++++++++++++
net/vmnet_int.h               |  48 ++++++
qapi/net.json                 | 132 ++++++++++++++++-
qemu-options.hx               |  25 ++++
scripts/meson-buildoptions.sh |   3 +
19 files changed, 965 insertions(+), 31 deletions(-)
create mode 100644 net/vmnet-bridged.m
create mode 100644 net/vmnet-common.m
create mode 100644 net/vmnet-host.c
create mode 100644 net/vmnet-shared.c
create mode 100644 net/vmnet_int.h
[PULL V2 00/13] Net patches
Posted by Jason Wang 2 years, 2 months ago
The following changes since commit 64c01c7da449bcafc614b27ecf1325bb08031c84:

  Merge remote-tracking branch 'remotes/philmd/tags/sdmmc-20220108' into staging (2022-01-11 11:39:31 +0000)

are available in the git repository at:

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

for you to fetch changes up to 99420f216cf5cd2e5c09e0d491b9e44d16030aba:

  net/vmnet: update MAINTAINERS list (2022-01-12 16:27:19 +0800)

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

----------------------------------------------------------------
Peter Foley (2):
      net/tap: Set return code on failure
      net: Fix uninitialized data usage

Philippe Mathieu-Daudé (1):
      hw/net/vmxnet3: Log guest-triggerable errors using LOG_GUEST_ERROR

Rao Lei (1):
      net/filter: Optimize filter_send to coroutine

Vladislav Yaroshchuk (7):
      net/vmnet: add vmnet dependency and customizable option
      net/vmnet: add vmnet backends to qapi/net
      net/vmnet: implement shared mode (vmnet-shared)
      net/vmnet: implement host mode (vmnet-host)
      net/vmnet: implement bridged mode (vmnet-bridged)
      net/vmnet: update qemu-options.hx
      net/vmnet: update MAINTAINERS list

Zhang Chen (2):
      net/colo-compare.c: Optimize compare order for performance
      net/colo-compare.c: Update the default value comments

 MAINTAINERS                   |   5 +
 hw/net/vmxnet3.c              |   4 +-
 meson.build                   |  16 +-
 meson_options.txt             |   2 +
 net/clients.h                 |  11 ++
 net/colo-compare.c            |  28 ++--
 net/filter-mirror.c           |  66 +++++++--
 net/meson.build               |   7 +
 net/net.c                     |  10 ++
 net/tap-linux.c               |   1 +
 net/tap.c                     |   1 +
 net/vmnet-bridged.m           | 111 ++++++++++++++
 net/vmnet-common.m            | 330 ++++++++++++++++++++++++++++++++++++++++++
 net/vmnet-host.c              | 105 ++++++++++++++
 net/vmnet-shared.c            |  91 ++++++++++++
 net/vmnet_int.h               |  48 ++++++
 qapi/net.json                 | 132 ++++++++++++++++-
 qemu-options.hx               |  25 ++++
 scripts/meson-buildoptions.sh |   3 +
 19 files changed, 965 insertions(+), 31 deletions(-)
 create mode 100644 net/vmnet-bridged.m
 create mode 100644 net/vmnet-common.m
 create mode 100644 net/vmnet-host.c
 create mode 100644 net/vmnet-shared.c
 create mode 100644 net/vmnet_int.h


Re: [PULL V2 00/13] Net patches
Posted by Peter Maydell 2 years, 2 months ago
On Wed, 12 Jan 2022 at 08:32, Jason Wang <jasowang@redhat.com> wrote:
>
> The following changes since commit 64c01c7da449bcafc614b27ecf1325bb08031c84:
>
>   Merge remote-tracking branch 'remotes/philmd/tags/sdmmc-20220108' into staging (2022-01-11 11:39:31 +0000)
>
> are available in the git repository at:
>
>   https://github.com/jasowang/qemu.git tags/net-pull-request
>
> for you to fetch changes up to 99420f216cf5cd2e5c09e0d491b9e44d16030aba:
>
>   net/vmnet: update MAINTAINERS list (2022-01-12 16:27:19 +0800)
>
> ----------------------------------------------------------------
>

Let me know if you want me to apply this or if you're going to update
it with Vladislav's v11 vmnet series.


thanks
-- PMM

Re: [PULL V2 00/13] Net patches
Posted by Philippe Mathieu-Daudé via 2 years, 2 months ago
On 13/1/22 15:00, Peter Maydell wrote:
> On Wed, 12 Jan 2022 at 08:32, Jason Wang <jasowang@redhat.com> wrote:
>>
>> The following changes since commit 64c01c7da449bcafc614b27ecf1325bb08031c84:
>>
>>    Merge remote-tracking branch 'remotes/philmd/tags/sdmmc-20220108' into staging (2022-01-11 11:39:31 +0000)
>>
>> are available in the git repository at:
>>
>>    https://github.com/jasowang/qemu.git tags/net-pull-request
>>
>> for you to fetch changes up to 99420f216cf5cd2e5c09e0d491b9e44d16030aba:
>>
>>    net/vmnet: update MAINTAINERS list (2022-01-12 16:27:19 +0800)
>>
>> ----------------------------------------------------------------
>>
> 
> Let me know if you want me to apply this or if you're going to update
> it with Vladislav's v11 vmnet series.

Note, there is also a v12.

Re: [PULL V2 00/13] Net patches
Posted by Jason Wang 2 years, 2 months ago
On Thu, Jan 13, 2022 at 11:36 PM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> On 13/1/22 15:00, Peter Maydell wrote:
> > On Wed, 12 Jan 2022 at 08:32, Jason Wang <jasowang@redhat.com> wrote:
> >>
> >> The following changes since commit 64c01c7da449bcafc614b27ecf1325bb08031c84:
> >>
> >>    Merge remote-tracking branch 'remotes/philmd/tags/sdmmc-20220108' into staging (2022-01-11 11:39:31 +0000)
> >>
> >> are available in the git repository at:
> >>
> >>    https://github.com/jasowang/qemu.git tags/net-pull-request
> >>
> >> for you to fetch changes up to 99420f216cf5cd2e5c09e0d491b9e44d16030aba:
> >>
> >>    net/vmnet: update MAINTAINERS list (2022-01-12 16:27:19 +0800)
> >>
> >> ----------------------------------------------------------------
> >>
> >
> > Let me know if you want me to apply this or if you're going to update
> > it with Vladislav's v11 vmnet series.
>
> Note, there is also a v12.
>

Will send a new pull request soon (and there's a v13).

Thanks