[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 1/9] net: Introduce announce timer
From: |
Eric Blake |
Subject: |
Re: [Qemu-devel] [PATCH 1/9] net: Introduce announce timer |
Date: |
Mon, 28 Jan 2019 11:42:07 -0600 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 |
On 1/28/19 11:03 AM, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <address@hidden>
>
> The 'announce timer' will be used by migration, and explicit
> requests for qemu to perform network announces.
>
> Based on the work by Germano Veit Michel <address@hidden>
> and Vlad Yasevich <address@hidden>
>
> Signed-off-by: Dr. David Alan Gilbert <address@hidden>
> ---
> +++ b/qapi/net.json
> @@ -684,3 +684,26 @@
> ##
> { 'event': 'NIC_RX_FILTER_CHANGED',
> 'data': { '*name': 'str', 'path': 'str' } }
> +
> +##
> +# @AnnounceParameters:
> +#
> +# Parameters for self-announce timers
> +#
> +# @initial: Initial delay (in ms) before sending the first GARP/RARP
> +# announcement
> +#
> +# @max: Maximum delay (in ms) to between GARP/RARP announcement packets
"to between" should be either "to use in between" or merely "between"
> +#
> +# @rounds: Number of self-announcement attempts
> +#
> +# @step: Delay increase (in ms) after each self-announcement attempt
> +#
> +# Since: 4.0
> +##
> +
> +{ 'struct': 'AnnounceParameters',
> + 'data': { 'initial': 'int',
> + 'max': 'int',
> + 'rounds': 'int',
> + 'step': 'int' } }
>
Can/should any of the parameters be optional with a sane (documented)
default?
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3226
Virtualization: qemu.org | libvirt.org
signature.asc
Description: OpenPGP digital signature
- [Qemu-devel] [PATCH 0/9] Network announce changes, Dr. David Alan Gilbert (git), 2019/01/28
- [Qemu-devel] [PATCH 1/9] net: Introduce announce timer, Dr. David Alan Gilbert (git), 2019/01/28
- Re: [Qemu-devel] [PATCH 1/9] net: Introduce announce timer,
Eric Blake <=
- [Qemu-devel] [PATCH 3/9] virtio-net: Switch to using announce timer, Dr. David Alan Gilbert (git), 2019/01/28
- [Qemu-devel] [PATCH 4/9] migration: Switch to using announce timer, Dr. David Alan Gilbert (git), 2019/01/28
- [Qemu-devel] [PATCH 2/9] migration: Add announce parameters, Dr. David Alan Gilbert (git), 2019/01/28
- [Qemu-devel] [PATCH 5/9] net: Add a network device specific self-announcement ability, Dr. David Alan Gilbert (git), 2019/01/28
- [Qemu-devel] [PATCH 7/9] qmp: Add announce-self command, Dr. David Alan Gilbert (git), 2019/01/28