Received: by 2002:a05:6a10:1287:0:0:0:0 with SMTP id d7csp601533pxv; Thu, 22 Jul 2021 07:55:45 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwI/7odblPMJ542C+Y7kusjUMPU34EikuIQ2/wZh8Lj8pscKve/Krio8yhKmJTcyifa4YiG X-Received: by 2002:a05:6e02:2190:: with SMTP id j16mr194530ila.144.1626965745589; Thu, 22 Jul 2021 07:55:45 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1626965745; cv=none; d=google.com; s=arc-20160816; b=p8eED9OSfwhibhkgu658lb4MEj0LfRHQa/oaiqUzTR+VHtQ5HImYSyjJg0wulh1gdR i1CILtDYGCjH1ioT6vTNpRxPqlJFDUuXb9+sIBN610PvRW1YxKzYUtGzaOoFVJV6QrgC N6oUICeMP5VvpN/z9rUJR94B0/bb4d/q+Qo9QW5pKfvdFML24KjmxXbVErUh/mh6qCvW bWbgYKaLEGOVTTGJqvxW7HzNlgLwUZQ6QdOhPBRMpUhci4AmNhtgrQNgZQYUbe8uPIE2 VPrAaHeT2vai5VMChUN4/fQIf5MsQrYf/2LSpjUd5v0UZ7hOKwU8UZ3QglEsSiixxiL4 pgPA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=rNEt4wJZd9uVU+ZmfWBuygC2CsR0aV2kfxIitdBfdP8=; b=p1C59bh/HAT5OSWHgs/OWRj5wKrXGCzyvUVr/AnoG6IPGc2G/qXe9OiiPednAAG+Eg UGO/vDqabnipQS44J+G8vUqNRzpYlci/IcCjrQiMkI3uno4/N6uydt67TfuOmrmhjHkf 3HoxQmzTGqIXT4j4kazLXMiemFXNVQuT25R3WH71axafliwH44ywNnRscJzH17sss9hX yLCduGUJKSeFgkHVMAytPGfEu59YIUQtLBdkQAZKCK1H/HUW3twOJ1Mly40uL3Rg6ZtP C+DgYheBkHGqvOcHEFxNkrSXx4itaaB8SF49XYXS+2x8iM3FsbKkK3q4h1tAjSzz35ow GvjA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id y7si29993186jae.125.2021.07.22.07.55.21; Thu, 22 Jul 2021 07:55:45 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232519AbhGVONL (ORCPT + 99 others); Thu, 22 Jul 2021 10:13:11 -0400 Received: from outgoing-auth-1.mit.edu ([18.9.28.11]:36315 "EHLO outgoing.mit.edu" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S232559AbhGVOMo (ORCPT ); Thu, 22 Jul 2021 10:12:44 -0400 Received: from cwcc.thunk.org (pool-72-74-133-215.bstnma.fios.verizon.net [72.74.133.215]) (authenticated bits=0) (User authenticated as tytso@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id 16MEr8Zd014436 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 22 Jul 2021 10:53:08 -0400 Received: by cwcc.thunk.org (Postfix, from userid 15806) id DE08815C37C0; Thu, 22 Jul 2021 10:53:07 -0400 (EDT) Date: Thu, 22 Jul 2021 10:53:07 -0400 From: "Theodore Ts'o" To: Jan Kara Cc: linux-ext4@vger.kernel.org, Andreas Dilger Subject: Re: [PATCH 2/5] ext4: Move orphan inode handling into a separate file Message-ID: References: <20210712154009.9290-1-jack@suse.cz> <20210712154009.9290-3-jack@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210712154009.9290-3-jack@suse.cz> Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Mon, Jul 12, 2021 at 05:40:06PM +0200, Jan Kara wrote: > Move functions for handling orphan inodes into a new file > fs/ext4/orphan.c to have them in one place and somewhat reduce size of > other files. No code changes. Makes sense. Reviewed-by: Theodore Ts'o - Ted