xen/intr: correct type of evtchn_enabled

evtchn_enabled needs to match the type of Xen's evtchn_mask.  As Xen's
headers have a type for this, use Xen's type.

Reviewed by: royger
This commit is contained in:
Elliott Mitchell 2023-12-02 07:29:43 -08:00 committed by Roger Pau Monné
parent ea9a9b122d
commit ed917e0fae

View file

@ -84,7 +84,7 @@ struct xen_intr_pcpu_data {
* A bitmap of ports that can be serviced from this CPU.
* A set bit means interrupt handling is enabled.
*/
u_long evtchn_enabled[sizeof(u_long) * 8];
xen_ulong_t evtchn_enabled[sizeof(xen_ulong_t) * 8];
};
/*