File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -200,6 +200,9 @@ impl okf::Kernel for Kernel {
200
200
#[ offset( 0x37BC60 ) ]
201
201
unsafe fn vfs_unbusy ( self , mp : * mut Self :: Mount ) ;
202
202
203
+ #[ offset( 0x12D870 ) ]
204
+ unsafe fn vop_lookup ( self , vec : * mut Self :: VopVector , args : * mut Self :: VopLookup ) -> c_int ;
205
+
203
206
#[ offset( 0x12E7E0 ) ]
204
207
unsafe fn vop_read ( self , vec : * mut Self :: VopVector , args : * mut Self :: VopRead ) -> c_int ;
205
208
Original file line number Diff line number Diff line change @@ -251,6 +251,11 @@ pub trait Kernel: MappedKernel {
251
251
/// `mp` cannot be null.
252
252
unsafe fn vfs_unbusy ( self , mp : * mut Self :: Mount ) ;
253
253
254
+ /// # Safety
255
+ /// - `vec` cannot be null.
256
+ /// - `args` cannot be null.
257
+ unsafe fn vop_lookup ( self , vec : * mut Self :: VopVector , args : * mut Self :: VopLookup ) -> c_int ;
258
+
254
259
/// # Safety
255
260
/// - `vec` cannot be null.
256
261
/// - `args` cannot be null.
You can’t perform that action at this time.
0 commit comments