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