diff mbox series

common/rc: set max label length for f2fs

Message ID 20190718091154.37327-1-yuchao0@huawei.com (mailing list archive)
State New, archived
Headers show
Series common/rc: set max label length for f2fs | expand

Commit Message

Chao Yu July 18, 2019, 9:11 a.m. UTC
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 <yuchao0@huawei.com>
---
 common/rc | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/common/rc b/common/rc
index 75ca6324..45781619 100644
--- a/common/rc
+++ b/common/rc
@@ -3955,6 +3955,9 @@  _label_get_max()
 	btrfs)
 		echo 255
 		;;
+	f2fs)
+		echo 255
+		;;
 	*)
 		_notrun "$FSTYP does not define maximum label length"
 		;;