summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnand Jain <anand.jain@oracle.com>2013-04-05 13:54:59 +0800
committerDavid Sterba <dsterba@suse.cz>2013-04-23 18:56:19 +0200
commit486e7ca4cd9600f855324ce1e8dab9f45fc425d4 (patch)
tree1b9f3aa4baa15ff20bfe7b943afbf8bbecbc9940
parentf592cd1cc05868caa477689ca7caabaa202d08a4 (diff)
btrfs-progs: delete unused function get_mountpt
and get_btrfs_mount has replaced it Signed-off-by: Anand Jain <anand.jain@oracle.com>
-rw-r--r--utils.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/utils.c b/utils.c
index a4f7b069..fb65b723 100644
--- a/utils.c
+++ b/utils.c
@@ -974,41 +974,6 @@ out_mntloop_err:
return ret;
}
-/* Gets the mount point of btrfs filesystem that is using the specified device.
- * Returns 0 is everything is good, <0 if we have an error.
- * TODO: Fix this fucntion and check_mounted to work with multiple drive BTRFS
- * setups.
- */
-int get_mountpt(char *dev, char *mntpt, size_t size)
-{
- struct mntent *mnt;
- FILE *f;
- int ret = 0;
-
- f = setmntent("/proc/mounts", "r");
- if (f == NULL)
- return -errno;
-
- while ((mnt = getmntent(f)) != NULL )
- {
- if (strcmp(dev, mnt->mnt_fsname) == 0)
- {
- strncpy(mntpt, mnt->mnt_dir, size);
- if (size)
- mntpt[size-1] = 0;
- break;
- }
- }
-
- if (mnt == NULL)
- {
- /* We didn't find an entry so lets report an error */
- ret = -1;
- }
-
- return ret;
-}
-
struct pending_dir {
struct list_head list;
char name[PATH_MAX];