File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -59,17 +59,14 @@ impl<F: FileSystem + Sync> Server<F> {
59
59
}
60
60
61
61
#[ cfg( feature = "fusedev" ) ]
62
- /// Send a resend notification message to the kernel via FUSE. This function should be invoked as part of
63
- /// the crash recovery routine. Given that FUSE initialization does not occur again during recovery,
64
- /// the capability to support resend notifications may not be automatically detected. It is the responsibility
62
+ /// Send a resend notification message to the kernel via FUSE. This function should be invoked as part of
63
+ /// the crash recovery routine. Given that FUSE initialization does not occur again during recovery,
64
+ /// the capability to support resend notifications may not be automatically detected. It is the responsibility
65
65
/// of the upper layers to verify and persist the kernel's support for this feature upon the initial FUSE setup.
66
- pub fn notify_resend < S : BitmapSlice > (
67
- & self ,
68
- mut w : FuseDevWriter < ' _ , S > ,
69
- ) -> Result < ( ) > {
66
+ pub fn notify_resend < S : BitmapSlice > ( & self , mut w : FuseDevWriter < ' _ , S > ) -> Result < ( ) > {
70
67
let mut buffer_writer = w. split_at ( 0 ) . map_err ( Error :: FailedToSplitWriter ) ?;
71
68
let header = {
72
- OutHeader {
69
+ OutHeader {
73
70
unique : 0 ,
74
71
error : NotifyOpcode :: Resend as i32 ,
75
72
..Default :: default ( )
You can’t perform that action at this time.
0 commit comments