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=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 D10F2C33C8C for ; Tue, 7 Jan 2020 16:46:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A65F2208C4 for ; Tue, 7 Jan 2020 16:46:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728364AbgAGQqe (ORCPT ); Tue, 7 Jan 2020 11:46:34 -0500 Received: from mx2.suse.de ([195.135.220.15]:38326 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728262AbgAGQqd (ORCPT ); Tue, 7 Jan 2020 11:46:33 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 5B65DAD29; Tue, 7 Jan 2020 16:46:32 +0000 (UTC) Received: by ds.suse.cz (Postfix, from userid 10065) id 65062DA78B; Tue, 7 Jan 2020 17:46:22 +0100 (CET) Date: Tue, 7 Jan 2020 17:46:22 +0100 From: David Sterba To: Josef Bacik Cc: linux-btrfs@vger.kernel.org, kernel-team@fb.com Subject: Re: [PATCH 2/5] btrfs: introduce the inode->file_extent_tree Message-ID: <20200107164622.GC3929@twin.jikos.cz> Reply-To: dsterba@suse.cz Mail-Followup-To: dsterba@suse.cz, Josef Bacik , linux-btrfs@vger.kernel.org, kernel-team@fb.com References: <20191230213118.7532-1-josef@toxicpanda.com> <20191230213118.7532-3-josef@toxicpanda.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191230213118.7532-3-josef@toxicpanda.com> User-Agent: Mutt/1.5.23.1-rc1 (2014-03-12) Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org On Mon, Dec 30, 2019 at 04:31:15PM -0500, Josef Bacik wrote: > +int btrfs_inode_set_file_extent_range(struct btrfs_inode *inode, u64 start, > + u64 len) > +{ > + if (len == 0) > + return 0; > + > + ASSERT(IS_ALIGNED(start + len, inode->root->fs_info->sectorsize)); > + > + if (btrfs_fs_incompat(inode->root->fs_info, NO_HOLES)) > + return 0; > + return set_extent_bits(&inode->file_extent_tree, start, start + len - 1, > + EXTENT_DIRTY); set_extent_bits and friends do the allocations for range splits so this is going to decrease performance. For the allocations and tree traversals. With enabled no-holes it's not going to be a problem, but there are still many filesystems without the feature enabled so this needs some evaluation.