summaryrefslogtreecommitdiff
path: root/cmd/btrfs-fsck
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2022-06-11 22:30:35 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2022-06-11 22:38:48 -0600
commit6fc5d416a289235dd4bb56d29fb96c5a003ea89f (patch)
treee35bb16c46c2ad8d8563b42e12a1e95cbd936dc7 /cmd/btrfs-fsck
parentf1a212cddb8dc051c510327c365da42e30b23ab9 (diff)
use %v when possible
Exceptions are - the occasional %x when the type is a basic int - %w - %q - %T - whenever print_tree.go needs to be dumb for compatibility with C
Diffstat (limited to 'cmd/btrfs-fsck')
-rw-r--r--cmd/btrfs-fsck/main.go2
-rw-r--r--cmd/btrfs-fsck/pass1.go10
2 files changed, 6 insertions, 6 deletions
diff --git a/cmd/btrfs-fsck/main.go b/cmd/btrfs-fsck/main.go
index 7ab5a44..c4bfc75 100644
--- a/cmd/btrfs-fsck/main.go
+++ b/cmd/btrfs-fsck/main.go
@@ -9,7 +9,7 @@ import (
func main() {
if err := Main(os.Args[1]); err != nil {
- fmt.Fprintf(os.Stderr, "%s: error: %v\n", os.Args[0], err)
+ fmt.Fprintf(os.Stderr, "%v: error: %v\n", os.Args[0], err)
os.Exit(1)
}
}
diff --git a/cmd/btrfs-fsck/pass1.go b/cmd/btrfs-fsck/pass1.go
index cf93b1b..37fca0c 100644
--- a/cmd/btrfs-fsck/pass1.go
+++ b/cmd/btrfs-fsck/pass1.go
@@ -149,11 +149,11 @@ func pass1ScanOneDev_x(
}
chunk, ok := item.Body.(btrfsitem.Chunk)
if !ok {
- fmt.Printf("Pass 1: ... dev[%q] node@%d: item %d: error: type is CHUNK_ITEM_KEY, but struct is %T\n",
+ fmt.Printf("Pass 1: ... dev[%q] node@%v: item %v: error: type is CHUNK_ITEM_KEY, but struct is %T\n",
dev.Name(), nodeRef.Addr, i, item.Body)
continue
}
- fmt.Printf("Pass 1: ... dev[%q] node@%d: item %d: found chunk\n",
+ fmt.Printf("Pass 1: ... dev[%q] node@%v: item %v: found chunk\n",
dev.Name(), nodeRef.Addr, i)
lostAndFoundChunks = append(lostAndFoundChunks, btrfs.SysChunk{
Key: item.Head.Key,
@@ -164,7 +164,7 @@ func pass1ScanOneDev_x(
}, func(pos btrfs.PhysicalAddr) {
pct := int(100 * float64(pos) / float64(devSize))
if pct != lastProgress || pos == devSize {
- fmt.Printf("Pass 1: ... dev[%q] scanned %v%% (found %d nodes)\n",
+ fmt.Printf("Pass 1: ... dev[%q] scanned %v%% (found %v nodes)\n",
dev.Name(), pct, len(foundNodes))
lastProgress = pct
}
@@ -311,8 +311,8 @@ func pass1WriteReconstructedChunks(
for i, laddr := range sortedLAddrs {
chunk := fsReconstructedChunks[laddr]
for j, stripe := range chunk.Stripes {
- fmt.Printf("Pass 1: chunks[%d].stripes[%d] = { laddr=0x%0x => { dev_id=%d, paddr=0x%0x }, size=0x%0x }\n",
- i, j, laddr, stripe.DeviceID, stripe.Offset, chunk.Size)
+ fmt.Printf("Pass 1: chunks[%v].stripes[%v] = { laddr=%v => { dev_id=%v, paddr=%v }, size=%v }\n",
+ i, j, laddr, stripe.DeviceID, stripe.Offset, btrfs.LogicalAddr(chunk.Size))
}
reconstructedNode.Data.BodyLeaf = append(reconstructedNode.Data.BodyLeaf, btrfs.Item{
Head: btrfs.ItemHeader{