Extract TRights into crate jinux_rights

This commit is contained in:
Yuke Peng
2023-05-30 04:09:20 -07:00
committed by Tate, Hongliang Tian
parent 3471843793
commit 0c9495b726
29 changed files with 122 additions and 70 deletions

View File

@ -138,11 +138,9 @@ mod test {
use crate::vm::page_fault_handler::PageFaultHandler;
use crate::vm::perms::VmPerms;
use crate::vm::vmo::VmoRightsOp;
use crate::{
rights::Full,
vm::{vmar::ROOT_VMAR_HIGHEST_ADDR, vmo::VmoOptions},
};
use crate::vm::{vmar::ROOT_VMAR_HIGHEST_ADDR, vmo::VmoOptions};
use jinux_frame::vm::VmIo;
use jinux_rights::Full;
#[test]
fn root_vmar() {