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.
master
Anis Elleuch 5 years ago committed by Harshavardhana
parent b1ad99edbf
commit c18fbdb29a
  1. 4
      cmd/posix.go

@ -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
}

Loading…
Cancel
Save