mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-24 02:08:04 +00:00
HV: Remove INIT signal notification related code
We don't use INIT signal notification method now. This patch removes them. Tracked-On: #3886 Acked-by: Eddie Dong <eddie.dong@intel.com> Signed-off-by: Kaige Fu <kaige.fu@intel.com>
This commit is contained in:
@@ -123,7 +123,7 @@ struct thread_object *sched_get_current(uint16_t pcpu_id)
|
||||
}
|
||||
|
||||
/**
|
||||
* @pre delmode == DEL_MODE_IPI || delmode == DEL_MODE_INIT || delmode == DEL_MODE_NMI
|
||||
* @pre delmode == DEL_MODE_IPI || delmode == DEL_MODE_NMI
|
||||
*/
|
||||
void make_reschedule_request(uint16_t pcpu_id, uint16_t delmode)
|
||||
{
|
||||
@@ -135,9 +135,6 @@ void make_reschedule_request(uint16_t pcpu_id, uint16_t delmode)
|
||||
case DEL_MODE_IPI:
|
||||
send_single_ipi(pcpu_id, VECTOR_NOTIFY_VCPU);
|
||||
break;
|
||||
case DEL_MODE_INIT:
|
||||
send_single_init(pcpu_id);
|
||||
break;
|
||||
case DEL_MODE_NMI:
|
||||
send_single_nmi(pcpu_id);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user