You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously when a flow was attempted to be offloaded, if it
returned an error that was not an actions error, a warning was logged.
The reason there was an exception for an actions error was to allow
for failure for full offload of a flow because it will fallback to
partial offload. In this case the log level is debug.
The issue is that some NICs do not specify an actions error, because
other config in the NIC may be checked first. e.g. In the case of
Mellanox CX-5, an unspecified error may be returned because the NIC
is not configured for the requested offload.
This makes for noisey warnings, which may not be relevant, similar to
when the actions error is returned, as there may not be an expectation
that full offload will ever succeed.
Reduce log level for the other errors to debug to match that of the
actions type.
The status of the offload can still be seen with below command:
$ ovs-appctl dpctl/dump-flows -m
... offloaded:partial ...
Signed-off-by: Kevin Traynor <[email protected]>
0 commit comments