From: Anand Jain <anand.jain@oracle.com>
To: "Misono, Tomohiro" <misono.tomohiro@jp.fujitsu.com>,
linux-btrfs <linux-btrfs@vger.kernel.org>
Subject: Re: [PATCH 1/2] btrfs-progs: fi: move dev_to_fsid() to cmds-fi-usage for later use
Date: Tue, 24 Oct 2017 09:41:55 +0800 [thread overview]
Message-ID: <dede4e79-3493-f27c-e6a4-29bd779964b5@oracle.com> (raw)
In-Reply-To: <816d894d-58df-8dba-9e3c-10d2ea5eb5bb@jp.fujitsu.com>
On 10/23/2017 12:44 PM, Misono, Tomohiro wrote:
> Move dev_to_fsid() from cmds-filesystem.c to cmds-fi-usage.c in order to
> call it from both "fi show" and "fi usage".
>
> Signed-off-by: Tomohiro Misono <misono.tomohiro@jp.fujitsu.com>
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Thanks, Anand
> ---
> cmds-fi-usage.c | 29 +++++++++++++++++++++++++++++
> cmds-fi-usage.h | 1 +
> cmds-filesystem.c | 27 ---------------------------
> 3 files changed, 30 insertions(+), 27 deletions(-)
>
> diff --git a/cmds-fi-usage.c b/cmds-fi-usage.c
> index 6c846c1..a72fb4e 100644
> --- a/cmds-fi-usage.c
> +++ b/cmds-fi-usage.c
> @@ -22,6 +22,7 @@
> #include <errno.h>
> #include <stdarg.h>
> #include <getopt.h>
> +#include <fcntl.h>
>
> #include "utils.h"
> #include "kerncompat.h"
> @@ -29,6 +30,7 @@
> #include "string-table.h"
> #include "cmds-fi-usage.h"
> #include "commands.h"
> +#include "disk-io.h"
>
> #include "version.h"
> #include "help.h"
> @@ -506,6 +508,33 @@ static int cmp_device_info(const void *a, const void *b)
> ((struct device_info *)b)->path);
> }
>
> +int dev_to_fsid(const char *dev, __u8 *fsid)
> +{
> + struct btrfs_super_block *disk_super;
> + char buf[BTRFS_SUPER_INFO_SIZE];
> + int ret;
> + int fd;
> +
> + fd = open(dev, O_RDONLY);
> + if (fd < 0) {
> + ret = -errno;
> + return ret;
> + }
> +
> + disk_super = (struct btrfs_super_block *)buf;
> + ret = btrfs_read_dev_super(fd, disk_super,
> + BTRFS_SUPER_INFO_OFFSET, SBREAD_DEFAULT);
> + if (ret)
> + goto out;
> +
> + memcpy(fsid, disk_super->fsid, BTRFS_FSID_SIZE);
> + ret = 0;
> +
> +out:
> + close(fd);
> + return ret;
> +}
> +
> /*
> * This function loads the device_info structure and put them in an array
> */
> diff --git a/cmds-fi-usage.h b/cmds-fi-usage.h
> index a399517..0e82951 100644
> --- a/cmds-fi-usage.h
> +++ b/cmds-fi-usage.h
> @@ -50,5 +50,6 @@ void print_device_chunks(struct device_info *devinfo,
> struct chunk_info *chunks_info_ptr,
> int chunks_info_count, unsigned unit_mode);
> void print_device_sizes(struct device_info *devinfo, unsigned unit_mode);
> +int dev_to_fsid(const char *dev, __u8 *fsid);
>
> #endif
> diff --git a/cmds-filesystem.c b/cmds-filesystem.c
> index c39f2d1..3dc86a2 100644
> --- a/cmds-filesystem.c
> +++ b/cmds-filesystem.c
> @@ -431,33 +431,6 @@ out:
> return !found;
> }
>
> -static int dev_to_fsid(const char *dev, __u8 *fsid)
> -{
> - struct btrfs_super_block *disk_super;
> - char buf[BTRFS_SUPER_INFO_SIZE];
> - int ret;
> - int fd;
> -
> - fd = open(dev, O_RDONLY);
> - if (fd < 0) {
> - ret = -errno;
> - return ret;
> - }
> -
> - disk_super = (struct btrfs_super_block *)buf;
> - ret = btrfs_read_dev_super(fd, disk_super,
> - BTRFS_SUPER_INFO_OFFSET, SBREAD_DEFAULT);
> - if (ret)
> - goto out;
> -
> - memcpy(fsid, disk_super->fsid, BTRFS_FSID_SIZE);
> - ret = 0;
> -
> -out:
> - close(fd);
> - return ret;
> -}
> -
> static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
> {
> struct btrfs_fs_devices *cur_seed, *next_seed;
>
next prev parent reply other threads:[~2017-10-24 1:42 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-23 4:43 [PATCH 0/2] btrfs-progs: fi: enable fi usage for filesystem top of seed device Misono, Tomohiro
2017-10-23 4:44 ` [PATCH 1/2] btrfs-progs: fi: move dev_to_fsid() to cmds-fi-usage for later use Misono, Tomohiro
2017-10-24 1:41 ` Anand Jain [this message]
2017-10-23 4:45 ` [PATCH 2/2] btrfs-progs: fi: enable fi usage for filesystem top of seed device Misono, Tomohiro
2017-10-24 1:48 ` Anand Jain
2017-10-26 18:36 ` [PATCH 0/2] " David Sterba
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dede4e79-3493-f27c-e6a4-29bd779964b5@oracle.com \
--to=anand.jain@oracle.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=misono.tomohiro@jp.fujitsu.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).