FWIW, CFM seems to be the same as BFD, so you may want to consider
adjusting that too. (These two differ from STP and mcast_snooping).
On 15 July 2014 03:31, Ben Pfaff wrote:
> On Thu, Jul 10, 2014 at 08:08:20AM +, Gur Stavi wrote:
> > If bfd is unsupported by ofproto class an 'unsupported'
On Thu, Jul 10, 2014 at 08:08:20AM +, Gur Stavi wrote:
> If bfd is unsupported by ofproto class an 'unsupported' warning is
> displayed. No such warning is displayed for other unsupported
> protocols.
>
> Proposed fix:
> In the function:
> ofproto_port_set_bfd
>
> Change:
>
> if (error) {
>
If bfd is unsupported by ofproto class an 'unsupported' warning is displayed.
No such warning is displayed for other unsupported protocols.
Proposed fix:
In the function:
ofproto_port_set_bfd
Change:
if (error) {
VLOG_WARN(...)
To:
if (error && error != EOPNOTSUPP) {
VLOG_WARN