linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Благодаренко Артём" <artem.blagodarenko@gmail.com>
To: Andreas Dilger <adilger@dilger.ca>
Cc: linux-ext4 <linux-ext4@vger.kernel.org>, adilger.kernel@dilger.ca
Subject: Re: [PATCH] ext2fs: add ext2fs_read_sb that returns superblock
Date: Thu, 3 Oct 2019 18:58:12 +0300	[thread overview]
Message-ID: <4CE33DD0-C911-4D3B-B46F-C19EAC34F9A9@gmail.com> (raw)
In-Reply-To: <FED4628E-3B0D-45C7-92A6-FCBB71F187B0@dilger.ca>

Thanks.

Sorry, not good new call time for me, but I can join occasionally.
I joined today, but too late.

Best regards,
Artem Blagodarenko.

> On 3 Oct 2019, at 18:55, Andreas Dilger <adilger@dilger.ca> wrote:
> 
> We just discussed this on the ext4 developer concall today, and Ted is looking into it. 
> 
> Cheers, Andreas
> 
>> On Oct 3, 2019, at 09:47, Благодаренко Артём <artem.blagodarenko@gmail.com> wrote:
>> 
>> Hello,
>> 
>> Does anybody wants to give any feedback for this?
>> e2label became really faster on large partitions with this patch. Probably it can be useful.
>> 
>> Ted, what do you think?
>> 
>> Thanks,
>> Artem Blagodarenko.
>> 
>> 
>> 
>>> On 5 Sep 2019, at 14:01, Artem Blagodarenko <artem.blagodarenko@gmail.com> wrote:
>>> 
>>> tune2fs is used to make e2label duties.  ext2fs_open2() reads group
>>> descriptors which are not used during disk label obtaining, but takes
>>> a lot of time on large partitions.
>>> 
>>> This patch adds ext2fs_read_sb(), there only initialized superblock
>>> is returned This saves time dramatically.
>>> 
>>> Signed-off-by: Artem Blagodarenko <c17828@cray.com>
>>> Cray-bug-id: LUS-5777
>>> ---
>>> lib/ext2fs/ext2fs.h |  2 ++
>>> lib/ext2fs/openfs.c | 16 ++++++++++++++++
>>> misc/tune2fs.c      | 23 +++++++++++++++--------
>>> 3 files changed, 33 insertions(+), 8 deletions(-)
>>> 
>>> diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h
>>> index 59fd9742..3a63b74d 100644
>>> --- a/lib/ext2fs/ext2fs.h
>>> +++ b/lib/ext2fs/ext2fs.h
>>> @@ -1630,6 +1630,8 @@ extern int ext2fs_journal_sb_start(int blocksize);
>>> extern errcode_t ext2fs_open(const char *name, int flags, int superblock,
>>>                unsigned int block_size, io_manager manager,
>>>                ext2_filsys *ret_fs);
>>> +extern errcode_t ext2fs_read_sb(const char *name, io_manager manager,
>>> +                struct ext2_super_block * super);
>>> extern errcode_t ext2fs_open2(const char *name, const char *io_options,
>>>                 int flags, int superblock,
>>>                 unsigned int block_size, io_manager manager,
>>> diff --git a/lib/ext2fs/openfs.c b/lib/ext2fs/openfs.c
>>> index 51b54a44..95f45d84 100644
>>> --- a/lib/ext2fs/openfs.c
>>> +++ b/lib/ext2fs/openfs.c
>>> @@ -99,6 +99,22 @@ static void block_sha_map_free_entry(void *data)
>>>   return;
>>> }
>>> 
>>> +errcode_t ext2fs_read_sb(const char *name, io_manager manager,
>>> +             struct ext2_super_block * super)
>>> +{
>>> +    io_channel    io;
>>> +    errcode_t    retval = 0;
>>> +
>>> +    retval = manager->open(name, 0, &io);
>>> +    if (!retval) {
>>> +        retval = io_channel_read_blk(io, 1, -SUPERBLOCK_SIZE,
>>> +                     super);
>>> +        io_channel_close(io);
>>> +    }
>>> +
>>> +    return retval;
>>> +}
>>> +
>>> /*
>>> *  Note: if superblock is non-zero, block-size must also be non-zero.
>>> *    Superblock and block_size can be zero to use the default size.
>>> diff --git a/misc/tune2fs.c b/misc/tune2fs.c
>>> index 7d2d38d7..fea607e1 100644
>>> --- a/misc/tune2fs.c
>>> +++ b/misc/tune2fs.c
>>> @@ -2879,6 +2879,21 @@ int tune2fs_main(int argc, char **argv)
>>> #endif
>>>       io_ptr = unix_io_manager;
>>> 
>>> +    if (print_label) {
>>> +        /* For e2label emulation */
>>> +        struct ext2_super_block sb;
>>> +
>>> +        /* Read only superblock. Nothing else metters.*/
>>> +        retval = ext2fs_read_sb(device_name, io_ptr, &sb);
>>> +        if (!retval) {
>>> +            printf("%.*s\n", (int) sizeof(sb.s_volume_name),
>>> +                   sb.s_volume_name);
>>> +        }
>>> +
>>> +        remove_error_table(&et_ext2_error_table);
>>> +        return retval;
>>> +    }
>>> +
>>> retry_open:
>>>   if ((open_flag & EXT2_FLAG_RW) == 0 || f_flag)
>>>       open_flag |= EXT2_FLAG_SKIP_MMP;
>>> @@ -2972,14 +2987,6 @@ retry_open:
>>>   sb = fs->super;
>>>   fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
>>> 
>>> -    if (print_label) {
>>> -        /* For e2label emulation */
>>> -        printf("%.*s\n", (int) sizeof(sb->s_volume_name),
>>> -               sb->s_volume_name);
>>> -        remove_error_table(&et_ext2_error_table);
>>> -        goto closefs;
>>> -    }
>>> -
>>>   retval = ext2fs_check_if_mounted(device_name, &mount_flags);
>>>   if (retval) {
>>>       com_err("ext2fs_check_if_mount", retval,
>>> -- 
>>> 2.14.3
>>> 
>> 


  reply	other threads:[~2019-10-03 17:41 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-05 11:01 [PATCH] ext2fs: add ext2fs_read_sb that returns superblock Artem Blagodarenko
2019-09-17 18:22 ` Благодаренко Артём
2019-09-17 20:20   ` Andreas Dilger
2019-10-03 15:47 ` Благодаренко Артём
2019-10-03 15:55   ` Andreas Dilger
2019-10-03 15:58     ` Благодаренко Артём [this message]
2019-10-03 16:01 ` Darrick J. Wong
2019-10-03 16:18   ` Благодаренко Артём
2019-10-22 22:56 ` Theodore Y. Ts'o

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=4CE33DD0-C911-4D3B-B46F-C19EAC34F9A9@gmail.com \
    --to=artem.blagodarenko@gmail.com \
    --cc=adilger.kernel@dilger.ca \
    --cc=adilger@dilger.ca \
    --cc=linux-ext4@vger.kernel.org \
    /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).