From 3bfeb4d53f5e2f1034da37c41e42ac9371228e1b Mon Sep 17 00:00:00 2001 From: Chao Yu Date: Thu, 18 Jul 2019 17:11:54 +0800 Subject: [PATCH] common/rc: set max label length for f2fs f2fs can support FS_IOC_{GET,SET}FSLABEL now, set max label length to enable generic/492 testcase for f2fs. Signed-off-by: Chao Yu Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- common/rc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/rc b/common/rc index 000a7cc8..827fa882 100644 --- a/common/rc +++ b/common/rc @@ -3941,6 +3941,9 @@ _label_get_max() btrfs) echo 255 ;; + f2fs) + echo 255 + ;; *) _notrun "$FSTYP does not define maximum label length" ;; -- 2.39.5