From 763499ee80f5acb7ab1db70d86c65485bebb115e Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Mon, 16 Aug 2021 17:14:14 +0200 Subject: inomap: update outdated wording in comments --- internal/inomap/inomap.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/inomap/inomap.go') diff --git a/internal/inomap/inomap.go b/internal/inomap/inomap.go index bd20e0d..630ba18 100644 --- a/internal/inomap/inomap.go +++ b/internal/inomap/inomap.go @@ -1,4 +1,4 @@ -// inomap translates (Dev, Flags, Ino) tuples to unique uint64 +// inomap translates (Dev, Tag, Ino) tuples to unique uint64 // inode numbers. // // Format of the returned inode numbers: @@ -6,11 +6,11 @@ // [spill bit = 0][15 bit namespace id][48 bit passthru inode number] // [spill bit = 1][63 bit spill inode number ] // -// Each (Dev, Flags) tuple gets a namespace id assigned. The original inode +// Each (Dev, Tag) tuple gets a namespace id assigned. The original inode // number is then passed through in the lower 48 bits. // // If namespace ids are exhaused, or the original id is larger than 48 bits, -// the whole (Dev, Flags, Ino) tuple gets mapped in the spill map, and the +// the whole (Dev, Tag, Ino) tuple gets mapped in the spill map, and the // spill bit is set to 1. package inomap -- cgit v1.2.3