Page MenuHomeFreeBSD

KASSERT(9): add assertion message guidelines
ClosedPublic

Authored by mhorne on Mar 19 2024, 5:44 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Apr 26, 4:22 AM
Unknown Object (File)
Mon, Apr 22, 9:57 AM
Unknown Object (File)
Fri, Apr 5, 6:16 PM
Unknown Object (File)
Fri, Apr 5, 8:17 AM
Unknown Object (File)
Fri, Apr 5, 6:22 AM
Unknown Object (File)
Mar 26 2024, 10:44 AM
Unknown Object (File)
Mar 20 2024, 10:41 PM
Unknown Object (File)
Mar 20 2024, 3:07 PM
Subscribers

Details

Summary

Add some text describing how to create useful assertion messages.

Improve and add to the EXAMPLES.

Diff Detail

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

Event Timeline

emaste added subscribers: jhb, emaste.

This looks good to me

share/man/man9/KASSERT.9
93

I think retconning MPASS to "must pass" is fine, but I assume it originated as multiprocessor assert -- @jhb?

This revision is now accepted and ready to land.Mar 19 2024, 6:09 PM
share/man/man9/KASSERT.9
93

For reference MPASS originated in rG:0384fff8c5b09

I really wish we could transition KASSERT gracefully to using __VA_ARGS__ and away from the nested ()'s, but I'm not sure of a good way to permit both syntaxes concurrently.

share/man/man9/KASSERT.9
93

Yes, it came from BSD/OS as "multi-processor assert".

In D44434#1013310, @jhb wrote:

I really wish we could transition KASSERT gracefully to using __VA_ARGS__ and away from the nested ()'s, but I'm not sure of a good way to permit both syntaxes concurrently.

I had a student use an interesting mix of _Generic and VA_ARGS to accomplish similar things, but you'd have to make some assumption... I'll see if I can tweak something...

share/man/man9/KASSERT.9
5

2023-2024 please.

81

I wish we had a variation that would always be on, for tests that are super cheap... We have NASSERT at work, but the N I think is for Netflix not something clever.

93

I read it as Must Pass, even though I know its some MP thing... Maybe just note its BSD/OS + Multi-processor history with a ret-con to must pass :)

107

Do we want to add explicitly they should be useful without the result core file?

Thank you!
Can we also adjust the comment above MPASS() in the header file?

share/man/man9/KASSERT.9
184

\n

mhorne marked 3 inline comments as done.

Handle minor review feedback.

This revision now requires review to proceed.Mar 20 2024, 2:42 PM
In D44434#1013418, @bz wrote:

Thank you!
Can we also adjust the comment above MPASS() in the header file?

Great point, handled in D44438.

share/man/man9/KASSERT.9
93

Now captured in D44439.

107

Good suggestion, I have incorporated this.

184

Not required for KASSERT.

This revision is now accepted and ready to land.Mar 20 2024, 2:59 PM
This revision was automatically updated to reflect the committed changes.