posix: Remove a non needed nil check in DiskInfo() (#8830)

posix.DiskInfo() returns errFaultyDisk when posix is nil,
but there is no way that this would happen any time, therefore
removing un-needed code.
This commit is contained in:
Anis Elleuch 2020-01-16 20:27:50 +01:00 committed by Harshavardhana
parent b1ad99edbf
commit c18fbdb29a

View File

@ -440,10 +440,6 @@ func (s *posix) DiskInfo() (info DiskInfo, err error) {
}
}()
if s == nil {
return info, errFaultyDisk
}
if atomic.LoadInt32(&s.ioErrCount) > maxAllowedIOError {
return info, errFaultyDisk
}