From patchwork Thu Jul 18 09:11:54 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chao Yu X-Patchwork-Id: 11048679 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id C92CB13A4 for ; Thu, 18 Jul 2019 09:12:10 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BAB3228791 for ; Thu, 18 Jul 2019 09:12:10 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id AEE9928797; Thu, 18 Jul 2019 09:12:10 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 46D4728791 for ; Thu, 18 Jul 2019 09:12:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726454AbfGRJMK (ORCPT ); Thu, 18 Jul 2019 05:12:10 -0400 Received: from szxga05-in.huawei.com ([45.249.212.191]:2283 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726383AbfGRJMJ (ORCPT ); Thu, 18 Jul 2019 05:12:09 -0400 Received: from DGGEMS408-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 233714516E6155E36F38; Thu, 18 Jul 2019 17:12:08 +0800 (CST) Received: from szvp000203569.huawei.com (10.120.216.130) by DGGEMS408-HUB.china.huawei.com (10.3.19.208) with Microsoft SMTP Server id 14.3.439.0; Thu, 18 Jul 2019 17:12:01 +0800 From: Chao Yu To: CC: , , , Chao Yu Subject: [PATCH] common/rc: set max label length for f2fs Date: Thu, 18 Jul 2019 17:11:54 +0800 Message-ID: <20190718091154.37327-1-yuchao0@huawei.com> X-Mailer: git-send-email 2.18.0.rc1 MIME-Version: 1.0 X-Originating-IP: [10.120.216.130] X-CFilter-Loop: Reflected Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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 --- common/rc | 3 +++ 1 file changed, 3 insertions(+) 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" ;;