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)
Feb 19 2024, 1:42 PM
Unknown Object (File)
Feb 12 2024, 5:25 AM
Unknown Object (File)
Feb 10 2024, 7:49 AM
Unknown Object (File)
Jan 31 2024, 5:04 AM
Unknown Object (File)
Dec 20 2023, 1:47 AM
Unknown Object (File)
Dec 16 2023, 6:33 AM
Unknown Object (File)
Dec 4 2023, 1:52 AM
Unknown Object (File)
Nov 30 2023, 4:56 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 Passed
Unit
No Test Coverage
Build Status
Buildable 6965
Build 7150: arc lint + arc unit

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.