Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp735742imm; Thu, 13 Sep 2018 07:02:17 -0700 (PDT) X-Google-Smtp-Source: ANB0VdbZmcaU0wizxDPIAonkcNO9xtibncteisswd1087LclSQuGtk5WD8A/eFETz8KQOAMOKmvW X-Received: by 2002:a17:902:694a:: with SMTP id k10-v6mr7421899plt.166.1536847337731; Thu, 13 Sep 2018 07:02:17 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1536847337; cv=none; d=google.com; s=arc-20160816; b=Hd3BFtWFC6V0A8G7UMETDGRfhgejgciwYuf23NGSe/krawNxmv2PNioArq+6oLBmpo T6jXdpaABw7BtdaeTdUCzLM/4/h6XR2W25t1iBD7I0bmGem7cLH/QLTLhevi42oXhRBW 3E6iwDM9EFWkm3Qp9Q+4+OHd5FTB6pld2Z65Yfjx2k6FhJD8J3pRVkai3lvwBoNEtnFo MSh+7htSMb6w5pMnGg/lKtVe61nvgP5XQoyYmkwza2S4h5jO/h167Wl+mtcXl6huetco 4RFSP4Di5iiD3G+xY+wZ/7uxrEnkUpMuRML2do9tHhrEl4WGRJJ/U1I/1P+naxqF1Pjb wD4Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :user-agent:references:in-reply-to:message-id:date:subject:cc:to :from; bh=L62L9l2dyPXbhpxSTYJKCgLTSz4DndiMNnmCtPds52w=; b=0lJvPqASblLq/iSfCam/wGTdPWa/TcPFEI+s+6i4jHgcm8njM6DluhP4Mb/V7yvR6+ HkXm4HYPlpUejmLCTt11bepmiWyYs2m3+1G76lCzrRStzI+dRx3bzwpVVD1rA9r7/vGE 8ZLd2qms8QXjv0Li5JNqVeAaMAXZo9qJ7eZSe3w3l++4tOo1j6KeW6kTQ8+rG2lP1vyK WhpHP/6PjUt1uy9fr9jUBpgG3R0wHgXVo/gAD6aRjecT5abd874Qt3QXNTtg0FsVPUIl qi2+VupPHdHLlL/sDuzau+ibqG5rpeleulhy6wloIgm2eSWQC1MW4m3xrm63iBxGdzla 4r0Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id w126-v6si4309262pfb.232.2018.09.13.07.01.58; Thu, 13 Sep 2018 07:02:17 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731887AbeIMTL2 (ORCPT + 99 others); Thu, 13 Sep 2018 15:11:28 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:35100 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731650AbeIMTL2 (ORCPT ); Thu, 13 Sep 2018 15:11:28 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 52B2CD1C; Thu, 13 Sep 2018 14:01:49 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Anand Jain , David Sterba , Sasha Levin Subject: [PATCH 4.18 144/197] btrfs: do btrfs_free_stale_devices outside of device_list_add Date: Thu, 13 Sep 2018 15:31:33 +0200 Message-Id: <20180913131847.320795388@linuxfoundation.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20180913131841.568116777@linuxfoundation.org> References: <20180913131841.568116777@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Anand Jain [ Upstream commit 4306a97449f9a0f9e5229af7889d4401315355aa ] btrfs_free_stale_devices() looks for device path reused for another filesystem, and deletes the older fs_devices::device entry. In preparation to handle locking in device_list_add, move btrfs_free_stale_devices outside as these two functions serve a different purpose. Signed-off-by: Anand Jain Reviewed-by: David Sterba Signed-off-by: David Sterba Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- fs/btrfs/volumes.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -750,7 +750,8 @@ error_brelse: * error pointer when failed */ static noinline struct btrfs_device *device_list_add(const char *path, - struct btrfs_super_block *disk_super) + struct btrfs_super_block *disk_super, + bool *new_device_added) { struct btrfs_device *device; struct btrfs_fs_devices *fs_devices; @@ -796,7 +797,7 @@ static noinline struct btrfs_device *dev mutex_unlock(&fs_devices->device_list_mutex); device->fs_devices = fs_devices; - btrfs_free_stale_devices(path, device); + *new_device_added = true; if (disk_super->label[0]) pr_info("BTRFS: device label %s devid %llu transid %llu %s\n", @@ -1221,6 +1222,7 @@ int btrfs_scan_one_device(const char *pa struct btrfs_fs_devices **fs_devices_ret) { struct btrfs_super_block *disk_super; + bool new_device_added = false; struct btrfs_device *device; struct block_device *bdev; struct page *page; @@ -1246,11 +1248,14 @@ int btrfs_scan_one_device(const char *pa } mutex_lock(&uuid_mutex); - device = device_list_add(path, disk_super); - if (IS_ERR(device)) + device = device_list_add(path, disk_super, &new_device_added); + if (IS_ERR(device)) { ret = PTR_ERR(device); - else + } else { *fs_devices_ret = device->fs_devices; + if (new_device_added) + btrfs_free_stale_devices(path, device); + } mutex_unlock(&uuid_mutex); btrfs_release_disk_super(page);