Message ID | 20250106140118.91905-1-glass.su@suse.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | common/rc: add ocfs2 supported timesptamp range | expand |
On Mon, 6 Jan 2025 22:01:18 +0800, Su Yue wrote: > ocfs2 supports timestamp ranging from s64min to s64max. > Add it to _filesystem_timestamp_range then generic/402 runs. Looks good. Reviewed-by: David Disseldorp <ddiss@suse.de>
diff --git a/common/rc b/common/rc index 7b5bc0b45047..3a38a7ad6196 100644 --- a/common/rc +++ b/common/rc @@ -2690,6 +2690,9 @@ _filesystem_timestamp_range() echo "-1 -1" fi ;; + ocfs2) + echo "$s64min $s64max" + ;; *) echo "-1 -1" ;;
ocfs2 supports timestamp ranging from s64min to s64max. Add it to _filesystem_timestamp_range then generic/402 runs. Signed-off-by: Su Yue <glass.su@suse.com> --- common/rc | 3 +++ 1 file changed, 3 insertions(+)