#
8750576f |
| 14-Oct-2024 |
Nandini Persad <nandinipersad361@gmail.com> |
doc: reword some sample app guides
I have reviewed these sections for grammar/clarity and made small modifications to the formatting of sections to adhere to a template which will create uniformalit
doc: reword some sample app guides
I have reviewed these sections for grammar/clarity and made small modifications to the formatting of sections to adhere to a template which will create uniformality in the sample application user guides overall.
Signed-off-by: Nandini Persad <nandinipersad361@gmail.com> Acked-by: Chengwen Feng <fengchengwen@huawei.com>
show more ...
|
#
885807ae |
| 13-Jun-2023 |
Stephen Hemminger <stephen@networkplumber.org> |
doc: fix description of maximum Rx queues per lcore option
Several commands have a -q option but the description in the documentation was unclear. It is the upper limit on the number of queues per l
doc: fix description of maximum Rx queues per lcore option
Several commands have a -q option but the description in the documentation was unclear. It is the upper limit on the number of queues per lcore.
Suggested-by: Vipin Varghese <vipin.varghese@intel.com> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
show more ...
|
#
796b07e9 |
| 27-Sep-2021 |
Shijith Thotton <sthotton@marvell.com> |
examples/l2fwd-event: support event vector
Added changes to receive packets as event vector. By default this is disabled and can be enabled using the option --event-vector. Vector size and timeout t
examples/l2fwd-event: support event vector
Added changes to receive packets as event vector. By default this is disabled and can be enabled using the option --event-vector. Vector size and timeout to form the vector can be configured using options --event-vector-size and --event-vector-tmo.
Example: dpdk-l2fwd-event -l 0-3 -n 4 -- -p 0x03 --mode=eventdev \ --eventq-sched=ordered --event-vector --event-vector-size 16
Signed-off-by: Shijith Thotton <sthotton@marvell.com> Acked-by: Jerin Jacob <jerinj@marvell.com>
show more ...
|
#
9a212dc0 |
| 16-Jul-2021 |
Conor Fogarty <conor.fogarty@intel.com> |
doc: use code snippets in sample app guides
Currently the sample app user guides use hard coded code snippets, this patch changes these to use literalinclude which will dynamically update the snippe
doc: use code snippets in sample app guides
Currently the sample app user guides use hard coded code snippets, this patch changes these to use literalinclude which will dynamically update the snippets as changes are made to the code. This was introduced in commit 413c75c33c40 ("doc: show how to include code in guides"). Comments within the sample apps were updated to accommodate this as part of this patch. This will help to ensure that the code within the sample app user guides is up to date and not out of sync with the actual code.
Signed-off-by: Conor Fogarty <conor.fogarty@intel.com> Signed-off-by: Conor Walsh <conor.walsh@intel.com> Acked-by: John McNamara <john.mcnamara@intel.com>
show more ...
|
#
e2a94f9a |
| 21-Oct-2020 |
Ciara Power <ciara.power@intel.com> |
doc: remove references to make from apps guide
While make has been deprecated for DPDK, it's still applicable for some example apps to be built standalone, this patch adjusts the guides to take that
doc: remove references to make from apps guide
While make has been deprecated for DPDK, it's still applicable for some example apps to be built standalone, this patch adjusts the guides to take that into consideration.
Signed-off-by: Ciara Power <ciara.power@intel.com> Acked-by: Nicolas Chautru <nicolas.chautru@intel.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
show more ...
|
#
cb056611 |
| 15-Oct-2020 |
Stephen Hemminger <stephen@networkplumber.org> |
eal: rename lcore master and slave
Replace master lcore with main lcore and replace slave lcore with worker lcore.
Keep the old functions and macros but mark them as deprecated for this release.
T
eal: rename lcore master and slave
Replace master lcore with main lcore and replace slave lcore with worker lcore.
Keep the old functions and macros but mark them as deprecated for this release.
The "--master-lcore" command line option is also deprecated and any usage will print a warning and use "--main-lcore" as replacement.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
show more ...
|
#
87db93e0 |
| 06-May-2020 |
David Marchand <david.marchand@redhat.com> |
remove references to private PCI probe function
rte_pci_probe() is private to the PCI bus. Clean the remaining references in the documentation and comments.
Fixes: c752998b5e2e ("pci: introduce lib
remove references to private PCI probe function
rte_pci_probe() is private to the PCI bus. Clean the remaining references in the documentation and comments.
Fixes: c752998b5e2e ("pci: introduce library and driver") Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com> Reviewed-by: Gaetan Rivet <grive@u256.net>
show more ...
|
#
092454d9 |
| 31-Mar-2020 |
Pavan Nikhilesh <pbhagavatula@marvell.com> |
examples/l2fwd-event: add option to configure port pairs
Current l2fwd-event application statically configures adjacent ports as destination ports for forwarding the traffic.
Add a config option to
examples/l2fwd-event: add option to configure port pairs
Current l2fwd-event application statically configures adjacent ports as destination ports for forwarding the traffic.
Add a config option to pass the forwarding port pair mapping which allows the user to configure forwarding port mapping.
If no config argument is specified, destination port map is not changed and traffic gets forwarded with existing mapping.
To align port/queue configuration of each lcore with destination port map, port/queue configuration of each lcore gets modified when config option is specified.
Ex: ./l2fwd-event -c 0xff -- -p 0x3f -q 2 --config="(0,3)(1,4)(2,5)"
With above config option, traffic received from portid = 0 gets forwarded to port = 3 and vice versa, similarly traffic gets forwarded on other port pairs (1,4) and (2,5).
Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Reviewed-by: Andrzej Ostruszka <aostruszka@marvell.com>
show more ...
|
#
997d5d0d |
| 21-Nov-2019 |
Pavan Nikhilesh <pbhagavatula@marvell.com> |
doc: fix command line in l2fwd-event guide
Fix incorrect command line argument documented for l2fwd-event.
Bugzilla ID: 367 Bugzilla ID: 368 Fixes: 14d7ea259aeb ("doc: add application usage guide f
doc: fix command line in l2fwd-event guide
Fix incorrect command line argument documented for l2fwd-event.
Bugzilla ID: 367 Bugzilla ID: 368 Fixes: 14d7ea259aeb ("doc: add application usage guide for l2fwd-event")
Reported-by: Vipin Varghese <vipin.varghese@intel.com> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
show more ...
|
#
14d7ea25 |
| 30-Oct-2019 |
Sunil Kumar Kori <skori@marvell.com> |
doc: add application usage guide for l2fwd-event
Add documentation for l2fwd-event example. Update release notes.
Signed-off-by: Sunil Kumar Kori <skori@marvell.com> Acked-by: Nipun Gupta <nipun.gu
doc: add application usage guide for l2fwd-event
Add documentation for l2fwd-event example. Update release notes.
Signed-off-by: Sunil Kumar Kori <skori@marvell.com> Acked-by: Nipun Gupta <nipun.gupta@nxp.com> Acked-by: Jerin Jacob <jerinj@marvell.com>
show more ...
|