Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752445AbdFMGGf (ORCPT ); Tue, 13 Jun 2017 02:06:35 -0400 Received: from mx2.suse.de ([195.135.220.15]:55543 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752191AbdFMGGe (ORCPT ); Tue, 13 Jun 2017 02:06:34 -0400 Subject: Re: [PATCH v3 07/18] xen/pvcalls: implement socket command To: Stefano Stabellini , xen-devel@lists.xen.org Cc: linux-kernel@vger.kernel.org, boris.ostrovsky@oracle.com, Stefano Stabellini References: <1496431915-20774-1-git-send-email-sstabellini@kernel.org> <1496431915-20774-7-git-send-email-sstabellini@kernel.org> From: Juergen Gross Message-ID: Date: Tue, 13 Jun 2017 08:06:31 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <1496431915-20774-7-git-send-email-sstabellini@kernel.org> Content-Type: text/plain; charset=utf-8 Content-Language: de-DE Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2003 Lines: 69 On 02/06/17 21:31, Stefano Stabellini wrote: > Just reply with success to the other end for now. Delay the allocation > of the actual socket to bind and/or connect. > > Signed-off-by: Stefano Stabellini > CC: boris.ostrovsky@oracle.com > CC: jgross@suse.com > --- > drivers/xen/pvcalls-back.c | 29 ++++++++++++++++++++++++++++- > 1 file changed, 28 insertions(+), 1 deletion(-) > > diff --git a/drivers/xen/pvcalls-back.c b/drivers/xen/pvcalls-back.c > index 6057533..1f2bb26 100644 > --- a/drivers/xen/pvcalls-back.c > +++ b/drivers/xen/pvcalls-back.c > @@ -12,12 +12,17 @@ > * GNU General Public License for more details. > */ > > +#include > #include > #include > #include > #include > #include > #include > +#include > +#include > +#include > +#include > > #include > #include > @@ -54,7 +59,29 @@ struct pvcalls_fedata { > static int pvcalls_back_socket(struct xenbus_device *dev, > struct xen_pvcalls_request *req) > { > - return 0; > + struct pvcalls_fedata *priv; > + int ret; > + struct xen_pvcalls_response *rsp; > + > + priv = dev_get_drvdata(&dev->dev); > + > + if (req->u.socket.domain != AF_INET || > + req->u.socket.type != SOCK_STREAM || > + (req->u.socket.protocol != IPPROTO_IP && > + req->u.socket.protocol != AF_INET)) > + ret = -EAFNOSUPPORT; > + else > + ret = 0; > + > + /* leave the actual socket allocation for later */ > + > + rsp = RING_GET_RESPONSE(&priv->ring, priv->ring.rsp_prod_pvt++); > + rsp->req_id = req->req_id; > + rsp->cmd = req->cmd; > + rsp->u.socket.id = req->u.socket.id; > + rsp->ret = ret; > + > + return ret; So if ret != 0 this will omit the call of RING_PUSH_RESPONSES_AND_CHECK_NOTIFY() in pvcalls_back_work(). I think you want to return 0. Juergen