From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0175BC433DF for ; Mon, 17 Aug 2020 14:17:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D010920674 for ; Mon, 17 Aug 2020 14:17:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728683AbgHQORn (ORCPT ); Mon, 17 Aug 2020 10:17:43 -0400 Received: from mx2.suse.de ([195.135.220.15]:49116 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728669AbgHQORn (ORCPT ); Mon, 17 Aug 2020 10:17:43 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id A1D73AF86; Mon, 17 Aug 2020 14:18:06 +0000 (UTC) Message-ID: <25c9a6629f5d8b35367366472c22bd47921bfb5a.camel@suse.de> Subject: Re: [PATCH v2] btrfs/024: Remove no longer valid test From: Marcos Paulo de Souza To: Nikolay Borisov , fstests@vger.kernel.org Cc: linux-btrfs@vger.kernel.org Date: Mon, 17 Aug 2020 11:17:35 -0300 In-Reply-To: <20200817134026.15453-1-nborisov@suse.com> References: <20200817103718.10239-1-nborisov@suse.com> <20200817134026.15453-1-nborisov@suse.com> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.36.4 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org On Mon, 2020-08-17 at 16:40 +0300, Nikolay Borisov wrote: > Kernel commit "btrfs: add missing check for nocow and compression > inode > flags" invalidates the "file compressed, fs mounted with nodatacow" > mode due to doing more rigorous flags validation, just remove the > test LGTM, so: Reviewed-by: Marcos Paulo de Souza > . > > Signed-off-by: Nikolay Borisov > --- > V2: > * Also remove the output > > tests/btrfs/024 | 7 ------- > tests/btrfs/024.out | 3 --- > 2 files changed, 10 deletions(-) > > diff --git a/tests/btrfs/024 b/tests/btrfs/024 > index 0c2ffd7389ab..bcb9048da636 100755 > --- a/tests/btrfs/024 > +++ b/tests/btrfs/024 > @@ -42,13 +42,6 @@ __workout() > $XFS_IO_PROG -f -c "pwrite 0 1M" -c "fsync" $work_file | > _filter_xfs_io > } > > -echo "*** test nodatacow" > -_scratch_mkfs > /dev/null 2>&1 > -_scratch_mount "-o nodatacow" > -__workout > -_scratch_unmount > -_check_scratch_fs > - > echo "*** test compress=no" > _scratch_mkfs > /dev/null 2>&1 > _scratch_mount "-o compress=no" > diff --git a/tests/btrfs/024.out b/tests/btrfs/024.out > index 7eacb0aca674..33c4f49366fd 100644 > --- a/tests/btrfs/024.out > +++ b/tests/btrfs/024.out > @@ -1,7 +1,4 @@ > QA output created by 024 > -*** test nodatacow > -wrote 1048576/1048576 bytes at offset 0 > -XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) > *** test compress=no > wrote 1048576/1048576 bytes at offset 0 > XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) > -- > 2.17.1 >