Page MenuHomeFreeBSD

Eliminate misleading comments and dead code in lacp_port_create()
ClosedPublic

Authored by rpokala on Jan 23 2017, 8:19 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 16, 5:45 PM
Unknown Object (File)
Sat, Apr 11, 2:34 PM
Unknown Object (File)
Fri, Apr 10, 6:18 AM
Unknown Object (File)
Sun, Apr 5, 8:23 AM
Unknown Object (File)
Sat, Apr 4, 2:43 PM
Unknown Object (File)
Sat, Apr 4, 1:54 PM
Unknown Object (File)
Sat, Mar 28, 10:57 AM
Unknown Object (File)
Fri, Mar 27, 8:11 PM
Subscribers

Details

Summary

Variables "fast" and "active" are both constant in lacp_port_create(), but
comments mispleadingly suggest that "fast" can be changed via ioctl. The
constant values control the value of "lp->lp_state", so it too is constant,
and the code for assigning different value to it is essentially dead.

Remove both "fast" and "active", and set "lp->lp_state" unconditionally;
that gets rid of the dead code and misleading comments.

CID: 1305692
CID: 1305734

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

rpokala retitled this revision from to Eliminate misleading comments and dead code in lacp_port_create().
rpokala updated this object.
rpokala edited the test plan for this revision. (Show Details)
rpokala added a reviewer: hiren.
rpokala added a subscriber: asomers.
hiren edited subscribers, added: hiren; removed: asomers.
asomers edited edge metadata.
This revision is now accepted and ready to land.Jan 23 2017, 3:36 PM

Thanks. I'm tinderboxing right now, will submit when that's done.

This revision was automatically updated to reflect the committed changes.