Skip to content

Commit 43d162b

Browse files
committed
fix dpdk.org URLs
The DPDK website has a new URL scheme since June 2018. Cc: [email protected] Signed-off-by: Thomas Monjalon <[email protected]> Acked-by: John McNamara <[email protected]>
1 parent c5f21bd commit 43d162b

21 files changed

+38
-37
lines changed

app/test-eventdev/test_order_atq.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#include "test_order_common.h"
99

10-
/* See http://dpdk.org/doc/guides/tools/testeventdev.html for test details */
10+
/* See http://doc.dpdk.org/guides/tools/testeventdev.html for test details */
1111

1212
static inline __attribute__((always_inline)) void
1313
order_atq_process_stage_0(struct rte_event *const ev)

app/test-eventdev/test_order_queue.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#include "test_order_common.h"
99

10-
/* See http://dpdk.org/doc/guides/tools/testeventdev.html for test details */
10+
/* See http://doc.dpdk.org/guides/tools/testeventdev.html for test details */
1111

1212
static inline __attribute__((always_inline)) void
1313
order_queue_process_stage_0(struct rte_event *const ev)

app/test-eventdev/test_perf_atq.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include "test_perf_common.h"
66

7-
/* See http://dpdk.org/doc/guides/tools/testeventdev.html for test details */
7+
/* See http://doc.dpdk.org/guides/tools/testeventdev.html for test details */
88

99
static inline int
1010
atq_nb_event_queues(struct evt_options *opt)

app/test-eventdev/test_perf_queue.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include "test_perf_common.h"
66

7-
/* See http://dpdk.org/doc/guides/tools/testeventdev.html for test details */
7+
/* See http://doc.dpdk.org/guides/tools/testeventdev.html for test details */
88

99
static inline int
1010
perf_queue_nb_event_queues(struct evt_options *opt)

app/test-eventdev/test_pipeline_atq.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "test_pipeline_common.h"
77

8-
/* See http://dpdk.org/doc/guides/tools/testeventdev.html for test details */
8+
/* See http://doc.dpdk.org/guides/tools/testeventdev.html for test details */
99

1010
static __rte_always_inline int
1111
pipeline_atq_nb_event_queues(struct evt_options *opt)

app/test-eventdev/test_pipeline_queue.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "test_pipeline_common.h"
77

8-
/* See http://dpdk.org/doc/guides/tools/testeventdev.html for test details */
8+
/* See http://doc.dpdk.org/guides/tools/testeventdev.html for test details */
99

1010
static __rte_always_inline int
1111
pipeline_queue_nb_event_queues(struct evt_options *opt)

doc/build-sdk-meson.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ INSTALLING DPDK USING THE MESON BUILD SYSTEM
44
NOTE: Compiling and installing DPDK using ``meson`` and ``ninja``, rather
55
than using ``make`` (GNU make) is EXPERIMENTAL. Official builds of DPDK
66
should always be done using ``make``, as described in the ``Getting Started
7-
Guide`` documentation, and at "http://dpdk.org/doc/quick-start".
7+
Guide`` documentation, and at "http://core.dpdk.org/doc/quick-start".
88

99
Summary
1010
--------

doc/guides/contributing/documentation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ added to by the developer.
8383
* **API documentation**
8484

8585
The API documentation explains how to use the public DPDK functions.
86-
The `API index page <http://dpdk.org/doc/api/>`_ shows the generated API documentation with related groups of functions.
86+
The `API index page <http://doc.dpdk.org/api/>`_ shows the generated API documentation with related groups of functions.
8787

8888
The API documentation should be updated via Doxygen comments when new functions are added.
8989

@@ -653,7 +653,7 @@ The following are some guidelines for use of Doxygen in the DPDK API documentati
653653
*/
654654
655655
In the API documentation the functions will be rendered as links, see the
656-
`online section of the rte_ethdev.h docs <http://dpdk.org/doc/api/rte__ethdev_8h.html>`_ that contains the above text.
656+
`online section of the rte_ethdev.h docs <http://doc.dpdk.org/api/rte__ethdev_8h.html>`_ that contains the above text.
657657

658658
* The ``@see`` keyword can be used to create a *see also* link to another file or library.
659659
This directive should be placed on one line at the bottom of the documentation section.

