From 146a91a45eba54097a8b33d9cc3e58df50baefbd Mon Sep 17 00:00:00 2001 From: Qingsong Chen Date: Thu, 20 Jun 2024 09:00:49 +0000 Subject: [PATCH] Upgrade trapframe Fix #842. Access FS/GS base with the FSGSBASE instructions. --- Cargo.lock | 2 +- framework/aster-frame/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fe33243b4..d500fd972 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1472,7 +1472,7 @@ dependencies = [ [[package]] name = "trapframe" version = "0.9.0" -source = "git+https://github.com/asterinas/trapframe-rs?rev=2f37590#2f375901398508edb554deb2f84749153a59bb4a" +source = "git+https://github.com/asterinas/trapframe-rs?rev=4739428#4739428fd51685c74e6e88e73e5f04cb89f465ee" dependencies = [ "log", "pod", diff --git a/framework/aster-frame/Cargo.toml b/framework/aster-frame/Cargo.toml index abba710ae..0a16d6a7f 100644 --- a/framework/aster-frame/Cargo.toml +++ b/framework/aster-frame/Cargo.toml @@ -30,7 +30,7 @@ pod = { git = "https://github.com/asterinas/pod", rev = "d7dba56" } spin = "0.9.4" static_assertions = "1.1.0" tdx-guest = { version = "0.1.0", optional = true } -trapframe = { git = "https://github.com/asterinas/trapframe-rs", rev = "2f37590" } +trapframe = { git = "https://github.com/asterinas/trapframe-rs", rev = "4739428" } unwinding = { version = "0.2.1", default-features = false, features = ["fde-gnu-eh-frame-hdr", "hide-trace", "panic", "personality", "unwinder"] } volatile = { version = "0.4.5", features = ["unstable"] }