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)
Sep 12 2024, 6:03 PM
Unknown Object (File)
Aug 29 2024, 5:03 PM
Unknown Object (File)
Aug 29 2024, 5:03 PM
Unknown Object (File)
Aug 29 2024, 5:03 PM
Unknown Object (File)
Aug 29 2024, 4:41 PM
Unknown Object (File)
Aug 19 2024, 10:24 PM
Unknown Object (File)
Aug 14 2024, 5:16 AM
Unknown Object (File)
Aug 13 2024, 6:24 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.