File tree Expand file tree Collapse file tree 2 files changed +0
-30
lines changed Expand file tree Collapse file tree 2 files changed +0
-30
lines changed Original file line number Diff line number Diff line change @@ -379,11 +379,6 @@ impl<S: BitmapSlice + Send + Sync> AsyncFileSystem for PassthroughFs<S> {
379
379
// and results in EBADF.
380
380
match InodeMap::get_alt_locked(inodes.deref(), &ids_altkey, handle_altkey.as_ref()) {
381
381
Some(data) => {
382
- trace!(
383
- "fuse: do_lookup sees existing inode {} ids_altkey {:?}",
384
- data.inode,
385
- ids_altkey
386
- );
387
382
data.refcount.fetch_add(1, Ordering::Relaxed);
388
383
data.inode
389
384
}
@@ -396,12 +391,6 @@ impl<S: BitmapSlice + Send + Sync> AsyncFileSystem for PassthroughFs<S> {
396
391
format!("max inode number reached: {}", VFS_MAX_INO),
397
392
));
398
393
}
399
- trace!(
400
- "fuse: do_lookup adds new inode {} ids_altkey {:?} handle_altkey {:?}",
401
- inode,
402
- ids_altkey,
403
- handle_altkey
404
- );
405
394
406
395
InodeMap::insert_locked(
407
396
inodes.deref_mut(),
Original file line number Diff line number Diff line change @@ -939,11 +939,6 @@ impl<S: BitmapSlice + Send + Sync> PassthroughFs<S> {
939
939
// and results in EBADF.
940
940
match InodeMap :: get_alt_locked ( inodes. deref ( ) , & ids_altkey, handle_opt) {
941
941
Some ( data) => {
942
- trace ! (
943
- "fuse: do_lookup sees existing inode {} ids_altkey {:?}" ,
944
- data. inode,
945
- ids_altkey
946
- ) ;
947
942
data. refcount . fetch_add ( 1 , Ordering :: Relaxed ) ;
948
943
data. inode
949
944
}
@@ -956,12 +951,6 @@ impl<S: BitmapSlice + Send + Sync> PassthroughFs<S> {
956
951
format ! ( "max inode number reached: {VFS_MAX_INO}" ) ,
957
952
) ) ;
958
953
}
959
- trace ! (
960
- "fuse: do_lookup adds new inode {} ids_altkey {:?} handle {:?}" ,
961
- inode,
962
- ids_altkey,
963
- handle_opt,
964
- ) ;
965
954
966
955
InodeMap :: insert_locked (
967
956
inodes. deref_mut ( ) ,
@@ -1012,14 +1001,6 @@ impl<S: BitmapSlice + Send + Sync> PassthroughFs<S> {
1012
1001
// we don't want misbehaving clients to cause integer overflow.
1013
1002
let new = curr. saturating_sub ( count) ;
1014
1003
1015
- trace ! (
1016
- "fuse: forget inode {} refcount {}, count {}, new_count {}" ,
1017
- inode,
1018
- curr,
1019
- count,
1020
- new
1021
- ) ;
1022
-
1023
1004
// Synchronizes with the acquire load in `do_lookup`.
1024
1005
if data
1025
1006
. refcount
You can’t perform that action at this time.
0 commit comments