From patchwork Fri May 22 15:33:48 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anand Jain X-Patchwork-Id: 6465561 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 2F2EA9F1C1 for ; Fri, 22 May 2015 15:34:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4DBDD202FE for ; Fri, 22 May 2015 15:34:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 53EBC200E8 for ; Fri, 22 May 2015 15:34:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757213AbbEVPeF (ORCPT ); Fri, 22 May 2015 11:34:05 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:41269 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757270AbbEVPeD (ORCPT ); Fri, 22 May 2015 11:34:03 -0400 Received: from userv0021.oracle.com (userv0021.oracle.com [156.151.31.71]) by aserp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id t4MFY0MY001258 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 22 May 2015 15:34:00 GMT Received: from aserv0121.oracle.com (aserv0121.oracle.com [141.146.126.235]) by userv0021.oracle.com (8.13.8/8.13.8) with ESMTP id t4MFXx3D011165 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Fri, 22 May 2015 15:33:59 GMT Received: from abhmp0005.oracle.com (abhmp0005.oracle.com [141.146.116.11]) by aserv0121.oracle.com (8.13.8/8.13.8) with ESMTP id t4MFXxVm031303; Fri, 22 May 2015 15:33:59 GMT Received: from localhost.localdomain (/42.60.17.47) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Fri, 22 May 2015 08:33:59 -0700 From: Anand Jain To: linux-btrfs@vger.kernel.org Cc: dsterba@suse.cz, Anand Jain Subject: [PATCH v5.1 24/27] Btrfs: free the stale device Date: Fri, 22 May 2015 23:33:48 +0800 Message-Id: <1432308828-31185-1-git-send-email-Anand.Jain@oracle.com> X-Mailer: git-send-email 2.0.0.257.g75cc6c6 In-Reply-To: <1426845702-6298-25-git-send-email-anand.jain@oracle.com> References: <1426845702-6298-25-git-send-email-anand.jain@oracle.com> X-Source-IP: userv0021.oracle.com [156.151.31.71] Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP When the btrfs on a device is overwritten with a new btrfs (mkfs), the old btrfs instance in the kernel becomes stale. So with this patch if kernel finds device is overwritten, then delete the stale fsid/uuid. Signed-off-by: Anand Jain --- V5->V5.1: since this deals with only devices in unmounted state, don't try to remove device link fs/btrfs/volumes.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 747241f..eb57331 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -445,6 +445,55 @@ static void pending_bios_fn(struct btrfs_work *work) run_scheduled_bios(device); } +void btrfs_free_stale_device(struct btrfs_device *cur_dev) +{ + int del = 0; + struct btrfs_fs_devices *fs_devs; + struct btrfs_device *dev; + + if (!rcu_str_deref(cur_dev->name)) + return; + list_for_each_entry(fs_devs, &fs_uuids, list) { + if (fs_devs->opened) + continue; + if (fs_devs->seeding) + continue; + list_for_each_entry(dev, &fs_devs->devices, dev_list) { + if (dev == cur_dev) + continue; + + /* + * Todo: This won't be enough. What if same device + * comes back with new uuid and with its mapper path? + * But for now, this does helps as mostly an admin will + * use either mapper or non mapper path throughout. + */ + if (!rcu_str_deref(dev->name)) + continue; + if (!strcmp(rcu_str_deref(dev->name), + rcu_str_deref(cur_dev->name))) { + del = 1; + break; + } + } + if (del) { + /* delete the stale */ + if (fs_devs->num_devices == 1) { + btrfs_sysfs_remove_fsid(fs_devs); + list_del(&fs_devs->list); + free_fs_devices(fs_devs); + } else { + fs_devs->num_devices--; + list_del(&dev->dev_list); + rcu_string_free(dev->name); + kfree(dev); + } + break; + } + } + return; +} + /* * Add new device to list of registered devices * @@ -560,6 +609,8 @@ static noinline int device_list_add(const char *path, if (!fs_devices->opened) device->generation = found_transid; + btrfs_free_stale_device(device); + *fs_devices_ret = fs_devices; return ret;