git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
47d834b
)
examples/l3fwd-power: disable link status interrupt
author
Nikhil Agarwal
<nikhil.agarwal@linaro.org>
Tue, 12 Dec 2017 10:08:26 +0000
(15:38 +0530)
committer
Thomas Monjalon
<thomas@monjalon.net>
Mon, 15 Jan 2018 17:41:16 +0000
(18:41 +0100)
This application does not need Link Status Interrupt.
It will cause failure for the platforms not supporting LSC.
Signed-off-by: Nikhil Agarwal <nikhil.agarwal@linaro.org>
Acked-by: David Hunt <david.hunt@intel.com>
examples/l3fwd-power/main.c
patch
|
blob
|
history
diff --git
a/examples/l3fwd-power/main.c
b/examples/l3fwd-power/main.c
index
b1aa0d9
..
dd9e014
100644
(file)
--- a/
examples/l3fwd-power/main.c
+++ b/
examples/l3fwd-power/main.c
@@
-200,7
+200,6
@@
static struct rte_eth_conf port_conf = {
.mq_mode = ETH_MQ_TX_NONE,
},
.intr_conf = {
- .lsc = 1,
.rxq = 1,
},
};