2021-06-11 16:38:42 +00:00
|
|
|
.. SPDX-License-Identifier: BSD-3-Clause
|
2018-02-01 17:18:17 +00:00
|
|
|
Copyright(c) 2010-2014 Intel Corporation.
|
2014-11-11 12:27:01 +00:00
|
|
|
|
|
|
|
Hello World Sample Application
|
|
|
|
==============================
|
|
|
|
|
2014-12-18 10:51:19 +00:00
|
|
|
The Hello World sample application is an example of the simplest DPDK application that can be written.
|
2014-11-11 12:27:01 +00:00
|
|
|
The application simply prints an "helloworld" message on every enabled lcore.
|
|
|
|
|
|
|
|
Compiling the Application
|
|
|
|
-------------------------
|
|
|
|
|
2017-10-25 15:50:59 +00:00
|
|
|
To compile the sample application see :doc:`compiling`.
|
2014-11-11 12:27:01 +00:00
|
|
|
|
2017-10-25 15:50:59 +00:00
|
|
|
The application is located in the ``helloworld`` sub-directory.
|
2014-11-11 12:27:01 +00:00
|
|
|
|
|
|
|
Running the Application
|
|
|
|
-----------------------
|
|
|
|
|
2019-03-06 16:22:42 +00:00
|
|
|
To run the example in a linux environment:
|
2014-11-11 12:27:01 +00:00
|
|
|
|
|
|
|
.. code-block:: console
|
|
|
|
|
2020-10-21 08:17:20 +00:00
|
|
|
$ ./<build_dir>/examples/dpdk-helloworld -l 0-3 -n 4
|
2014-11-11 12:27:01 +00:00
|
|
|
|
2014-12-18 10:51:19 +00:00
|
|
|
Refer to *DPDK Getting Started Guide* for general information on running applications
|
2014-11-11 12:27:01 +00:00
|
|
|
and the Environment Abstraction Layer (EAL) options.
|
|
|
|
|
|
|
|
Explanation
|
|
|
|
-----------
|
|
|
|
|
|
|
|
The following sections provide some explanation of code.
|
|
|
|
|
|
|
|
EAL Initialization
|
|
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
The first task is to initialize the Environment Abstraction Layer (EAL).
|
|
|
|
This is done in the main() function using the following code:
|
|
|
|
|
2021-07-16 13:57:52 +00:00
|
|
|
.. literalinclude:: ../../../examples/helloworld/main.c
|
|
|
|
:language: c
|
|
|
|
:start-after: Initialization of Environment Abstraction Layer (EAL). 8<
|
|
|
|
:end-before: >8 End of initialization of Environment Abstraction Layer
|
2014-11-11 12:27:01 +00:00
|
|
|
|
2019-03-06 16:22:42 +00:00
|
|
|
This call finishes the initialization process that was started before main() is called (in case of a Linux environment).
|
2014-11-11 12:27:01 +00:00
|
|
|
The argc and argv arguments are provided to the rte_eal_init() function.
|
|
|
|
The value returned is the number of parsed arguments.
|
|
|
|
|
|
|
|
Starting Application Unit Lcores
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Once the EAL is initialized, the application is ready to launch a function on an lcore.
|
|
|
|
In this example, lcore_hello() is called on every available lcore.
|
|
|
|
The following is the definition of the function:
|
|
|
|
|
2021-07-16 13:57:52 +00:00
|
|
|
.. literalinclude:: ../../../examples/helloworld/main.c
|
|
|
|
:language: c
|
|
|
|
:start-after: Launch a function on lcore. 8<
|
|
|
|
:end-before: >8 End of launching function on lcore.
|
2014-11-11 12:27:01 +00:00
|
|
|
|
|
|
|
The code that launches the function on each lcore is as follows:
|
|
|
|
|
2021-07-16 13:57:52 +00:00
|
|
|
.. literalinclude:: ../../../examples/helloworld/main.c
|
|
|
|
:language: c
|
|
|
|
:start-after: Launches the function on each lcore. 8<
|
|
|
|
:end-before: >8 End of launching the function on each lcore.
|
|
|
|
:dedent: 1
|
2014-11-11 12:27:01 +00:00
|
|
|
|
|
|
|
The following code is equivalent and simpler:
|
|
|
|
|
2021-07-16 13:57:52 +00:00
|
|
|
.. literalinclude:: ../../../examples/helloworld/main.c
|
|
|
|
:language: c
|
|
|
|
:start-after: Simpler equivalent. 8<
|
|
|
|
:end-before: >8 End of simpler equivalent.
|
|
|
|
:dedent: 2
|
2014-11-11 12:27:01 +00:00
|
|
|
|
2014-12-18 10:51:19 +00:00
|
|
|
Refer to the *DPDK API Reference* for detailed information on the rte_eal_mp_remote_launch() function.
|