mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 21:06:48 +00:00
Enable interrupts when go back with UserEvent::Expcetion
This commit is contained in:
parent
9cad3d7252
commit
207bc1e4c2
@ -98,6 +98,7 @@ impl UserContextApiInternal for UserContext {
|
||||
call_irq_callback_functions(&self.into_trap_frame());
|
||||
}
|
||||
|
||||
crate::arch::irq::enable_interrupts();
|
||||
if self.user_context.trap_num as u16 != SYSCALL_TRAPNUM {
|
||||
self.trap_information = TrapInformation {
|
||||
cr2: unsafe { x86::controlregs::cr2() },
|
||||
@ -106,7 +107,6 @@ impl UserContextApiInternal for UserContext {
|
||||
};
|
||||
UserEvent::Exception
|
||||
} else {
|
||||
crate::arch::irq::enable_interrupts();
|
||||
UserEvent::Syscall
|
||||
}
|
||||
}
|
||||
|
@ -1,20 +1,20 @@
|
||||
// Modified from input.rs in virtio-drivers project
|
||||
//
|
||||
//
|
||||
// MIT License
|
||||
//
|
||||
//
|
||||
// Copyright (c) 2022-2023 Ant Group
|
||||
// Copyright (c) 2019-2020 rCore Developers
|
||||
//
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all
|
||||
// copies or substantial portions of the Software.
|
||||
//
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
@ -22,7 +22,7 @@
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
// SOFTWARE.
|
||||
//
|
||||
//
|
||||
|
||||
pub mod device;
|
||||
use jinux_pci::{capability::vendor::virtio::CapabilityVirtioData, util::BAR};
|
||||
|
@ -131,7 +131,7 @@ pub fn handle_user_signal(
|
||||
|
||||
// Set up signal stack in user stack,
|
||||
// to avoid corrupting user stack, we minus 128 first.
|
||||
let mut user_rsp = context.gp_regs.rsp() as u64;
|
||||
let mut user_rsp = context.rsp() as u64;
|
||||
user_rsp = user_rsp - 128;
|
||||
|
||||
// 1. write siginfo_t
|
||||
|
Loading…
x
Reference in New Issue
Block a user