Skip to content

Commit

Permalink
Merge branch 'main' of github.com:dell/gofsutil into feature/release-…
Browse files Browse the repository at this point in the history
…automation
  • Loading branch information
harishp8889 committed Oct 8, 2024
2 parents ccfa7ea + 33db64f commit 100c2f6
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 5 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/go-version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0

# Reusable workflow to perform go version update on Golang based projects
name: Go Version Update

on:
workflow_dispatch:
repository_dispatch:
types: [go-update-workflow]

jobs:
# go version update
go-version-update:
uses: dell/common-github-actions/.github/workflows/go-version-workflow.yaml@main
name: Go Version Update
secrets: inherit
12 changes: 9 additions & 3 deletions gofsutil_fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,21 @@ func (fs *FS) fsInfo(_ context.Context, path string) (int64, int64, int64, int64
}

// Available is blocks available * fragment size
available := int64(statfs.Bavail) * int64(statfs.Bsize)
// #nosec G115
available := int64(statfs.Bavail) * statfs.Bsize

// Capacity is total block count * fragment size
capacity := int64(statfs.Blocks) * int64(statfs.Bsize)
// #nosec G115
capacity := int64(statfs.Blocks) * statfs.Bsize

// Usage is block being used * fragment size (aka block size).
usage := (int64(statfs.Blocks) - int64(statfs.Bfree)) * int64(statfs.Bsize)
// #nosec G115
usage := (int64(statfs.Blocks) - int64(statfs.Bfree)) * statfs.Bsize

// #nosec G115
inodes := int64(statfs.Files)

// #nosec G115
inodesFree := int64(statfs.Ffree)
inodesUsed := inodes - inodesFree

Expand Down
3 changes: 1 addition & 2 deletions gofsutil_mount_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -571,8 +571,7 @@ func (fs *FS) multipathCommand(ctx context.Context, timeoutSeconds time.Duration
log.Error("multipath command failed: " + err.Error())
}
if len(textBytes) > 0 {
data := string(textBytes)
log.Debug("multipath output:", data)
log.Debug(fmt.Printf("multipath output: %s", string(textBytes)))
}
return textBytes, err
}
Expand Down

0 comments on commit 100c2f6

Please sign in to comment.