Details
Details
- Reviewers
whu zlei - Commits
- rG4db5958a0691: Mechanically convert if_hn(4) to IfAPI
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Skipped - Unit
Tests Skipped - Build Status
Buildable 48867 Build 45756: arc lint + arc unit
Event Timeline
sys/dev/hyperv/netvsc/if_hn.c | ||
---|---|---|
956 | in if_llmaddr_count() there's check against AF_LINK, is this line change identical ? u_int if_llmaddr_count(if_t ifp) { ... CK_STAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) if (ifma->ifma_addr->sa_family == AF_LINK) count++; ... return (count); } | |
1359 | Set flags to wrong if. Should be VF. | |
1925 | "in transparent VF mode.\n" is truncated. | |
1948 | Should use if_name() | |
1967 | if_getinputfn() | |
2070 | ||
2101 | SYSCTL_ADD_UINT(ctx, child, OID_AUTO, "tso_max", CTLFLAG_RD, &ifp->if_hw_tsomax, 0, "max TSO size"); tso_max sysctl node is readonly, is if_sethwtsomax() really needed ? | |
2120 | Ditto | |
2139 | Ditto | |
4109 | CC @whu | |
5878 | Atomics @whu |
Comment Actions
Update diff after (several) rebases. Intended to do this 2 months ago. I hope I've addressed everything.