qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2] util: remove the obsolete non-blocking conne


From: Fam Zheng
Subject: Re: [Qemu-devel] [PATCH v2] util: remove the obsolete non-blocking connect
Date: Fri, 16 Jun 2017 15:56:27 +0800
User-agent: Mutt/1.8.0 (2017-02-23)

On Fri, 06/16 15:31, Mao Zhongyi wrote:
> From: Cao jin <address@hidden>
> 
> The non-blocking connect mechanism is obsolete, and it doesn't
> work well in inet connection, because it will call getaddrinfo
> first and getaddrinfo will blocks on DNS lookups. Since commit
> e65c67e4 & d984464e, the non-blocking connect of migration goes
> through QIOChannel in a different manner(using a thread), and
> nobody use this old non-blocking connect anymore.
> 
> Any newly written code which needs a non-blocking connect should
> use the QIOChannel code, so we can drop NonBlockingConnectHandler
> as a concept entirely.
> 
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Cc: address@hidden
> Suggested-by: Daniel P. Berrange <address@hidden>
> Signed-off-by: Cao jin <address@hidden>
> Signed-off-by: Mao Zhongyi <address@hidden>
> Reviewed-by: Juan Quintela <address@hidden>
> Reviewed-by: Daniel P. Berrange <address@hidden>
> ---
> v2:
> 1. block/ssh.c is not compiled in v1 which leads to no error 
>    reported when I run make & make check, although I make a 
>       mistake in block/ssh.c, because the package libssh2-devel 
>       missed in my system. Now fixed it.
> 2. Write the prototype in a single line. [Juan Quintela]
> 
> Because it's a minor change, so still add the r-b.
> 
> v1:
> This patch was reviewed by Daniel about a years ago, but it has never
> been merged just since socket_connect() called by net_socket_connect_init()
> where NonBlockingConnectHandler was passed to socket_connect(). it's broken.
> 
> Now this problem was worked around by Daniel's patch(commit 6701e551 'Revert
> "Change net/socket.c to use socket_*() functions" again'). Therefore, resend
> it, of course, part of related code has changed over the years, so changed
> the patch accordingly.
> 
> The reviewed patch listed on:
> https://lists.gnu.org/archive/html/qemu-devel/2016-07/msg06373.html
> 
>  --help                 |   0
>  block/sheepdog.c       |   2 +-
>  block/ssh.c            |   2 +-
>  include/qemu/sockets.h |  12 +--
>  io/channel-socket.c    |   2 +-
>  util/qemu-sockets.c    | 205 
> ++++++-------------------------------------------
>  6 files changed, 28 insertions(+), 195 deletions(-)
>  create mode 100644 --help
> 
> diff --git a/--help b/--help
> new file mode 100644
> index 0000000..e69de29

NACK, I believe you added a new file '--help' by mistake.

Fam



reply via email to

[Prev in Thread] Current Thread [Next in Thread]