doc: fix file attributes of guides
[dpdk.git] / doc / guides / rel_notes / rel_description.rst
1 ..  BSD LICENSE
2     Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
3     All rights reserved.
4
5     Redistribution and use in source and binary forms, with or without
6     modification, are permitted provided that the following conditions
7     are met:
8
9     * Redistributions of source code must retain the above copyright
10     notice, this list of conditions and the following disclaimer.
11     * Redistributions in binary form must reproduce the above copyright
12     notice, this list of conditions and the following disclaimer in
13     the documentation and/or other materials provided with the
14     distribution.
15     * Neither the name of Intel Corporation nor the names of its
16     contributors may be used to endorse or promote products derived
17     from this software without specific prior written permission.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 Description of Release
32 ======================
33
34 These release notes cover the new features,
35 fixed bugs and known issues for Intel® Data Plane Development Kit (Intel® DPDK) release version 1.7.0.
36
37 For instructions on compiling and running the release, see the *Intel® DPDK Getting Started Guide*.
38
39 Important Note
40 --------------
41
42 All Intel® DPDK questions and technical problems including those regarding the Ethernet* Controllers for the Poll Mode Driver should be reported through the Intel® Premier Support site
43 `http://premier.intel.com/premier <http://premier.intel.com/premier>`_
44 or access your IBL account and click the **Intel® Premier Support** link to enter issues under the Product Name “Data Plane Development Kit (DPDK)”,
45 which are then routed to our support team.
46
47 Using Intel® DPDK Upgrade Patches
48 ---------------------------------
49
50 For minor updates to the main Intel® DPDK releases, the software may be made available both as a new full package and as a patch file to be applied to the previously released package.
51 In the latter case, the following commands should be used to apply the patch on top of the already-installed package for the previous release:
52
53 .. code-block:: console
54
55     # cd $RTE_SDK
56     # patch –p1 < /path/to/patch/file
57
58 Once the patch has been applied cleanly, the Intel® DPDK can be recompiled and used as before (described in the *Intel® DPDK Getting Started Guide*).
59
60 .. note::
61
62     If the patch does not apply cleanly, perhaps because of modifications made locally to the software,
63     it is recommended to use the full release package for the minor update, instead of using the patch.
64
65 Documentation Roadmap
66 ---------------------
67
68 The following is a list of Intel® DPDK documents in the suggested reading order:
69
70 *   **Release Notes**
71     (this document): Provides release-specific information, including supported features, limitations, fixed issues, known issues and so on.
72     Also, provides the answers to frequently asked questions in FAQ format.
73
74 *   **Getting Started Guide**
75     : Describes how to install and configure the Intel® DPDK software; designed to get users up and running quickly with the software.
76
77 *   **FreeBSD* Getting Started Guide**
78     : A document describing the use of the Intel® DPDK with FreeBSD* has been added in Intel® DPDK Release 1.6.0.
79     Refer to this guide for installation and configuration instructions to get started using the Intel® DPDK with FreeBSD*.
80
81 *   **Programmer's Guide**
82     : Describes:
83
84     *   The software architecture and how to use it (through examples), specifically in a Linux* application (linuxapp) environment
85
86     *   The content of the Intel® DPDK, the build system (including the commands that can be used in the root Intel® DPDK Makefile to build the development kit and an application)
87         and guidelines for porting an application
88
89     *   Optimizations used in the software and those that should be considered for new development
90
91     A glossary of terms is also provided.
92
93 *   **API Reference**
94     : Provides detailed information about Intel® DPDK functions, data structures and other programming constructs.
95
96 *   **Sample Applications User Guide**
97     : Describes a set of sample applications. Each chapter describes a sample application that showcases specific functionality and provides instructions on how to compile,
98     run and use the sample application.
99
100     The following sample applications are included:
101
102     *   Command Line
103
104     *   Exception Path (into Linux* for packets using the Linux TUN/TAP driver)
105
106     *   Hello World
107
108     *   Integration with Intel® QuickAssist Technology
109
110     *   Link Status Interrupt (Ethernet* Link Status Detection)
111
112     *   IP Reassembly
113
114     *   IP Fragmentation
115
116     *   IPv4 Multicast
117
118     *   L2 Forwarding (supports virtualized and non-virtualized environments)
119
120     *   L2 Forwarding IVSHMEM
121
122     *   L3 Forwarding
123
124     *   L3 Forwarding with Power Management
125
126     *   L3 Forwarding in a Virtualized Environment
127
128     *   Load Balancing
129
130     *   Multi-process
131
132     *   QoS Scheduler + Dropper
133
134     *   QoS Metering
135
136     *   Quota & Watermarks
137
138     *   Timer
139
140     *   VMDQ and DCB L2 Forwarding
141
142     *   VMDQ L2 Forwarding
143
144     *   Userspace vhost
145
146     *   Userspace vhost switch
147
148     *   Netmap
149
150     *   Kernel NIC Interface (KNI)
151
152     In addition, there are some other applications that are built when the libraries are created.
153     The source for these applications is in the DPDK/app directory and are called:
154
155     *   test
156
157     *   testpmd
158
159     Once the libraries are created, they can be found in the build/app directory.
160
161     *   The test application provides a variety of specific tests for the various functions in the Intel® DPDK.
162
163     *   The testpmd application provides a number of different packet throughput tests and examples of features such as
164         how to use the Flow Director found in the Intel® 82599 10 Gigabit Ethernet Controller.
165
166     The testpmd application is documented in the *Intel® DPDK Testpmd Application Note* (525362).
167     The test application is not currently documented.
168     However, you should be able to run and use test application with the command line help that is provided in the application.