File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ interrupt_handler_%1:
68
68
; call the generic interrupt handler
69
69
call generic_interrupt_handler
70
70
71
- ; pop the error code and interrupt number
71
+ ; pop the error code
72
72
add rsp , 8
73
73
74
74
; pop the preserved registers
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ use alloc::vec::Vec;
27
27
28
28
use spin:: { Mutex , RwLock } ;
29
29
30
+ use crate :: fs:: cache:: DirCacheImpl ;
31
+
30
32
use super :: cache:: { DirCacheItem , INodeCacheItem } ;
31
33
use super :: inode:: FileType ;
32
34
use super :: FileSystemError ;
@@ -205,9 +207,9 @@ impl FileTable {
205
207
for handle in files. iter ( ) {
206
208
if let Some ( handle) = handle {
207
209
log:: debug!(
208
- "file handle: (fd={}, name={} )" ,
210
+ "file handle: (fd={}, path=`{}` )" ,
209
211
handle. fd,
210
- handle. inode. name ( )
212
+ handle. inode. absolute_path_str ( )
211
213
)
212
214
}
213
215
}
You can’t perform that action at this time.
0 commit comments