mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
Fix lint issues on filesystem BSD implementation
This commit is contained in:
parent
6580c95305
commit
7b93b52010
|
@ -34,7 +34,7 @@ import "C"
|
|||
const (
|
||||
defIgnoredMountPoints = "^/(dev)($|/)"
|
||||
defIgnoredFSTypes = "^devfs$"
|
||||
MNT_RDONLY = 0x1
|
||||
readOnly = 0x1 // MNT_RDONLY
|
||||
)
|
||||
|
||||
// Expose filesystem fullness.
|
||||
|
@ -62,7 +62,7 @@ func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
|
|||
}
|
||||
|
||||
var ro float64
|
||||
if (mnt[i].f_flags & MNT_RDONLY) != 0 {
|
||||
if (mnt[i].f_flags & readOnly) != 0 {
|
||||
ro = 1
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue