aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2024-02-05 10:50:15 -0800
committerKent Overstreet <kent.overstreet@linux.dev>2024-03-13 21:37:54 -0400
commitcdbfa228a5537dfd7cbd8532701b0c8af70c97b8 (patch)
tree36e3f0f45b9e33e856b7e3355d0fda75a05bd822
parentf1ca1abfb0275db241363743ed3606b25b2b1a5c (diff)
downloadvfs-cdbfa228a5537dfd7cbd8532701b0c8af70c97b8.tar.gz
bcachefs: time_stats: add larger units
Filesystems can stay mounted for a very long time, so add some larger units. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r--fs/bcachefs/time_stats.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/bcachefs/time_stats.c b/fs/bcachefs/time_stats.c
index d2f7ddbf6c313..af97474c445bf 100644
--- a/fs/bcachefs/time_stats.c
+++ b/fs/bcachefs/time_stats.c
@@ -17,6 +17,9 @@ static const struct time_unit time_units[] = {
{ "s", NSEC_PER_SEC },
{ "m", (u64) NSEC_PER_SEC * 60},
{ "h", (u64) NSEC_PER_SEC * 3600},
+ { "d", (u64) NSEC_PER_SEC * 3600 * 24},
+ { "w", (u64) NSEC_PER_SEC * 3600 * 24 * 7},
+ { "y", (u64) NSEC_PER_SEC * ((3600 * 24 * 7 * 365) + (3600 * (24 / 4) * 7))}, /* 365.25d */
{ "eon", U64_MAX },
};