net/tap: do not use PMD log type
The PMD logtype is legacy and drivers should use their own logtype.
Fixes: 050316a883
("net/tap: support TSO (TCP Segment Offload)")
Cc: stable@dpdk.org
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
88fa5bb6b9
commit
bd3b90d53a
@ -778,7 +778,7 @@ tap_ioctl(struct pmd_internals *pmd, unsigned long request,
|
||||
case SIOCSIFMTU:
|
||||
break;
|
||||
default:
|
||||
RTE_LOG(WARNING, PMD, "%s: ioctl() called with wrong arg\n",
|
||||
TAP_LOG(WARNING, "%s: ioctl() called with wrong arg",
|
||||
pmd->name);
|
||||
return -EINVAL;
|
||||
}
|
||||
@ -1301,7 +1301,9 @@ tap_gso_ctx_setup(struct rte_gso_ctx *gso_ctx, struct rte_eth_dev *dev)
|
||||
SOCKET_ID_ANY);
|
||||
if (!mp) {
|
||||
struct pmd_internals *pmd = dev->data->dev_private;
|
||||
RTE_LOG(DEBUG, PMD, "%s: failed to create mbuf pool for device %s\n",
|
||||
|
||||
TAP_LOG(ERR,
|
||||
"%s: failed to create mbuf pool for device %s\n",
|
||||
pmd->name, dev->device->name);
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user