From patchwork Fri Jul 26 13:45:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Layton X-Patchwork-Id: 11061097 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 5EAD3912 for ; Fri, 26 Jul 2019 13:47:37 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4CD2126222 for ; Fri, 26 Jul 2019 13:47:37 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4106828A4A; Fri, 26 Jul 2019 13:47:37 +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=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 00C1E26222 for ; Fri, 26 Jul 2019 13:47:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387482AbfGZNp4 (ORCPT ); Fri, 26 Jul 2019 09:45:56 -0400 Received: from mail.kernel.org ([198.145.29.99]:55158 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388598AbfGZNpz (ORCPT ); Fri, 26 Jul 2019 09:45:55 -0400 Received: from tleilax.poochiereds.net (cpe-71-70-156-158.nc.res.rr.com [71.70.156.158]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 7B64B22CEC; Fri, 26 Jul 2019 13:45:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1564148754; bh=EJORBHM43i7VYiGcZo0INzEaytyYQ/z+uHqfztAgSuE=; h=From:To:Cc:Subject:Date:From; b=L0LWgGr2C3X0IZHX0a5E8I/tUCRTQlJl9pKsfON4U6SQZFtmC5wT/ahrSZyqPNrQd X62qPi4sEvq1oQHqCzC59/MGffwinHr2ziaG0YnzE1fMljjZmW9MEIY7A8icSrIYGm Tmz0uvzVpYSCmP7OpP7NTPZ518CBnn4pNdxfwOd0= From: Jeff Layton To: fstests@vger.kernel.org Cc: amir73il@gmail.com Subject: [PATCH] common/rc: ceph only supports default SEEK_HOLE behavior Date: Fri, 26 Jul 2019 09:45:52 -0400 Message-Id: <20190726134552.23782-1-jlayton@kernel.org> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP CephFS currently has only a very primitive SEEK_HOLE implementation, and always sets the offset to EOF when it's used. Remove it from the whitelist. Cc: Amir Goldstein Signed-off-by: Jeff Layton --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 3fe5647ec658..e0b087c10e8f 100644 --- a/common/rc +++ b/common/rc @@ -2352,7 +2352,7 @@ _fstyp_has_non_default_seek_data_hole() fi case "$fstyp" in - btrfs|ext4|xfs|ceph|cifs|f2fs|gfs2|ocfs2|tmpfs) + btrfs|ext4|xfs|cifs|f2fs|gfs2|ocfs2|tmpfs) return 0 ;; nfs*)