Rename systree to aster-systree

This commit is contained in:
Ruihan Li
2025-04-30 20:59:53 +08:00
committed by Tate, Hongliang Tian
parent f720c05706
commit 54bd64269b
10 changed files with 28 additions and 28 deletions

View File

@ -330,9 +330,9 @@ impl From<int_to_c_enum::TryFromIntError> for Error {
}
}
impl From<systree::Error> for Error {
fn from(err: systree::Error) -> Self {
use systree::Error::*;
impl From<aster_systree::Error> for Error {
fn from(err: aster_systree::Error) -> Self {
use aster_systree::Error::*;
match err {
NodeNotFound(_) => Error::new(Errno::ENOENT),
InvalidNodeOperation(_) => Error::new(Errno::EINVAL),