@@ -1097,32 +1097,34 @@ out:
return ret;
}
+int get_fsid_fd(int fd, u8 *fsid)
+{
+ int ret;
+ struct btrfs_ioctl_fs_info_args args;
+
+ ret = ioctl(fd, BTRFS_IOC_FS_INFO, &args);
+ if (ret < 0)
+ return -errno;
+
+ memcpy(fsid, args.fsid, BTRFS_FSID_SIZE);
+ return 0;
+}
+
int get_fsid(const char *path, u8 *fsid, int silent)
{
int ret;
int fd;
- struct btrfs_ioctl_fs_info_args args;
fd = open(path, O_RDONLY);
if (fd < 0) {
- ret = -errno;
if (!silent)
error("failed to open %s: %m", path);
- goto out;
- }
-
- ret = ioctl(fd, BTRFS_IOC_FS_INFO, &args);
- if (ret < 0) {
- ret = -errno;
- goto out;
+ return -errno;
}
- memcpy(fsid, args.fsid, BTRFS_FSID_SIZE);
- ret = 0;
+ ret = get_fsid_fd(fd, fsid);
+ close(fd);
-out:
- if (fd != -1)
- close(fd);
return ret;
}
@@ -75,6 +75,7 @@ void close_file_or_dir(int fd, DIR *dirstream);
int get_fs_info(const char *path, struct btrfs_ioctl_fs_info_args *fi_args,
struct btrfs_ioctl_dev_info_args **di_ret);
int get_fsid(const char *path, u8 *fsid, int silent);
+int get_fsid_fd(int fd, u8 *fsid);
int get_label(const char *btrfs_dev, char *label);
int set_label(const char *btrfs_dev, const char *label);