Details
Details
- Reviewers
kib
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 50491 Build 47382: arc lint + arc unit
Event Timeline
Comment Actions
- Block all blockable signals on the thread start.
- You need to handle a situation where the netlink thread goes away while you are trying to schedule a task for it
- Are netlink socket passable between processes? What should happen if you pass the socket and the receiving process start issuing requests to the other process' socket?
| sys/netlink/netlink_domain.c | ||
|---|---|---|
| 49 | Properly move this to the include block above. But why do you need this header at all? | |
| 279 | I think these blank lines are not needed. | |
| sys/netlink/netlink_io.c | ||
| 313 | for (;;) { | |
| 315 | if (error != 0 || thread_check_susp(curthread, true) != 0)
NLP_LOCK();
break;
} | |