From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B54E2A034F; Mon, 7 Feb 2022 11:21:59 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4B8A1410F3; Mon, 7 Feb 2022 11:21:59 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 46C76410EA for ; Mon, 7 Feb 2022 11:21:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1644229317; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pRTMjjd9FikJXQ3k4kVzTidYwx4QT5Vw/zAGGmPKy9Y=; b=BqUmhVoquhoNr/LZoPdNLOrm3DlBlpAlCOnaEI1ytNFRVY8JAqJbg9bBzLoTBp0w3V+sSV lARkKRhEm9yfXLLcP3391CjGFwBkpa9Tx+TH9GhnMkX8xHYQfO7yMKnGnkr+qWItiS3BGR Hiigu6O48FOZw0fqB8FoPaqnRdjoZX8= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-529-_3Biqei5MPG6INv8HvoXRw-1; Mon, 07 Feb 2022 05:21:54 -0500 X-MC-Unique: _3Biqei5MPG6INv8HvoXRw-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 720AB10AF204; Mon, 7 Feb 2022 10:21:53 +0000 (UTC) Received: from localhost.localdomain (unknown [10.39.208.12]) by smtp.corp.redhat.com (Postfix) with ESMTP id 19DD4105C74E; Mon, 7 Feb 2022 10:21:51 +0000 (UTC) From: Christophe Fontaine To: maxime.coquelin@redhat.com, chenbo.xia@intel.com Cc: dev@dpdk.org, Christophe Fontaine Subject: [PATCH v2 0/1] Removes FDs from VhostUserMessage structure Date: Mon, 7 Feb 2022 11:21:28 +0100 Message-Id: <20220207102129.59170-1-cfontain@redhat.com> In-Reply-To: <20220123115927.76130-2-cfontain@redhat.com> References: <20220123115927.76130-2-cfontain@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=cfontain@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This patch removes the file descriptors from the struct VhostUserMessage as it is not part of the spec. These FDs are moved to a englobing context structure. v2: rebased on top of dpdk-next-virtio Christophe Fontaine (1): vhost: move fds outside of VhostUserMessage drivers/net/virtio/virtio_user/vhost_user.c | 1 - lib/vhost/vhost_crypto.c | 10 +- lib/vhost/vhost_user.c | 534 ++++++++++---------- lib/vhost/vhost_user.h | 7 +- 4 files changed, 290 insertions(+), 262 deletions(-) -- 2.34.1