btrfs-progs: remove scan_for_btrfs()
authorAnand Jain <anand.jain@oracle.com>
Sat, 13 Sep 2014 01:21:22 +0000 (09:21 +0800)
committerDavid Sterba <dsterba@suse.cz>
Fri, 10 Oct 2014 08:38:34 +0000 (10:38 +0200)
With the changes as in the previous patch, now scan_for_btrfs()
is an unused function. So delete it.

Signed-off-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
utils.c
utils.h

diff --git a/utils.c b/utils.c
index 2ac4515..e9306b0 100644 (file)
--- a/utils.c
+++ b/utils.c
@@ -2151,21 +2151,6 @@ int btrfs_scan_lblkid(int update_kernel)
        return 0;
 }
 
-/*
- * scans devs for the btrfs
-*/
-int scan_for_btrfs(int where, int update_kernel)
-{
-       int ret = 0;
-
-       switch (where) {
-       case BTRFS_SCAN_LBLKID:
-               ret = btrfs_scan_lblkid(update_kernel);
-               break;
-       }
-       return ret;
-}
-
 int is_vol_small(char *file)
 {
        int fd = -1;
diff --git a/utils.h b/utils.h
index cd219ca..562c7be 100644 (file)
--- a/utils.h
+++ b/utils.h
@@ -96,7 +96,6 @@ u64 btrfs_device_size(int fd, struct stat *st);
 /* Helper to always get proper size of the destination string */
 #define strncpy_null(dest, src) __strncpy__null(dest, src, sizeof(dest))
 int test_dev_for_mkfs(char *file, int force_overwrite, char *estr);
-int scan_for_btrfs(int where, int update_kernel);
 int get_label_mounted(const char *mount_path, char *labelp);
 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
        u64 dev_cnt, int mixed, char *estr);