File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -186,11 +186,11 @@ impl okf::Kernel for Kernel {
186
186
#[ offset( 0x37BC60 ) ]
187
187
unsafe fn vfs_unbusy ( self , mp : * mut Self :: Mount ) ;
188
188
189
- #[ offset( 0x37E9B0 ) ]
190
- unsafe fn vput ( self , vp : * mut Self :: Vnode ) ;
191
-
192
189
#[ offset( 0x1300A0 ) ]
193
190
unsafe fn vop_unlock ( self , vec : * mut Self :: VopVector , args : * mut Self :: VopUnlock ) -> c_int ;
191
+
192
+ #[ offset( 0x37E9B0 ) ]
193
+ unsafe fn vput ( self , vp : * mut Self :: Vnode ) ;
194
194
}
195
195
196
196
unsafe impl Send for Kernel { }
Original file line number Diff line number Diff line change @@ -239,14 +239,14 @@ pub trait Kernel: MappedKernel {
239
239
/// `mp` cannot be null.
240
240
unsafe fn vfs_unbusy ( self , mp : * mut Self :: Mount ) ;
241
241
242
- /// # Safety
243
- /// `vp` cannot be null and must be locked.
244
- unsafe fn vput ( self , vp : * mut Self :: Vnode ) ;
245
-
246
242
/// # Safety
247
243
/// - `vec` cannot be null.
248
244
/// - `args` cannot be null.
249
245
unsafe fn vop_unlock ( self , vec : * mut Self :: VopVector , args : * mut Self :: VopUnlock ) -> c_int ;
246
+
247
+ /// # Safety
248
+ /// `vp` cannot be null and must be locked.
249
+ unsafe fn vput ( self , vp : * mut Self :: Vnode ) ;
250
250
}
251
251
252
252
/// Mapped PS4 kernel in the memory.
You can’t perform that action at this time.
0 commit comments