tape: make sure there is a filemark at the end of the tape

This commit is contained in:
Dietmar Maurer
2021-04-06 12:17:59 +02:00
parent 8b2c6f5dbc
commit 7b11a8098d
7 changed files with 75 additions and 20 deletions

View File

@ -215,13 +215,15 @@ impl TapeDriver for LtoTapeHandle {
}
/// Go to the end of the recorded media (for appending files).
fn move_to_eom(&mut self) -> Result<(), Error> {
self.sg_tape.move_to_eom()
fn move_to_eom(&mut self, write_missing_eof: bool) -> Result<(), Error> {
self.sg_tape.move_to_eom(write_missing_eof)
}
fn move_to_last_file(&mut self) -> Result<(), Error> {
self.move_to_eom()?;
self.move_to_eom(false)?;
self.sg_tape.check_filemark()?;
let pos = self.current_file_number()?;