doc/guides/contributing/patches.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ The DPDK development process has the following features:
2828
* All sub-repositories are merged into main repository for ``-rc1`` and ``-rc2`` versions of the release.
2929
* After the ``-rc2`` release all patches should target the main repository.
3030

31-
The mailing list for DPDK development is `[email protected] <http://dpdk.org/ml/archives/dev/>`_.
32-
Contributors will need to `register for the mailing list <http://dpdk.org/ml/listinfo/dev>`_ in order to submit patches.
33-
It is also worth registering for the DPDK `Patchwork <http://dpdk.org/dev/patchwork/project/dpdk/list/>`_
31+
The mailing list for DPDK development is `[email protected] <http://mails.dpdk.org/archives/dev/>`_.
32+
Contributors will need to `register for the mailing list <http://mails.dpdk.org/listinfo/dev>`_ in order to submit patches.
33+
It is also worth registering for the DPDK `Patchwork <http://patches.dpdk.org/project/dpdk/list/>`_
3434

3535
The development process requires some familiarity with the ``git`` version control system.
3636
Refer to the `Pro Git Book <http://www.git-scm.com/book/>`_ for further information.
@@ -130,7 +130,7 @@ main repository::
130130
git clone git://dpdk.org/dpdk
131131
git clone http://dpdk.org/git/dpdk
132132

133-
sub-repositories (`list <http://dpdk.org/browse/next>`_)::
133+
sub-repositories (`list <http://git.dpdk.org/next>`_)::
134134

135135
git clone git://dpdk.org/next/dpdk-next-*
136136
git clone http://dpdk.org/git/next/dpdk-next-*
@@ -286,7 +286,7 @@ in the body of the commit message. For example::
286286
Signed-off-by: Alex Smith <[email protected]>
287287

288288

289-
`Bugzilla <https://dpdk.org/tracker>`_
289+
`Bugzilla <https://bugs.dpdk.org>`_
290290
is a bug- or issue-tracking system.
291291
Bug-tracking systems allow individual or groups of developers
292292
effectively to keep track of outstanding problems with their product.
@@ -308,7 +308,7 @@ Patch for Stable Releases
308308
~~~~~~~~~~~~~~~~~~~~~~~~~
309309

310310
All fix patches to the master branch that are candidates for backporting
311-
should also be CCed to the `[email protected] <http://dpdk.org/ml/listinfo/stable>`_
311+
should also be CCed to the `[email protected] <http://mails.dpdk.org/listinfo/stable>`_
312312
mailing list.
313313
In the commit message body the Cc: [email protected] should be inserted as follows::
314314

@@ -509,7 +509,7 @@ If the patch is in relation to a previous email thread you can add it to the sam
509509
git send-email --to [email protected] --in-reply-to <[email protected]> 000*.patch
510510

511511
The Message ID can be found in the raw text of emails or at the top of each Patchwork patch,
512-
`for example <http://dpdk.org/dev/patchwork/patch/7646/>`_.
512+
`for example <http://patches.dpdk.org/patch/7646/>`_.
513513
Shallow threading (``--thread --no-chain-reply-to``) is preferred for a patch series.
514514

515515
Once submitted your patches will appear on the mailing list and in Patchwork.

doc/guides/contributing/stable.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The Stable and LTS release are coordinated on the [email protected] mailing
9696
list.
9797

9898
All fix patches to the master branch that are candidates for backporting
99-
should also be CCed to the `[email protected] <http://dpdk.org/ml/listinfo/stable>`_
99+
should also be CCed to the `[email protected] <http://mails.dpdk.org/listinfo/stable>`_
100100
mailing list.
101101

102102

@@ -107,10 +107,10 @@ A Stable Release will be released by:
107107

108108
* Tagging the release with YY.MM.n (year, month, number).
109109
* Uploading a tarball of the release to dpdk.org.
110-
* Sending an announcement to the `[email protected] <http://dpdk.org/ml/listinfo/announce>`_
110+
* Sending an announcement to the `[email protected] <http://mails.dpdk.org/listinfo/announce>`_
111111
list.
112112

113-
Stable releases are available on the `dpdk.org download page <http://dpdk.org/download>`_.
113+
Stable releases are available on the `dpdk.org download page <http://core.dpdk.org/download/>`_.
114114

