From e2da1194fb7d6ebca681c2e9321c03fe607fe7b2 Mon Sep 17 00:00:00 2001 From: Su Yue Date: Mon, 6 Jan 2025 22:01:18 +0800 Subject: [PATCH] common/rc: add ocfs2 supported timesptamp range ocfs2 supports timestamp ranging from s64min to s64max. Add it to _filesystem_timestamp_range then generic/402 runs. Signed-off-by: Su Yue Reviewed-by: David Disseldorp Signed-off-by: Zorro Lang --- common/rc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/rc b/common/rc index ecac2de87..c5421c945 100644 --- a/common/rc +++ b/common/rc @@ -2693,6 +2693,9 @@ _filesystem_timestamp_range() echo "-1 -1" fi ;; + ocfs2) + echo "$s64min $s64max" + ;; *) echo "-1 -1" ;; -- 2.50.1