mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-10 05:09:01 +00:00
hv: use int32_t replace int
Since it's typedef in "include/lib/types.h" Tracked-On: #861 Signed-off-by: Li, Fei1 <fei1.li@intel.com>
This commit is contained in:
@@ -44,7 +44,7 @@ struct ptirq_msi_info {
|
||||
uint32_t vmsi_data; /* virt msi_data */
|
||||
uint64_t pmsi_addr; /* phys msi_addr */
|
||||
uint32_t pmsi_data; /* phys msi_data */
|
||||
int is_msix; /* 0-MSI, 1-MSIX */
|
||||
int32_t is_msix; /* 0-MSI, 1-MSIX */
|
||||
};
|
||||
|
||||
/* entry per each allocated irq/vector
|
||||
|
@@ -32,9 +32,9 @@ void remove_vcpu_from_runqueue(struct acrn_vcpu *vcpu);
|
||||
void default_idle(void);
|
||||
|
||||
void make_reschedule_request(const struct acrn_vcpu *vcpu);
|
||||
int need_reschedule(uint16_t pcpu_id);
|
||||
int32_t need_reschedule(uint16_t pcpu_id);
|
||||
void make_pcpu_offline(uint16_t pcpu_id);
|
||||
int need_offline(uint16_t pcpu_id);
|
||||
int32_t need_offline(uint16_t pcpu_id);
|
||||
|
||||
void schedule(void);
|
||||
|
||||
|
Reference in New Issue
Block a user