From: "Vladimir 'φ-coder/phcoder' Serbinenko" <phcoder@gmail.com>
To: The development of GNU GRUB <grub-devel@gnu.org>
Subject: Re: [PATCH] * grub-core/fs/ext2.c (grub_ext2_read_block): Factor out common code for indirect block handling.
Date: Wed, 13 Nov 2013 18:58:14 +0100 [thread overview]
Message-ID: <5283BDB6.10709@gmail.com> (raw)
In-Reply-To: <20131113113352.GK16147@riva.ucam.org>
[-- Attachment #1: Type: text/plain, Size: 5953 bytes --]
On 13.11.2013 12:33, Colin Watson wrote:
> Saves 185 bytes on compressed image.
Go ahead.
> ---
> ChangeLog | 7 ++++
> grub-core/fs/ext2.c | 119 +++++++++++++++++-----------------------------------
> 2 files changed, 45 insertions(+), 81 deletions(-)
>
> diff --git a/ChangeLog b/ChangeLog
> index 716f69c..4454fd8 100644
> --- a/ChangeLog
> +++ b/ChangeLog
> @@ -1,5 +1,12 @@
> 2013-11-13 Colin Watson <cjwatson@ubuntu.com>
>
> + * grub-core/fs/ext2.c (grub_ext2_read_block): Factor out common
> + code for indirect block handling.
> +
> + Saves 185 bytes on compressed image.
> +
> +2013-11-13 Colin Watson <cjwatson@ubuntu.com>
> +
> * util/grub-editenv.c (help_filter, argp): Document how to delete
> the whole environment block.
> Reported by Dan Jacobson. Fixes Debian bug #726265.
> diff --git a/grub-core/fs/ext2.c b/grub-core/fs/ext2.c
> index aba5cb1..5f7a2b9 100644
> --- a/grub-core/fs/ext2.c
> +++ b/grub-core/fs/ext2.c
> @@ -397,9 +397,12 @@ grub_ext2_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
> {
> struct grub_ext2_data *data = node->data;
> struct grub_ext2_inode *inode = &node->inode;
> - grub_disk_addr_t blknr = -1;
> unsigned int blksz = EXT2_BLOCK_SIZE (data);
> + grub_disk_addr_t blksz_quarter = blksz / 4;
> int log2_blksz = LOG2_EXT2_BLOCK_SIZE (data);
> + int log_perblock = log2_blksz + 9 - 2;
> + grub_uint32_t indir;
> + int shift;
>
> if (inode->flags & grub_cpu_to_le32_compile_time (EXT4_EXTENTS_FLAG))
> {
> @@ -448,96 +451,50 @@ grub_ext2_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
>
> return ret;
> }
> +
> /* Direct blocks. */
> if (fileblock < INDIRECT_BLOCKS)
> - blknr = grub_le_to_cpu32 (inode->blocks.dir_blocks[fileblock]);
> + return grub_le_to_cpu32 (inode->blocks.dir_blocks[fileblock]);
> + fileblock -= INDIRECT_BLOCKS;
> /* Indirect. */
> - else if (fileblock < INDIRECT_BLOCKS + blksz / 4)
> + if (fileblock < blksz_quarter)
> {
> - grub_uint32_t indir;
> -
> - if (grub_disk_read (data->disk,
> - ((grub_disk_addr_t)
> - grub_le_to_cpu32 (inode->blocks.indir_block))
> - << log2_blksz,
> - (fileblock - INDIRECT_BLOCKS) * sizeof (indir),
> - sizeof (indir), &indir))
> - return grub_errno;
> -
> - blknr = grub_le_to_cpu32 (indir);
> + indir = inode->blocks.indir_block;
> + shift = 0;
> + goto indirect;
> }
> + fileblock -= blksz_quarter;
> /* Double indirect. */
> - else if (fileblock < INDIRECT_BLOCKS
> - + blksz / 4 * ((grub_disk_addr_t) blksz / 4 + 1))
> + if (fileblock < blksz_quarter * blksz_quarter)
> {
> - int log_perblock = log2_blksz + 9 - 2;
> - grub_disk_addr_t rblock = fileblock - (INDIRECT_BLOCKS
> - + blksz / 4);
> - grub_uint32_t indir;
> -
> - if (grub_disk_read (data->disk,
> - ((grub_disk_addr_t)
> - grub_le_to_cpu32 (inode->blocks.double_indir_block))
> - << log2_blksz,
> - (rblock >> log_perblock) * sizeof (indir),
> - sizeof (indir), &indir))
> - return grub_errno;
> -
> - if (grub_disk_read (data->disk,
> - ((grub_disk_addr_t)
> - grub_le_to_cpu32 (indir))
> - << log2_blksz,
> - (rblock & ((1 << log_perblock) - 1)) * sizeof (indir),
> - sizeof (indir), &indir))
> - return grub_errno;
> -
> -
> - blknr = grub_le_to_cpu32 (indir);
> + indir = inode->blocks.double_indir_block;
> + shift = 1;
> + goto indirect;
> }
> - /* triple indirect. */
> - else if (fileblock < INDIRECT_BLOCKS + blksz / 4 * ((grub_disk_addr_t) blksz / 4 + 1)
> - + ((grub_disk_addr_t) blksz / 4) * ((grub_disk_addr_t) blksz / 4)
> - * ((grub_disk_addr_t) blksz / 4 + 1))
> + fileblock -= blksz_quarter * blksz_quarter;
> + /* Triple indirect. */
> + if (fileblock < blksz_quarter * blksz_quarter * (blksz_quarter + 1))
> {
> - int log_perblock = log2_blksz + 9 - 2;
> - grub_disk_addr_t rblock = fileblock - (INDIRECT_BLOCKS + blksz / 4
> - * (blksz / 4 + 1));
> - grub_uint32_t indir;
> -
> - if (grub_disk_read (data->disk,
> - ((grub_disk_addr_t)
> - grub_le_to_cpu32 (inode->blocks.triple_indir_block))
> - << log2_blksz,
> - ((rblock >> log_perblock) >> log_perblock)
> - * sizeof (indir), sizeof (indir), &indir))
> - return grub_errno;
> -
> - if (grub_disk_read (data->disk,
> - ((grub_disk_addr_t)
> - grub_le_to_cpu32 (indir))
> - << log2_blksz,
> - ((rblock >> log_perblock)
> - & ((1 << log_perblock) - 1)) * sizeof (indir),
> - sizeof (indir), &indir))
> - return grub_errno;
> -
> - if (grub_disk_read (data->disk,
> - ((grub_disk_addr_t)
> - grub_le_to_cpu32 (indir))
> - << log2_blksz,
> - (rblock & ((1 << log_perblock) - 1))
> - * sizeof (indir), sizeof (indir), &indir))
> - return grub_errno;
> -
> - blknr = grub_le_to_cpu32 (indir);
> + indir = inode->blocks.triple_indir_block;
> + shift = 2;
> + goto indirect;
> }
> - else
> - {
> - grub_error (GRUB_ERR_BAD_FS,
> - "ext2fs doesn't support quadruple indirect blocks");
> - }
> -
> - return blknr;
> + return grub_error (GRUB_ERR_BAD_FS,
> + "ext2fs doesn't support quadruple indirect blocks");
> +
> +indirect:
> + do {
> + if (grub_disk_read (data->disk,
> + ((grub_disk_addr_t) grub_le_to_cpu32 (indir))
> + << log2_blksz,
> + ((fileblock >> (log_perblock * shift))
> + & ((1 << log_perblock) - 1))
> + * sizeof (indir),
> + sizeof (indir), &indir))
> + return grub_errno;
> + } while (shift--);
> +
> + return grub_le_to_cpu32 (indir);
> }
>
> /* Read LEN bytes from the file described by DATA starting with byte
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 291 bytes --]
prev parent reply other threads:[~2013-11-13 17:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-13 11:33 [PATCH] * grub-core/fs/ext2.c (grub_ext2_read_block): Factor out common code for indirect block handling Colin Watson
2013-11-13 17:58 ` Vladimir 'φ-coder/phcoder' Serbinenko [this message]
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=5283BDB6.10709@gmail.com \
--to=phcoder@gmail.com \
--cc=grub-devel@gnu.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).