Page MenuHomeFreeBSD

xen/intr: remove xen_intr_alloc_and_bind_ipi() from !x86
AbandonedPublic

Authored by ehem_freebsd_m5p.com on Jun 1 2021, 6:53 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 27 2024, 8:29 AM
Unknown Object (File)
Jan 2 2024, 10:11 AM
Unknown Object (File)
Dec 30 2023, 6:34 PM
Unknown Object (File)
Dec 30 2023, 9:43 AM
Unknown Object (File)
Dec 20 2023, 6:46 AM
Unknown Object (File)
Dec 9 2023, 11:13 PM
Unknown Object (File)
Nov 16 2023, 9:35 AM
Unknown Object (File)
Sep 6 2023, 7:06 AM
Subscribers

Details

Summary

xen_intr_alloc_and_bind_ipi() is strictly used on x86, other
architectures do not need the function. The functionality is tied to
the core of the Xen interrupt handling and thus needs to remain in
sys/xen/xen_intr.c.

Diff Detail

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

Event Timeline

Appears xen_intr_alloc_and_bind_ipi() was originally pulled to make getting things working easier. Appears it does in fact build on other architectures, but it isn't needed elsewhere. One can argue for or against pulling it on other architectures.

Moving the declaration removal to D30605. Though this does really make D30605 and D29913 rather small. Used to be larger until the PVHv1 removal.