Skip to content

Commit fe55854

Browse files
committed
Adds vop_readdir_desc
1 parent 2543c9e commit fe55854

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

kernel-1100/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ impl okf::Kernel for Kernel {
5353
const NOCPU: u32 = 0xff;
5454
#[offset(0x1531F70)]
5555
const VOP_READ: StaticMut<Self::VnodeOp>;
56+
#[offset(0x1533A00)]
57+
const VOP_READDIR: StaticMut<Self::VnodeOp>;
5658
#[offset(0x1534360)]
5759
const VOP_UNLOCK: StaticMut<Self::VnodeOp>;
5860

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ pub trait Kernel: MappedKernel {
5959
const MOUNTLIST_MTX: StaticMut<Self::Mtx>;
6060
const NOCPU: u32;
6161
const VOP_READ: StaticMut<Self::VnodeOp>;
62+
const VOP_READDIR: StaticMut<Self::VnodeOp>;
6263
const VOP_UNLOCK: StaticMut<Self::VnodeOp>;
6364

6465
type File: File;

0 commit comments

Comments
 (0)