Ensure unlock occurs on panic in reader
This commit is contained in:
parent
dd1ca6f514
commit
a22150ab61
|
@ -246,6 +246,11 @@ func (r *reader) readOnceAt(ctx context.Context, b []byte, pos int64) (n int, er
|
|||
return
|
||||
}
|
||||
r.t.cl.lock()
|
||||
// I think there's a panic here caused by the Client being closed before obtaining this
|
||||
// lock. TestDropTorrentWithMmapStorageWhileHashing seems to tickle occasionally in CI.
|
||||
func() {
|
||||
// Just add exceptions already.
|
||||
defer r.t.cl.unlock()
|
||||
// TODO: Just reset pieces in the readahead window. This might help
|
||||
// prevent thrashing with small caches and file and piece priorities.
|
||||
r.log(log.Fstr("error reading torrent %s piece %d offset %d, %d bytes: %v",
|
||||
|
@ -262,7 +267,7 @@ func (r *reader) readOnceAt(ctx context.Context, b []byte, pos int64) (n int, er
|
|||
for index := r.pieces.begin + 1; index < r.pieces.end; index++ {
|
||||
r.t.updatePieceCompletion(index)
|
||||
}
|
||||
r.t.cl.unlock()
|
||||
}()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue