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 ac314c1 commit 4cdc7d6Copy full SHA for 4cdc7d6
kernel-1100/src/lib.rs
@@ -55,6 +55,8 @@ impl okf::Kernel for Kernel {
55
const MOUNTLIST_MTX: StaticMut<Self::Mtx>;
56
const NOCPU: u32 = 0xff;
57
const VDIR: c_int = 2;
58
+ #[offset(0x15308F0)]
59
+ const VOP_LOOKUP: StaticMut<Self::VnodeOp>;
60
#[offset(0x1531F70)]
61
const VOP_READ: StaticMut<Self::VnodeOp>;
62
#[offset(0x1533A00)]
src/lib.rs
@@ -62,6 +62,7 @@ pub trait Kernel: MappedKernel {
63
const NOCPU: u32;
64
const VDIR: c_int;
65
66
67
const VOP_READDIR: StaticMut<Self::VnodeOp>;
68
const VOP_UNLOCK: StaticMut<Self::VnodeOp>;
0 commit comments