We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2543c9e commit fe55854Copy full SHA for fe55854
kernel-1100/src/lib.rs
@@ -53,6 +53,8 @@ impl okf::Kernel for Kernel {
53
const NOCPU: u32 = 0xff;
54
#[offset(0x1531F70)]
55
const VOP_READ: StaticMut<Self::VnodeOp>;
56
+ #[offset(0x1533A00)]
57
+ const VOP_READDIR: StaticMut<Self::VnodeOp>;
58
#[offset(0x1534360)]
59
const VOP_UNLOCK: StaticMut<Self::VnodeOp>;
60
src/lib.rs
@@ -59,6 +59,7 @@ pub trait Kernel: MappedKernel {
const MOUNTLIST_MTX: StaticMut<Self::Mtx>;
const NOCPU: u32;
61
62
63
64
65
type File: File;
0 commit comments