From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by dpdk.org (Postfix) with ESMTP id E4926ADC7 for ; Tue, 24 Feb 2015 01:42:02 +0100 (CET) Received: by mail-wi0-f182.google.com with SMTP id l15so21540489wiw.3 for ; Mon, 23 Feb 2015 16:42:02 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=GKoSwnB1vNDvn302ksSxTpvDfnfrFXKR24olt0v8fgM=; b=Aeh0hjMLp7rUbQwYKeF10XQ/dgaiNYfTU6D7wRmBQ7XaIp1eBlTEbZUj/FRr9zydC8 WHKP04bK+an2gxqVYv9U/uAtyhmdUuuWjxYhW0RTR8c/Q1CE7ukbRC8htXrAWmzGKeKR hInZ250SQRrJHLCpCnxEgsEkPukbGUBeWOSKOEumkJl6xX6mm3pnN/nZFL3q7zSnzu/Q jN1fXt9OvmJL3EvBd3OzcnbQ0b/OQDJtFZ/lZXS0kFm5evKobY9wo/ifNA+g8g7Te+25 AqmMOHVXwu/3SjYvyWR+zFOJyF9UiTW7vVqiwiGAeQQ4bPpbCWc7kTt3Dj09jInRbwxl +aRw== X-Gm-Message-State: ALoCoQnc2BsoCbKea2d8udxxoFcSrx7KRKE5i2fD3IAD8Yepb2hdt7h/iIDjrk+Qin950vdHK+2x X-Received: by 10.180.105.97 with SMTP id gl1mr25728512wib.74.1424738522647; Mon, 23 Feb 2015 16:42:02 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id do1sm18123521wib.3.2015.02.23.16.42.00 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 23 Feb 2015 16:42:01 -0800 (PST) From: Thomas Monjalon To: Przemyslaw Czesnowicz , "Xie, Huawei" Date: Tue, 24 Feb 2015 01:41:31 +0100 Message-ID: <1481647.xF8rZ2NGxe@xps13> Organization: 6WIND User-Agent: KMail/4.14.4 (Linux/3.18.4-1-ARCH; KDE/4.14.4; x86_64; ; ) In-Reply-To: <1424712993-73818-1-git-send-email-przemyslaw.czesnowicz@intel.com> References: <1423717649-11818-1-git-send-email-huawei.xie@intel.com> <1424712993-73818-1-git-send-email-przemyslaw.czesnowicz@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v3 00/11] qemu vhost-user support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Feb 2015 00:42:03 -0000 2015-02-23 17:36, Przemyslaw Czesnowicz: > v3 changes: > * move things around to make all patches compile > > > Xie, Huawei (11): > lib/librte_vhost: enable VIRTIO_NET_F_CTRL_RX VIRTIO_NET_F_CTRL_RX is > dependant on VIRTIO_NET_F_CTRL_VQ. Observed that virtio-net driver > in guest would crash with only CTRL_RX enabled. > lib/librte_vhost: create vhost_cuse directory and move > vhost-net-cdev.c into vhost_cuse > lib/librte_vhost: rename vhost-net-cdev.h to vhost-net.h > lib/librte_vhost: move fd copying(from qemu process into vhost > process) to eventfd_copy.c > lib/librte_vhost: copy host_memory_map from virtio-net.c to a new file > virtio-net-cdev.c > lib/librte_vhost: make host_memory_map a more generic function. > lib/librte_vhost: implement cuse_set_memory_table > lib/librte_vhost: add select based event driven processing > lib/librte_vhost: vhost user support > lib/librte_vhost: support dev->ifname for vhost-user > lib/librte_vhost: support dynamically registering vhost server Applied, thanks Commit logs don't explain why changes are done and there are probably a lot of cleanup to do, but I prefer having it integrated.