update procfs to v0.0.2 (#1376)
Signed-off-by: Paul Gier <pgier@redhat.com>
This commit is contained in:
parent
0759c0ac01
commit
2bc133cd48
33 changed files with 167 additions and 172 deletions
6
vendor/github.com/prometheus/procfs/bcache/get.go
generated
vendored
6
vendor/github.com/prometheus/procfs/bcache/get.go
generated
vendored
|
|
@ -32,6 +32,12 @@ type FS struct {
|
|||
sys *fs.FS
|
||||
}
|
||||
|
||||
// NewDefaultFS returns a new Bcache using the default sys fs mount point. It will error
|
||||
// if the mount point can't be read.
|
||||
func NewDefaultFS() (FS, error) {
|
||||
return NewFS(fs.DefaultSysMountPoint)
|
||||
}
|
||||
|
||||
// NewFS returns a new Bcache using the given sys fs mount point. It will error
|
||||
// if the mount point can't be read.
|
||||
func NewFS(mountPoint string) (FS, error) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue