File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
src/lib/storage/vfs/rust/src Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -291,6 +291,7 @@ where
291
291
DirectoryAdminRequest :: Sync { responder } => {
292
292
responder. send ( ZX_ERR_NOT_SUPPORTED ) ?;
293
293
}
294
+ _ => { } // TODO(https://fxbug.dev/77623): Remove when the transition is complete.
294
295
}
295
296
Ok ( ConnectionState :: Alive )
296
297
}
Original file line number Diff line number Diff line change @@ -309,6 +309,7 @@ impl<T: 'static + File> FileConnection<T> {
309
309
fuchsia_trace:: duration!( "storage" , "File::AdvisoryLock" ) ;
310
310
responder. send ( & mut Err ( ZX_ERR_NOT_SUPPORTED ) ) ?;
311
311
}
312
+ _ => { } // TODO(https://fxbug.dev/77623): Remove when the transition is complete.
312
313
}
313
314
Ok ( ConnectionState :: Alive )
314
315
}
Original file line number Diff line number Diff line change @@ -459,6 +459,7 @@ impl VmoFileConnection {
459
459
FileRequest :: AdvisoryLock { request : _, responder } => {
460
460
responder. send ( & mut Err ( ZX_ERR_NOT_SUPPORTED ) ) ?;
461
461
}
462
+ _ => { } // TODO(https://fxbug.dev/77623): Remove when the transition is complete.
462
463
}
463
464
Ok ( ConnectionState :: Alive )
464
465
}
You can’t perform that action at this time.
0 commit comments