From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 48A9C2E864 for ; Thu, 2 May 2019 13:32:57 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EnL-TcaanSTt for ; Thu, 2 May 2019 13:32:57 -0400 (EDT) Received: from smtp52.i.mail.ru (smtp52.i.mail.ru [94.100.177.112]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 0785F29AB7 for ; Thu, 2 May 2019 13:32:56 -0400 (EDT) Subject: [tarantool-patches] Re: [PATCH 0/5] swim lua preparation From: Vladislav Shpilevoy References: Message-ID: <30578439-492d-d128-5708-e1c79da26906@tarantool.org> Date: Thu, 2 May 2019 20:32:52 +0300 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: tarantool-patches@freelists.org Cc: kostja@tarantool.org The patchset is pushed into the master. Changes: "sio: return 'no host' flag from sio_uri_to_addr()" is squashed with "swim: allow to omit host in URI". In the reference patch 'status' is not affected, and an explicit flag 'is_dropped' is added. On 01/05/2019 01:31, Vladislav Shpilevoy wrote: > The patchset mainly consists of bug fixes appeared when real libev started to > work instead of the fake event loop used in the unit tests. > > Branch: http://github.com/tarantool/tarantool/tree/gerold103/gh-3234-swim-lua-preparation > Issue: https://github.com/tarantool/tarantool/issues/3234 > > Vladislav Shpilevoy (5): > swim: do not use ev_timer_start > swim: introduce member reference API > sio: return 'no host' flag from sio_uri_to_addr() > swim: allow to omit host in URI > swim: explicitly stop old ev_io input/output on rebind > > src/lib/core/sio.c | 3 +- > src/lib/core/sio.h | 2 +- > src/lib/swim/swim.c | 69 +++++++++++++++++++++++------------ > src/lib/swim/swim.h | 24 ++++++++---- > src/lib/swim/swim_constants.h | 5 +++ > src/lib/swim/swim_ev.c | 6 +++ > src/lib/swim/swim_ev.h | 3 ++ > src/lib/swim/swim_io.c | 19 ++++++---- > src/lib/swim/swim_proto.c | 2 +- > test/unit/sio.c | 29 ++++++++++----- > test/unit/sio.result | 32 +++++++++------- > test/unit/swim.c | 13 ++++++- > test/unit/swim.result | 3 +- > test/unit/swim_test_ev.c | 11 ++++++ > 14 files changed, 154 insertions(+), 67 deletions(-) > > -- > 2.20.1 (Apple Git-117) > >