From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Mon, 13 Aug 2018 11:20:44 +0300 From: Vladimir Davydov Subject: Re: [PATCH 2/8] box: rename process_rw to process_dml Message-ID: <20180813082044.my6iydxsfzrp45o6@esperanza> References: <92068d7f9e7fe5f5c912d7899e1c68707479fadf.1533679264.git.v.shpilevoy@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <92068d7f9e7fe5f5c912d7899e1c68707479fadf.1533679264.git.v.shpilevoy@tarantool.org> To: Vladislav Shpilevoy Cc: tarantool-patches@freelists.org List-ID: On Wed, Aug 08, 2018 at 01:03:45AM +0300, Vladislav Shpilevoy wrote: > diff --git a/src/box/iproto.cc b/src/box/iproto.cc > index bb7d2b868..f8b419c26 100644 > --- a/src/box/iproto.cc > +++ b/src/box/iproto.cc > @@ -1368,7 +1368,7 @@ tx_process1(struct cmsg *m) > struct obuf_svp svp; > struct obuf *out; > tx_inject_delay(); > - if (box_process1(&msg->dml, &tuple) != 0) > + if (box_process_dml(&msg->dml, &tuple) != 0) > goto error; > out = msg->connection->tx.p_obuf; > if (iproto_prepare_select(out, &svp) != 0) Now tx_process1 calls not box_process1, as it used to, but box_process_dml. IMO this doesn't look any better than what we presently have.