115115

116116
ABI

doc/guides/cryptodevs/qat.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Intel(R) QuickAssist (QAT) Crypto Poll Mode Driver
77
QAT documentation consists of three parts:
88

99
* Details of the symmetric crypto service below.
10-
* Details of the `compression service <http://dpdk.org/doc/guides/compressdevs/qat_comp.html>`_
10+
* Details of the `compression service <http://doc.dpdk.org/guides/compressdevs/qat_comp.html>`_
1111
in the compressdev drivers section.
1212
* Details of building the common QAT infrastructure and the PMDs to support the
1313
above services. See :ref:`building_qat` below.
@@ -124,7 +124,7 @@ Configuring and Building the DPDK QAT PMDs
124124

125125

126126
Further information on configuring, building and installing DPDK is described
127-
`here <http://dpdk.org/doc/guides/linux_gsg/build_dpdk.html>`_.
127+
`here <http://doc.dpdk.org/guides/linux_gsg/build_dpdk.html>`_.
128128

129129

130130
Quick instructions for QAT cryptodev PMD are as follows:

doc/guides/freebsd_gsg/install_from_ports.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ environmental variables should be set as below:
6262
.. note::
6363

6464
To install a copy of the DPDK compiled using gcc, please download the
65-
official DPDK package from http://dpdk.org/ and install manually using
65+
official DPDK package from http://core.dpdk.org/download/ and install manually using
6666
the instructions given in the next chapter, :ref:`building_from_source`
6767

6868
An example application can therefore be copied to a user's home directory and

doc/guides/howto/flow_bifurcation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,4 +268,4 @@ The typical procedure to achieve this is as follows:
268268
'not involved', while ``00`` or no mask means 'involved'.
269269

270270
* For more details of the configuration, refer to the
271-
`cloud filter test plan <http://dpdk.org/browse/tools/dts/tree/test_plans/cloud_filter_test_plan.rst>`_
271+
`cloud filter test plan <http://git.dpdk.org/tools/dts/tree/test_plans/cloud_filter_test_plan.rst>`_

doc/guides/linux_gsg/nic_perf_intel_platform.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ This aligns with the previous output which showed that each channel has one memo
6464
Network Interface Card Requirements
6565
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6666

67-
Use a `DPDK supported <http://dpdk.org/doc/nics>`_ high end NIC such as the Intel XL710 40GbE.
67+
Use a `DPDK supported <http://core.dpdk.org/supported/>`_ high end NIC such as the Intel XL710 40GbE.
6868

6969
Make sure each NIC has been flashed the latest version of NVM/firmware.
7070

doc/guides/nics/enic.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ How to obtain ENIC PMD integrated DPDK
1414
--------------------------------------
1515

1616
ENIC PMD support is integrated into the DPDK suite. dpdk-<version>.tar.gz
17-
should be downloaded from http://dpdk.org
17+
should be downloaded from http://core.dpdk.org/download/
1818

1919

2020
Configuration information

doc/guides/prog_guide/cryptodev_lib.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1043,4 +1043,4 @@ Asymmetric Crypto Device API
10431043
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10441044

10451045
The cryptodev Library API is described in the
1046-
`DPDK API Reference <http://dpdk.org/doc/api/>`_
1046+
`DPDK API Reference <http://doc.dpdk.org/api/>`_

doc/guides/prog_guide/event_timer_adapter.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Event Timer Adapter Library
55
===========================
66

77
The DPDK
8-
`Event Device library <http://dpdk.org/doc/guides/prog_guide/eventdev.html>`_
8+
`Event Device library <http://doc.dpdk.org/guides/prog_guide/eventdev.html>`_
99
introduces an event driven programming model which presents applications with
1010
an alternative to the polling model traditionally used in DPDK
1111
applications. Event devices can be coupled with arbitrary components to provide
@@ -21,7 +21,7 @@ The Event Timer Adapter library is designed to interface with hardware or
2121
software implementations of the timer mechanism; it will query an eventdev PMD
2222
to determine which implementation should be used. The default software
2323
implementation manages timers using the DPDK
24-
`Timer library <http://dpdk.org/doc/guides/prog_guide/timer_lib.html>`_.
24+
`Timer library <http://doc.dpdk.org/guides/prog_guide/timer_lib.html>`_.
2525

