Page MenuHomeFreeBSD

bhyve: Register new kevents synchronously.
ClosedPublic

Authored by jhb on May 27 2021, 1:24 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Oct 2, 11:07 AM
Unknown Object (File)
Tue, Oct 1, 5:17 AM
Unknown Object (File)
Mon, Sep 30, 3:59 PM
Unknown Object (File)
Mon, Sep 30, 2:35 PM
Unknown Object (File)
Fri, Sep 27, 5:35 PM
Unknown Object (File)
Fri, Sep 27, 2:05 AM
Unknown Object (File)
Thu, Sep 19, 1:45 AM
Unknown Object (File)
Wed, Sep 18, 10:08 AM

Details

Summary

Change mevent_add*() to synchronously add the new kevent. This
permits reporting event registration failures to the caller and avoids
failing the registration of other, unrelated events queued up in the
same batch.

Diff Detail

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

Event Timeline

jhb requested review of this revision.May 27 2021, 1:24 PM
markj added a subscriber: markj.
markj added inline comments.
usr.sbin/bhyve/mevent.c
465

Perhaps assert that no error occurred, or cast the return value away.

This revision is now accepted and ready to land.Jun 2 2021, 3:58 PM
usr.sbin/bhyve/mevent.c
465

bhyve is pretty consistent about assuming no errors from mutexes, condvars, and once and not using either void casts or assertions of that (e.g. there's a once in block_if.c), so I think this is consistent with the rest of bhyve.

This revision was automatically updated to reflect the committed changes.