Commit a5e236db authored by Jan Lindström's avatar Jan Lindström

Add additional srv_use_fallocate guard for completing the IO with

read.
parent 57a70a63
...@@ -5034,7 +5034,11 @@ complete_io: ...@@ -5034,7 +5034,11 @@ complete_io:
dispatched read operation is enough here. Without this dispatched read operation is enough here. Without this
there will be assertion at shutdown indicating that there will be assertion at shutdown indicating that
all IO is not completed. */ all IO is not completed. */
if (srv_use_posix_fallocate) {
fil_node_complete_io(node, fil_system, OS_FILE_READ); fil_node_complete_io(node, fil_system, OS_FILE_READ);
} else {
fil_node_complete_io(node, fil_system, OS_FILE_WRITE);
}
#else #else
fil_node_complete_io(node, fil_system, OS_FILE_WRITE); fil_node_complete_io(node, fil_system, OS_FILE_WRITE);
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment