From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by dpdk.org (Postfix) with ESMTP id D1C455677 for ; Thu, 19 Mar 2015 17:49:13 +0100 (CET) Received: by wegp1 with SMTP id p1so62211481weg.1 for ; Thu, 19 Mar 2015 09:49:13 -0700 (PDT) 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:in-reply-to :references; bh=bu6gxgO34Kx3pAlglXPo/YEgqbl9TKYkjOpINLA+kuY=; b=PmrZZXvs7V1Q2e/40Ax4l5OQeXDLX6KWHOkoiyDu9HS1OB07NuuISgwfqB7IW3m2Y+ yR25UFbLwlCr0aT6Ej/gT3Zc5gyCcX5Y1Qc8aCuc19Ddh3m139E+oZI2alA5AynXFgTZ 3UAwgS4YOD5alkYcIawxTrHbgoWN+7LMyKkZ4HvUy89i9HkHc99whSXPwsYE+bqgVM/6 6kIE0GyfNlKFoYoHKcUHj2COde43UFPASHOY0A8viMetox3O0lQTJMhk9bmoswIZLJG0 I9bFieiZl6NEHvCxsFOT//2xjBIryRQoj2g18TZiyYZyOsrR53SMAEw6Z7ZNrgicPH6a Sazw== X-Gm-Message-State: ALoCoQnLdwbLViUqP21i87/YWqmUPYZE2MWEpzwseKQ1Xyojs8/vA0G9Eyz/8RvoxC41hbno4Ce/ X-Received: by 10.194.157.39 with SMTP id wj7mr116281157wjb.57.1426783753699; Thu, 19 Mar 2015 09:49:13 -0700 (PDT) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id lx10sm2672243wjb.17.2015.03.19.09.49.12 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 19 Mar 2015 09:49:12 -0700 (PDT) From: Thomas Monjalon To: siobhan.a.butler@intel.com, bernard.iremonger@intel.com Date: Thu, 19 Mar 2015 17:48:28 +0100 Message-Id: <1426783711-2407-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.2.2 In-Reply-To: <1422747307-13792-1-git-send-email-thomas.monjalon@6wind.com> References: <1422747307-13792-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH v2 0/3] split programmers guide a bit 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: Thu, 19 Mar 2015 16:49:14 -0000 Too many things are included in the programmers guide. I think it should cover only API and knowledge needed to make an application. That's why I suggest to move Xen and NICs doc outside. Then it will be easier to add doc for a new environment or a new NIC. Note that drivers or device-related libs like KNI, vhost or bonding stay in the programmer's guide because they are more high-level than NICs drivers. Changes in v2: - create index for Xen guide - rename figure links - rebase with mlx4 - HTML copyright removal has been sent separately Thomas Monjalon (3): doc: fix file attributes doc: move Xen guide out of programmers guide doc: nics guide MAINTAINERS | 17 +- doc/guides/index.rst | 2 + .../driver_vm_emul_dev.rst => nics/e1000em.rst} | 0 doc/guides/{prog_guide => nics}/img/console.png | Bin .../{prog_guide => nics}/img/fast_pkt_proc.png | Bin .../{prog_guide => nics}/img/forward_stats.png | Bin .../{prog_guide => nics}/img/host_vm_comms.png | Bin .../img/host_vm_comms_qemu.png | Bin .../{prog_guide => nics}/img/inter_vm_comms.png | Bin .../{prog_guide => nics}/img/perf_benchmark.png | Bin .../{prog_guide => nics}/img/single_port_nic.png | Bin .../{prog_guide => nics}/img/vm_vm_comms.png | Bin .../{prog_guide => nics}/img/vmxnet3_int.png | Bin doc/guides/{prog_guide => nics}/img/vswitch_vm.png | Bin doc/guides/{ => nics}/index.rst | 28 ++-- .../intel_vf.rst} | 8 +- doc/guides/nics/ixgbe.rst | 184 +++++++++++++++++++++ .../mlx4_poll_mode_drv.rst => nics/mlx4.rst} | 0 .../pcap_ring.rst} | 0 .../virtio.rst} | 4 +- .../vmxnet3.rst} | 0 doc/guides/prog_guide/index.rst | 18 -- doc/guides/prog_guide/poll_mode_drv.rst | 152 ----------------- .../img/dpdk_xen_pkt_switch.png | Bin doc/guides/{prog_guide => xen}/img/grant_refs.png | Bin doc/guides/{prog_guide => xen}/img/grant_table.png | Bin doc/guides/{ => xen}/index.rst | 21 +-- .../pkt_switch.rst} | 0 28 files changed, 228 insertions(+), 206 deletions(-) rename doc/guides/{prog_guide/driver_vm_emul_dev.rst => nics/e1000em.rst} (100%) rename doc/guides/{prog_guide => nics}/img/console.png (100%) rename doc/guides/{prog_guide => nics}/img/fast_pkt_proc.png (100%) rename doc/guides/{prog_guide => nics}/img/forward_stats.png (100%) rename doc/guides/{prog_guide => nics}/img/host_vm_comms.png (100%) rename doc/guides/{prog_guide => nics}/img/host_vm_comms_qemu.png (100%) rename doc/guides/{prog_guide => nics}/img/inter_vm_comms.png (100%) rename doc/guides/{prog_guide => nics}/img/perf_benchmark.png (100%) rename doc/guides/{prog_guide => nics}/img/single_port_nic.png (100%) rename doc/guides/{prog_guide => nics}/img/vm_vm_comms.png (100%) rename doc/guides/{prog_guide => nics}/img/vmxnet3_int.png (100%) rename doc/guides/{prog_guide => nics}/img/vswitch_vm.png (100%) copy doc/guides/{ => nics}/index.rst (88%) rename doc/guides/{prog_guide/i40e_ixgbe_igb_virt_func_drv.rst => nics/intel_vf.rst} (99%) mode change 100755 => 100644 create mode 100644 doc/guides/nics/ixgbe.rst rename doc/guides/{prog_guide/mlx4_poll_mode_drv.rst => nics/mlx4.rst} (100%) rename doc/guides/{prog_guide/libpcap_ring_based_poll_mode_drv.rst => nics/pcap_ring.rst} (100%) rename doc/guides/{prog_guide/poll_mode_drv_emulated_virtio_nic.rst => nics/virtio.rst} (99%) rename doc/guides/{prog_guide/poll_mode_drv_paravirtual_vmxnets_nic.rst => nics/vmxnet3.rst} (100%) mode change 100755 => 100644 doc/guides/prog_guide/poll_mode_drv.rst rename doc/guides/{prog_guide => xen}/img/dpdk_xen_pkt_switch.png (100%) rename doc/guides/{prog_guide => xen}/img/grant_refs.png (100%) rename doc/guides/{prog_guide => xen}/img/grant_table.png (100%) copy doc/guides/{ => xen}/index.rst (88%) rename doc/guides/{prog_guide/intel_dpdk_xen_based_packet_switch_sol.rst => xen/pkt_switch.rst} (100%) -- 2.2.2