Browse Source

chardev: remove deprecated 'reconnect' option

It was deprecated in 9.2, time to remove.

Note, that (which become obvious with this commit) we forget to do some
checks for reconnect-ms options, for example, it was silently ignored
for listening server, instead of error-out. The commit fixes this, as
now we use reconnect_ms everywhere.

Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Reviewed-by: Daniil Tatianin <d-tatianin@yandex-team.ru>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
pull/307/head
Vladimir Sementsov-Ogievskiy 11 months ago
committed by Michael Tokarev
parent
commit
f223a90b0c
  1. 24
      chardev/char-socket.c
  2. 3
      chardev/char.c
  3. 6
      docs/about/deprecated.rst
  4. 12
      docs/about/removed-features.rst
  5. 14
      qapi/char.json

24
chardev/char-socket.c

@ -1296,9 +1296,9 @@ static bool qmp_chardev_validate_socket(ChardevSocket *sock,
/* Validate any options which have a dependency on address type */ /* Validate any options which have a dependency on address type */
switch (addr->type) { switch (addr->type) {
case SOCKET_ADDRESS_TYPE_FD: case SOCKET_ADDRESS_TYPE_FD:
if (sock->has_reconnect) { if (sock->has_reconnect_ms) {
error_setg(errp, error_setg(errp,
"'reconnect' option is incompatible with " "'reconnect-ms' option is incompatible with "
"'fd' address type"); "'fd' address type");
return false; return false;
} }
@ -1342,9 +1342,9 @@ static bool qmp_chardev_validate_socket(ChardevSocket *sock,
/* Validate any options which have a dependency on client vs server */ /* Validate any options which have a dependency on client vs server */
if (!sock->has_server || sock->server) { if (!sock->has_server || sock->server) {
if (sock->has_reconnect) { if (sock->has_reconnect_ms) {
error_setg(errp, error_setg(errp,
"'reconnect' option is incompatible with " "'reconnect-ms' option is incompatible with "
"socket in server listen mode"); "socket in server listen mode");
return false; return false;
} }
@ -1361,12 +1361,6 @@ static bool qmp_chardev_validate_socket(ChardevSocket *sock,
} }
} }
if (sock->has_reconnect_ms && sock->has_reconnect) {
error_setg(errp,
"'reconnect' and 'reconnect-ms' are mutually exclusive");
return false;
}
return true; return true;
} }
@ -1384,7 +1378,7 @@ static void qmp_chardev_open_socket(Chardev *chr,
bool is_tn3270 = sock->has_tn3270 ? sock->tn3270 : false; bool is_tn3270 = sock->has_tn3270 ? sock->tn3270 : false;
bool is_waitconnect = sock->has_wait ? sock->wait : false; bool is_waitconnect = sock->has_wait ? sock->wait : false;
bool is_websock = sock->has_websocket ? sock->websocket : false; bool is_websock = sock->has_websocket ? sock->websocket : false;
int64_t reconnect_ms = 0; int64_t reconnect_ms = sock->has_reconnect_ms ? sock->reconnect_ms : 0;
SocketAddress *addr; SocketAddress *addr;
s->is_listen = is_listen; s->is_listen = is_listen;
@ -1456,12 +1450,6 @@ static void qmp_chardev_open_socket(Chardev *chr,
return; return;
} }
} else { } else {
if (sock->has_reconnect) {
reconnect_ms = sock->reconnect * 1000ULL;
} else if (sock->has_reconnect_ms) {
reconnect_ms = sock->reconnect_ms;
}
if (qmp_chardev_open_socket_client(chr, reconnect_ms, errp) < 0) { if (qmp_chardev_open_socket_client(chr, reconnect_ms, errp) < 0) {
return; return;
} }
@ -1526,8 +1514,6 @@ static void qemu_chr_parse_socket(QemuOpts *opts, ChardevBackend *backend,
*/ */
sock->has_wait = qemu_opt_find(opts, "wait") || sock->server; sock->has_wait = qemu_opt_find(opts, "wait") || sock->server;
sock->wait = qemu_opt_get_bool(opts, "wait", true); sock->wait = qemu_opt_get_bool(opts, "wait", true);
sock->has_reconnect = qemu_opt_find(opts, "reconnect");
sock->reconnect = qemu_opt_get_number(opts, "reconnect", 0);
sock->has_reconnect_ms = qemu_opt_find(opts, "reconnect-ms"); sock->has_reconnect_ms = qemu_opt_find(opts, "reconnect-ms");
sock->reconnect_ms = qemu_opt_get_number(opts, "reconnect-ms", 0); sock->reconnect_ms = qemu_opt_get_number(opts, "reconnect-ms", 0);

3
chardev/char.c

@ -892,9 +892,6 @@ QemuOptsList qemu_chardev_opts = {
},{ },{
.name = "nodelay", .name = "nodelay",
.type = QEMU_OPT_BOOL, .type = QEMU_OPT_BOOL,
},{
.name = "reconnect",
.type = QEMU_OPT_NUMBER,
},{ },{
.name = "reconnect-ms", .name = "reconnect-ms",
.type = QEMU_OPT_NUMBER, .type = QEMU_OPT_NUMBER,

6
docs/about/deprecated.rst

@ -468,12 +468,6 @@ Backend ``memory`` (since 9.0)
``memory`` is a deprecated synonym for ``ringbuf``. ``memory`` is a deprecated synonym for ``ringbuf``.
``reconnect`` (since 9.2)
^^^^^^^^^^^^^^^^^^^^^^^^^
The ``reconnect`` option only allows specifying second granularity timeouts,
which is not enough for all types of use cases, use ``reconnect-ms`` instead.
Net device options Net device options
'''''''''''''''''' ''''''''''''''''''

12
docs/about/removed-features.rst

@ -1367,4 +1367,16 @@ The ``blacklist`` config file option has been renamed to ``block-rpcs``
(to be in sync with the renaming of the corresponding command line (to be in sync with the renaming of the corresponding command line
option). option).
Device options
--------------
Character device options
''''''''''''''''''''''''
``reconnect`` (removed in 10.2)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The ``reconnect`` has been replaced by ``reconnect-ms``, which provides
better precision.
.. _Intel discontinuance notification: https://www.intel.com/content/www/us/en/content-details/781327/intel-is-discontinuing-ip-ordering-codes-listed-in-pdn2312-for-nios-ii-ip.html .. _Intel discontinuance notification: https://www.intel.com/content/www/us/en/content-details/781327/intel-is-discontinuing-ip-ordering-codes-listed-in-pdn2312-for-nios-ii-ip.html

14
qapi/char.json

@ -269,22 +269,11 @@
# @websocket: enable websocket protocol on server sockets # @websocket: enable websocket protocol on server sockets
# (default: false) (Since: 3.1) # (default: false) (Since: 3.1)
# #
# @reconnect: For a client socket, if a socket is disconnected, then
# attempt a reconnect after the given number of seconds. Setting
# this to zero disables this function. The use of this member is
# deprecated, use @reconnect-ms instead. (default: 0) (Since: 2.2)
#
# @reconnect-ms: For a client socket, if a socket is disconnected, # @reconnect-ms: For a client socket, if a socket is disconnected,
# then attempt a reconnect after the given number of milliseconds. # then attempt a reconnect after the given number of milliseconds.
# Setting this to zero disables this function. This member is # Setting this to zero disables this function.
# mutually exclusive with @reconnect.
# (default: 0) (Since: 9.2) # (default: 0) (Since: 9.2)
# #
# Features:
#
# @deprecated: Member @reconnect is deprecated. Use @reconnect-ms
# instead.
#
# Since: 1.4 # Since: 1.4
## ##
{ 'struct': 'ChardevSocket', { 'struct': 'ChardevSocket',
@ -297,7 +286,6 @@
'*telnet': 'bool', '*telnet': 'bool',
'*tn3270': 'bool', '*tn3270': 'bool',
'*websocket': 'bool', '*websocket': 'bool',
'*reconnect': { 'type': 'int', 'features': [ 'deprecated' ] },
'*reconnect-ms': 'int' }, '*reconnect-ms': 'int' },
'base': 'ChardevCommon' } 'base': 'ChardevCommon' }

Loading…
Cancel
Save