ethdev: decrease verbosity of not disabled offload logs

Right now a PMD decides if it is critical that an offload cannot
be disabled (i.e. not requested, but still enabled). If PMD treaks
it as OK, we should not spam logs with corresponding messages
by default. Default log level in ethdev is INFO, so change the
message level to DEBUG.

Fixes: 1daa338058 ("ethdev: validate offloads set by PMD")

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Andrew Rybchenko 2019-11-14 16:40:51 +00:00 committed by Ferruh Yigit
parent 73fb89dd6a
commit 9e954d3194

View File

@ -1204,7 +1204,7 @@ validate_offloads(uint16_t port_id, uint64_t req_offloads,
/* Chech if offload couldn't be disabled. */ /* Chech if offload couldn't be disabled. */
if (offload & set_offloads) { if (offload & set_offloads) {
RTE_ETHDEV_LOG(INFO, RTE_ETHDEV_LOG(DEBUG,
"Port %u failed to disable %s offload %s\n", "Port %u failed to disable %s offload %s\n",
port_id, offload_type, offload_name(offload)); port_id, offload_type, offload_name(offload));
} }