From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f169.google.com (mail-wr0-f169.google.com [209.85.128.169]) by dpdk.org (Postfix) with ESMTP id 0989FF8AA for ; Sat, 25 Mar 2017 11:50:55 +0100 (CET) Received: by mail-wr0-f169.google.com with SMTP id u1so7222877wra.2 for ; Sat, 25 Mar 2017 03:50:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=QHxFgPIemFZ6SaeQKxRk3+crCHUDmi4eitWc5xqSZWs=; b=ZGYxOl5kwEn5+UFzEEo5vqWUpHhYtPRonRFjbm0Is3uF5w/AfZuUi+Ym8R1MQ33XML L/f/8pR1MmBNuht8H3yvgRkybkegqALZzPmSKFzuIK1vZR8riM8YbdxRaLT1dxetz4Gy bd/Ns+Rn7JFzaIfTsUmoytw3PhyOFD90Go6oWGEwdi1+lUJPC2NEGrKuQCUkjfcZgYFU KV8f0DczMU6Ah330KKTisRaMsqFu97taCJukZVnwIjv0N6ZbWkil2u+aWCZBBD1X76uT /g7ej1V16QdC+LlQakKYm0wlO/gVMpfBmudZ2kzbVisLf/a1YZb+nU6K1WqQxLAtEdWK z4Fw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=QHxFgPIemFZ6SaeQKxRk3+crCHUDmi4eitWc5xqSZWs=; b=DG0bJHhlB0L0EZM8cJthd3xlle6qnJh813A2USo5My2fCeycHdlJ+Sv/xFkgp+0QQn jHp+ofvEM7fkzNES+ScOtITF4h4pjpS/GmT0UgKlOMxIy4CdPkCXwqPWMuqbDSApPqH8 dQVwOFGxks8dTRzO9zOgBO7Fzx//2IOJ6hqV6/J17D9CSr9/MYx/Nn1PbJNQ7BJ2D08D va03T934AtVXuoiRAWGJeX4uomRKqzrvvDx9DlaG7LuLS2MFKFf6Md/TTCRYLElATAb3 DRThbK7XNxe9Ab/H7iKpzl5pZy5lUNiOxjaxUWXXzRWgdpm1I62+/uZ6lvo5b1991tY9 NKVQ== X-Gm-Message-State: AFeK/H2k+x9eZJy2Rc8aRw6bAxuN90lqoHOem/ZWHt/HRV7P3cOzuQLJuorTOBKAgKhGr6SNU27CcysO9txYjw== X-Received: by 10.223.172.55 with SMTP id v52mr9139959wrc.131.1490439054862; Sat, 25 Mar 2017 03:50:54 -0700 (PDT) MIME-Version: 1.0 Sender: jblunck@gmail.com Received: by 10.28.221.213 with HTTP; Sat, 25 Mar 2017 03:50:54 -0700 (PDT) In-Reply-To: <20170323083421.40403779@xeon-e3> References: <1488794430-25179-1-git-send-email-jblunck@infradead.org> <20170323083421.40403779@xeon-e3> From: Jan Blunck Date: Sat, 25 Mar 2017 11:50:54 +0100 X-Google-Sender-Auth: N0srV8H8qLb1SbQA8x2GNDEFTvo Message-ID: To: Stephen Hemminger Cc: dev Content-Type: text/plain; charset=UTF-8 Subject: Re: [dpdk-dev] [PATCH 00/38] Remove struct eth_driver X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Mar 2017 10:50:55 -0000 On Thu, Mar 23, 2017 at 4:34 PM, Stephen Hemminger wrote: > On Mon, 6 Mar 2017 10:59:52 +0100 > Jan Blunck wrote: > >> This series is removing the PCI specific struct eth_driver from rte_ether. The >> PCI drivers are changed to use the newly introduced header-only helpers >> instead. Although the virtual drivers did not make use of the ethdev's driver >> field they are converted to use the VDEV specific allocation helpers. The >> motivation for this change is to properly embed a reference to the generic >> rte_device in the ethdev. >> >> The series is based on: >> >> * http://dpdk.org/dev/patchwork/patch/20416/ >> * http://dpdk.org/dev/patchwork/patch/20417/ >> * my "Rework vdev probing to use rte_bus infrastructure" series >> * http://dpdk.org/dev/patchwork/patch/21058/ >> >> If requested I can push a tree with all dependent patches. >> > > Could you put a tree with the patches up on github? https://github.com/jblunck/dpdk/commits/eth_driver/20170306