Page MenuHomeFreeBSD

Mechanically convert neta(4) to DrvAPI
ClosedPublic

Authored by jhibbits on Dec 22 2022, 3:32 PM.
Tags
None
Referenced Files
F98979281: D37825.diff
Sat, Oct 5, 3:22 PM
Unknown Object (File)
Fri, Oct 4, 8:26 AM
Unknown Object (File)
Tue, Oct 1, 3:19 PM
Unknown Object (File)
Tue, Oct 1, 2:43 PM
Unknown Object (File)
Mon, Sep 30, 1:53 PM
Unknown Object (File)
Mon, Sep 30, 4:09 AM
Unknown Object (File)
Sat, Sep 28, 5:57 PM
Unknown Object (File)
Fri, Sep 27, 4:00 PM
Subscribers

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

mw requested changes to this revision.Jan 9 2023, 3:04 PM
mw added inline comments.
sys/dev/neta/if_mvneta.c
936

Erroneous line removal.

943

ditto

2095

Can these 2 lines be wrapped into 1:
if_setcapenablebit(ifp, IFCAP_HWCSUM & ifr->ifr_reqcap, IFCAP_HWCSUM);
?

2154

While at it, can you please fix line breaking?

3266

While at it, please add missing spaces around |

This revision now requires changes to proceed.Jan 9 2023, 3:04 PM
sys/dev/neta/if_mvneta.c
936

For other CTR* entries ifp->if_xname was updated to if_name(sc->ifp) - please do the same here for consistency.

943

For other CTR* entries ifp->if_xname was updated to if_name(sc->ifp) - please do the same here for consistency.

2095

?

sys/dev/neta/if_mvneta.c
2095

Not as it's currently implemented. It currently sets the "set" mask, then clears the "clear" mask, which is the opposite direction of this.

This revision is now accepted and ready to land.Jan 10 2023, 9:25 AM
This revision was automatically updated to reflect the committed changes.