From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f176.google.com (mail-wi0-f176.google.com [209.85.212.176]) by dpdk.org (Postfix) with ESMTP id 72B5291FA for ; Fri, 30 Oct 2015 16:22:45 +0100 (CET) Received: by wicfx6 with SMTP id fx6so12833306wic.1 for ; Fri, 30 Oct 2015 08:22:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind_com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=iNe2oMjm5aBbRbQ5BNxxaDoZvaMokh7YA1T8f3rThQY=; b=ifj5UfJc+xWYM3QvBEGnyq5ZMw843v904vlgZgDMDmoEI7bTtFtlvjvHOvA6cFd0UZ ZViMN5IflAIiQKXSCxsGBf7cy0wHGjFAK/a6JNFjjz6OOgRCWd2+2IrM8RS/d1XeG1xP ToIdfwQMWixPEvECCIBGLQryloyHyrQt/deBWoYOQ4+zZ3kiH6Q1KAGnt4C+JgPjUl2W mhxR0nBx4ryRZAM2wUr1OWzzZZ/716wo5wmHZzpXnhlCgD5WVTTQ2FwK50DAZe9PaSgJ T4Q/arZIx/k3oLmiSZSwy6ih/WRxvjl1017Pik28hb6UFL6EBbs3nP5WTB3lGKP3Etfu Ntpg== 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=iNe2oMjm5aBbRbQ5BNxxaDoZvaMokh7YA1T8f3rThQY=; b=X69X0IPc1W4eaO71WZ+0AbQe/GROC+U3hqMzexIoAOXdCFCQjDYffxT6Zcjc/9Y39R eCR/POdPAOFD/tQuBxKS7j/wpWw/omYk4ovE9YYVoqRFwVDxrxwK3/Zt85mq+ePgckPZ zftK98gxaEFo/Q08NZyvcQruLwtxzm+xnwcn/x9+t9ZQmAw3wCa3Y8t9DMmaRbw5aTEK q+fHOgqgV6kmrYTKTMNJi06JYe5JEt39x5p/8WcOLwI66EE/aA/3+NqY/GaYZap2k3re GdzNkY1o+iCLGXO/H+4OJ+l+CEbEr/1bhpHq5roNwdHA32qzWL87joqLVonFCZTfm9Gg m+ag== X-Gm-Message-State: ALoCoQnaaI6gYbElFmaEy5M4eLQJ7o+HKgkiFi/+lhRuDUc0P0j3Fseb0xuE7Mwlg9wkJtzEq6Ju X-Received: by 10.194.184.81 with SMTP id es17mr8929482wjc.10.1446218565200; Fri, 30 Oct 2015 08:22:45 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id y77sm3368614wme.15.2015.10.30.08.22.44 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 30 Oct 2015 08:22:44 -0700 (PDT) From: Thomas Monjalon To: Bernard Iremonger Date: Fri, 30 Oct 2015 16:21:34 +0100 Message-ID: <1777159.x2ndGBQgqJ@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1446217733-9887-1-git-send-email-bernard.iremonger@intel.com> References: <1446217733-9887-1-git-send-email-bernard.iremonger@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 v7 00/28] remove pci driver from vdevs 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: Fri, 30 Oct 2015 15:22:45 -0000 2015-10-30 15:08, Bernard Iremonger: > Changes in v7: > rebase to latest code. Please Bernard, be kind and change the status of your previous patchset. I'm tired to do it for 28 patches each time you rebase. By the way, it is not needed to do a patch per driver when it is the same oneliner without any explanation message. > Bernard Iremonger (28): > librte_eal: add RTE_KDRV_NONE for vdevs > librte_ether: add fields from rte_pci_driver to rte_eth_dev_data > librte_ether: add function rte_eth_copy_dev_info > ixgbe: copy pci device info to eth_dev data > e1000: copy pci device info to eth_dev data > i40e: copy pci device info to eth_dev data > fm10k: copy pci device info to eth_dev data > bnx2x: copy pci device info to eth_dev data > cxgbe: copy pci device info to eth_dev data > enic: copy pci device info to eth_dev data > mlx4: copy pci device info to eth_dev data > virtio: copy pci device info to eth_dev data > vmxnet3: copy pci device info to eth_dev data > null: copy device info to eth_dev data > ring: copy device info to eth_dev data > pcap: copy device info to eth_dev data > af_packet: copy device info to eth_dev data > xenvirt: copy device info to eth_dev data > mpipe: copy device info to eth_dev data > bonding: copy device info to eth_dev data > librte_ether: remove branches on pci_dev > null: remove pci device > ring: remove pci device > pcap: remove pci device > af_packet: remove pci device > xenvirt: remove pci device > mpipe: remove pci device > bonding: remove pci device