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 42bab58 commit 0ff5267Copy full SHA for 0ff5267
kernel-1100/src/lib.rs
@@ -51,6 +51,8 @@ impl okf::Kernel for Kernel {
51
#[offset(0x22D0F10)]
52
const MOUNTLIST_MTX: StaticMut<Self::Mtx>;
53
const NOCPU: u32 = 0xff;
54
+ #[offset(0x1531F70)]
55
+ const VOP_READ: StaticMut<Self::VnodeOp>;
56
#[offset(0x1534360)]
57
const VOP_UNLOCK: StaticMut<Self::VnodeOp>;
58
src/lib.rs
@@ -59,6 +59,7 @@ pub trait Kernel: MappedKernel {
59
const MOUNTLIST: StaticMut<TailQueue<Self::Mount>>;
60
61
const NOCPU: u32;
62
63
64
65
type File: File;
0 commit comments