Page MenuHomeFreeBSD

Attempt to address lagg race in PR234864
AbandonedPublic

Authored by shurd on Jan 16 2019, 10:34 PM.
Tags
None
Referenced Files
F132468607: D18861.id52902.diff
Fri, Oct 17, 4:44 AM
Unknown Object (File)
Tue, Oct 14, 9:46 PM
Unknown Object (File)
Mon, Oct 13, 5:42 AM
Unknown Object (File)
Thu, Oct 2, 3:29 AM
Unknown Object (File)
Tue, Sep 30, 2:15 PM
Unknown Object (File)
Sep 17 2025, 12:27 AM
Unknown Object (File)
Aug 21 2025, 3:46 AM
Unknown Object (File)
Aug 14 2025, 7:58 PM
Subscribers

Details

Reviewers
mmacy
Summary

A naive look at the if_lagg.c race suggests that extending
the RLOCK coverage over the entire transaction may resolve the problem.

Test Plan

Patch added to PR234846 for testing

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 21989
Build 21223: arc lint + arc unit

Event Timeline

RLOCK() before setting ifp->if_type

Can you explain your goal? Not sure what you are trying to solve with this rlock. Please, note that LAGG_RLOCK() is epoch_enter() and it seem used to make safe lagg_port reclamation using epoch_call().

So the basic goal is to have the test at sys/net/if_ethersubr.c:583 see a consistent state of the changes from the /* Change the interface type */ line to the lagg_proto_addport() line.

The naive thinking that led to this was "Oh, there's something with LOCK in it inside that block, maybe if I just expand the coverage of that, everything will be fine."

I'm taking a real look at the problem now.