Page MenuHomeFreeBSD

xen/intr: use __func__ instead of function names
ClosedPublic

Authored by ehem_freebsd_m5p.com on Mar 30 2021, 6:53 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 22, 10:06 AM
Unknown Object (File)
Sat, Apr 20, 1:54 AM
Unknown Object (File)
Fri, Mar 29, 1:41 AM
Unknown Object (File)
Mar 11 2024, 6:07 AM
Unknown Object (File)
Feb 12 2024, 10:16 PM
Unknown Object (File)
Jan 3 2024, 3:25 PM
Unknown Object (File)
Dec 30 2023, 10:34 AM
Unknown Object (File)
Dec 30 2023, 10:34 AM
Subscribers

Details

Summary

Functions tend to get renamed and unless the developer is careful often
debugging messages are missed. As such using func is far superior.
Replace several instances of hard-coded function names.

Diff Detail

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

Event Timeline

Simply some cleanup. While working with this file I observed several functions hard-coding their names into messages.

If you are going to make changes to these KASSERTS, I feel it would be better if they had a consistent format of: __func__: message

sys/x86/xen/xen_intr.c
1592

FreeBSD's style(9) prefers error != 0. Dropping the braces is fine.

I don't have a strong opinion on the rewording of the assert messages. @mhorne would you be OK if I commit this with the fixed error != 0 check?

This revision is now accepted and ready to land.Apr 6 2021, 2:49 PM

I don't have a strong opinion on the rewording of the assert messages. @mhorne would you be OK if I commit this with the fixed error != 0 check?

Sure, that's fine with me.