From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Weinberger Subject: [PATCH] Do not check ocfs2 Date: Sun, 3 Mar 2013 01:05:50 +0100 Message-ID: <1362269150-21478-1-git-send-email-richard@nod.at> Cc: linux-fsdevel@vger.kernel.org, Richard Weinberger To: xfs@oss.sgi.com Return-path: Received: from a.ns.miles-group.at ([95.130.255.143]:47834 "EHLO radon.swed.at" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751320Ab3CCAGE (ORCPT ); Sat, 2 Mar 2013 19:06:04 -0500 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: We cannot run fsck.ocfs2 because the file system is most likely mounted on another node. Signed-off-by: Richard Weinberger --- common.rc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common.rc b/common.rc index f5180fe..00c075d 100644 --- a/common.rc +++ b/common.rc @@ -1419,6 +1419,9 @@ _check_test_fs() udf) # do nothing for now ;; + ocfs2) + # other nodes may have mounted the fs + ;; btrfs) _check_btrfs_filesystem $TEST_DEV ;; @@ -1448,6 +1451,9 @@ _check_scratch_fs() nfs*) # Don't know how to check an NFS filesystem, yet. ;; + ocfs2) + # other nodes may have mounted the fs + ;; btrfs) _check_btrfs_filesystem $SCRATCH_DEV ;; -- 1.8.1.2