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:
bcab6c1
)
net/mrvl: fix typo in log message
author
Tomasz Duszynski
<tdu@semihalf.com>
Mon, 19 Mar 2018 12:37:22 +0000
(13:37 +0100)
committer
Ferruh Yigit
<ferruh.yigit@intel.com>
Fri, 30 Mar 2018 12:08:43 +0000
(14:08 +0200)
Show appropriate log message in case Tx offloads are either
not supported or missing.
Fixes:
7d8f6c20cc7c
("net/mrvl: switch to the new Tx offload API")
Cc: stable@dpdk.org
Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
drivers/net/mrvl/mrvl_ethdev.c
patch
|
blob
|
history
diff --git
a/drivers/net/mrvl/mrvl_ethdev.c
b/drivers/net/mrvl/mrvl_ethdev.c
index
fac924f
..
61c1223
100644
(file)
--- a/
drivers/net/mrvl/mrvl_ethdev.c
+++ b/
drivers/net/mrvl/mrvl_ethdev.c
@@
-1700,14
+1700,14
@@
mrvl_tx_queue_offloads_okay(struct rte_eth_dev *dev, uint64_t requested)
uint64_t missing = mandatory & ~requested;
if (unsupported) {
- RTE_LOG(ERR, PMD, "Some
R
x offloads are not supported. "
+ RTE_LOG(ERR, PMD, "Some
T
x offloads are not supported. "
"Requested 0x%" PRIx64 " supported 0x%" PRIx64 ".\n",
requested, supported);
return 0;
}
if (missing) {
- RTE_LOG(ERR, PMD, "Some
R
x offloads are missing. "
+ RTE_LOG(ERR, PMD, "Some
T
x offloads are missing. "
"Requested 0x%" PRIx64 " missing 0x%" PRIx64 ".\n",
requested, missing);
return 0;