Port to new kernel

This commit is contained in:
Jeremy Soller
2016-09-27 21:19:28 -06:00
parent b7608c1530
commit 11f3485173
9 changed files with 108 additions and 98 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
use system::error::Result;
use syscall::error::Result;
/// A disk
pub trait Disk {
+1 -1
View File
@@ -1,6 +1,6 @@
use std::cmp::min;
use system::error::{Result, Error, EEXIST, EISDIR, ENOENT, ENOSPC, ENOTDIR, ENOTEMPTY};
use syscall::error::{Result, Error, EEXIST, EISDIR, ENOENT, ENOSPC, ENOTDIR, ENOTEMPTY};
use super::{Disk, ExNode, Extent, Header, Node};
+1 -1
View File
@@ -4,7 +4,7 @@
#![deny(warnings)]
extern crate system;
extern crate syscall;
pub use self::disk::Disk;
pub use self::ex_node::ExNode;