2626
Examples of using the API are presented in the `API Overview`_ and
2727
`Processing Timer Expiry Events`_ sections. Code samples are abstracted and

doc/guides/prog_guide/switch_representation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ interconnection without introducing new concepts and whole new API to
349349
implement them. This is described in `flow API (rte_flow)`_.
350350

351351
.. [6] `Generic flow API (rte_flow)
352-
<http://dpdk.org/doc/guides/prog_guide/rte_flow.html>`_
352+
<http://doc.dpdk.org/guides/prog_guide/rte_flow.html>`_
353353
354354
Flow API (rte_flow)
355355
-------------------
@@ -737,7 +737,7 @@ Examples in subsequent sections apply to hypervisor applications only and
737737
are based on port representors **A**, **B** and **C**.
738738

739739
.. [2] `Flow syntax
740-
<http://dpdk.org/doc/guides/testpmd_app_ug/testpmd_funcs.html#flow-syntax>`_
740+
<http://doc.dpdk.org/guides/testpmd_app_ug/testpmd_funcs.html#flow-syntax>`_
741741
742742
Associating VF 1 with Physical Port 0
743743
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

doc/guides/rel_notes/release_18_05.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ Known Issues
594594
The issue is explained in more detail, including potential workarounds,
595595
in the Bugzilla entry referenced below.
596596

597-
Bugzilla entry: https://dpdk.org/tracker/show_bug.cgi?id=50
597+
Bugzilla entry: https://bugs.dpdk.org/show_bug.cgi?id=50
598598

599599
* **pdump is not compatible with old applications.**
600600

@@ -619,29 +619,29 @@ Known Issues
619619
needs to be run per-shell session, or before every test run. This change
620620
can also be made persistent by adding ``kern.coredump=0`` to ``/etc/sysctl.conf``.
621621

622-
Bugzilla entry: https://dpdk.org/tracker/show_bug.cgi?id=53
622+
Bugzilla entry: https://bugs.dpdk.org/show_bug.cgi?id=53
623623

624624
* **ixgbe PMD crash on hotplug detach when no VF created.**
625625

626626
ixgbe PMD uninit path cause null pointer dereference because of port representor
627627
cleanup when number of VF is zero.
628628

629-
Bugzilla entry: https://dpdk.org/tracker/show_bug.cgi?id=57
629+
Bugzilla entry: https://bugs.dpdk.org/show_bug.cgi?id=57
630630

631631
* **Bonding PMD may fail to accept new slave ports in certain conditions.**
632632

633633
In certain conditions when using testpmd,
634634
bonding may fail to register new slave ports.
635635

636-
Bugzilla entry: https://dpdk.org/tracker/show_bug.cgi?id=52.
636+
Bugzilla entry: https://bugs.dpdk.org/show_bug.cgi?id=52.
637637

638638
* **Unexpected performance regression in Vhost library.**
639639

640640
Patches fixing CVE-2018-1059 were expected to introduce a small performance
641641
drop. However, in some setups, bigger performance drops have been measured
642642
when running micro-benchmarks.
643643

644-
Bugzilla entry: https://dpdk.org/tracker/show_bug.cgi?id=48
644+
Bugzilla entry: https://bugs.dpdk.org/show_bug.cgi?id=48
645645

646646

647647
Shared Library Versions

doc/guides/tools/testbbdev.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ The following are the command-line options:
6262

6363
``-e EAL_PARAMS, --eal_params EAL_PARAMS``
6464
Specifies EAL arguments which are passed to the test app. For more details,
65-
refer to DPDK documentation at http://dpdk.org/doc.
65+
refer to DPDK documentation at
66+
http://doc.dpdk.org/guides/linux_gsg/linux_eal_parameters.html.
6667

6768
``-t TIMEOUT, --timeout TIMEOUT``
6869
Specifies timeout in seconds. If not specified timeout is set to 300 seconds.

license/exceptions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
This file will record any exceptions in DPDK Project with respect to DPDK
22
IP License policy as defined in DPDK Charter available at:
33

4-
http://dpdk.org/about/charter#ip
4+
https://www.dpdk.org/charter/
55

66
Note that following licenses are not exceptions:-
77
- BSD-3-Clause

0 commit comments

Comments
 (0)