Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752015AbdFTQNs (ORCPT ); Tue, 20 Jun 2017 12:13:48 -0400 Received: from smtp.eu.citrix.com ([185.25.65.24]:32943 "EHLO SMTP.EU.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750993AbdFTQNq (ORCPT ); Tue, 20 Jun 2017 12:13:46 -0400 X-IronPort-AV: E=Sophos;i="5.39,364,1493683200"; d="scan'208";a="48108612" Date: Tue, 20 Jun 2017 17:11:12 +0100 From: Roger Pau =?iso-8859-1?Q?Monn=E9?= To: Stefano Stabellini CC: , , Stefano Stabellini , , Subject: Re: [Xen-devel] [PATCH v4 07/18] xen/pvcalls: implement socket command Message-ID: <20170620161112.7x4qickboyt7qyvh@dhcp-3-128.uk.xensource.com> References: <1497553787-3709-1-git-send-email-sstabellini@kernel.org> <1497553787-3709-7-git-send-email-sstabellini@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <1497553787-3709-7-git-send-email-sstabellini@kernel.org> User-Agent: NeoMutt/20170609 (1.8.3) X-ClientProxiedBy: AMSPEX02CAS01.citrite.net (10.69.22.112) To AMSPEX02CL02.citrite.net (10.69.22.126) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1871 Lines: 56 On Thu, Jun 15, 2017 at 12:09:36PM -0700, 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 | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > > diff --git a/drivers/xen/pvcalls-back.c b/drivers/xen/pvcalls-back.c > index 437c2ad..953458b 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,6 +59,28 @@ struct pvcalls_fedata { > static int pvcalls_back_socket(struct xenbus_device *dev, > struct xen_pvcalls_request *req) > { > + struct pvcalls_fedata *fedata; > + int ret; > + struct xen_pvcalls_response *rsp; > + > + fedata = 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; Sorry for jumping into this out of the blue, but shouldn't all the constants used above be part of the protocol? AF_INET/SOCK_STREAM/... are all part of POSIX, but their specific value is not defined in the standard, hence we should have XEN_AF_INET/XEN_SOCK_STREAM/... Or am I just missing something? Roger.