No functional changes.
Rename btrfs_free_stale_devices() arg to skip_dev, so that it
reflects what that arg for.

Signed-off-by: Anand Jain <anand.j...@oracle.com>
---
 fs/btrfs/volumes.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index bba98d043402..a3edd4d92c57 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -606,7 +606,7 @@ static void pending_bios_fn(struct btrfs_work *work)
 }
 
 
-static void btrfs_free_stale_devices(struct btrfs_device *cur_dev)
+static void btrfs_free_stale_devices(struct btrfs_device *skip_dev)
 {
        struct btrfs_fs_devices *fs_devs, *tmp_fs_devs;
        struct btrfs_device *dev, *tmp_dev;
@@ -620,7 +620,7 @@ static void btrfs_free_stale_devices(struct btrfs_device 
*cur_dev)
                                         &fs_devs->devices, dev_list) {
                        int not_found = 0;
 
-                       if (cur_dev && (cur_dev == dev || !dev->name))
+                       if (skip_dev && (skip_dev == dev || !dev->name))
                                continue;
 
                        /*
@@ -630,9 +630,9 @@ static void btrfs_free_stale_devices(struct btrfs_device 
*cur_dev)
                         * either use mapper or non mapper path throughout.
                         */
                        rcu_read_lock();
-                       if (cur_dev)
+                       if (skip_dev)
                                not_found = strcmp(rcu_str_deref(dev->name),
-                                                  
rcu_str_deref(cur_dev->name));
+                                                  
rcu_str_deref(skip_dev->name));
                        rcu_read_unlock();
                        if (not_found)
                                continue;
-- 
2.7.0

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to