All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ext4:an improvement in ext4 feature inline_data
@ 2013-05-26 13:19 boxi liu
  2013-05-26 13:40 ` Tao Ma
  0 siblings, 1 reply; 3+ messages in thread
From: boxi liu @ 2013-05-26 13:19 UTC (permalink / raw)
  To: Theodore Tso; +Cc: Robin Dong, linux-ext4, tm

In ext4 feature inline_data,it use the xattr's space to store the
inline data in inode.When we calculate the inline data as the xattr,we
add the pad.But in get_max_inline_xattr_value_size() function we count
the free space without pad.It cause some contents are moved to a block
even if it can be
stored in the inode.

Signed-off-by:liulei <lewis.liulei@huawei.com>
---
 fs/ext4/inline.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
index c0fd1a1..87758ca 100644
--- a/fs/ext4/inline.c
+++ b/fs/ext4/inline.c
@@ -71,7 +71,7 @@ static int get_max_inline_xattr_value_size(struct
inode *inode,
                entry = (struct ext4_xattr_entry *)
                        ((void *)raw_inode + EXT4_I(inode)->i_inline_off);

-               free += le32_to_cpu(entry->e_value_size);
+               free += EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
                goto out;
        }

--

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ext4:an improvement in ext4 feature inline_data
  2013-05-26 13:19 [PATCH] ext4:an improvement in ext4 feature inline_data boxi liu
@ 2013-05-26 13:40 ` Tao Ma
  2013-06-18 15:21   ` Theodore Ts'o
  0 siblings, 1 reply; 3+ messages in thread
From: Tao Ma @ 2013-05-26 13:40 UTC (permalink / raw)
  To: boxi liu; +Cc: Theodore Tso, Robin Dong, linux-ext4

On 05/26/2013 09:19 PM, boxi liu wrote:
> In ext4 feature inline_data,it use the xattr's space to store the
> inline data in inode.When we calculate the inline data as the xattr,we
> add the pad.But in get_max_inline_xattr_value_size() function we count
> the free space without pad.It cause some contents are moved to a block
> even if it can be
> stored in the inode.
> 
> Signed-off-by:liulei <lewis.liulei@huawei.com>
Reviewed-by: Tao Ma <boyu.mt@taobao.com>

Thanks,
Tao
> ---
>  fs/ext4/inline.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
> index c0fd1a1..87758ca 100644
> --- a/fs/ext4/inline.c
> +++ b/fs/ext4/inline.c
> @@ -71,7 +71,7 @@ static int get_max_inline_xattr_value_size(struct
> inode *inode,
>                 entry = (struct ext4_xattr_entry *)
>                         ((void *)raw_inode + EXT4_I(inode)->i_inline_off);
> 
> -               free += le32_to_cpu(entry->e_value_size);
> +               free += EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
>                 goto out;
>         }
> 
> --
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ext4:an improvement in ext4 feature inline_data
  2013-05-26 13:40 ` Tao Ma
@ 2013-06-18 15:21   ` Theodore Ts'o
  0 siblings, 0 replies; 3+ messages in thread
From: Theodore Ts'o @ 2013-06-18 15:21 UTC (permalink / raw)
  To: Tao Ma; +Cc: boxi liu, Robin Dong, linux-ext4

On Sun, May 26, 2013 at 09:40:41PM +0800, Tao Ma wrote:
> On 05/26/2013 09:19 PM, boxi liu wrote:
> > In ext4 feature inline_data,it use the xattr's space to store the
> > inline data in inode.When we calculate the inline data as the xattr,we
> > add the pad.But in get_max_inline_xattr_value_size() function we count
> > the free space without pad.It cause some contents are moved to a block
> > even if it can be
> > stored in the inode.
> > 
> > Signed-off-by:liulei <lewis.liulei@huawei.com>
> Reviewed-by: Tao Ma <boyu.mt@taobao.com>

Applied, thanks.

					- Ted

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-18 15:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-26 13:19 [PATCH] ext4:an improvement in ext4 feature inline_data boxi liu
2013-05-26 13:40 ` Tao Ma
2013-06-18 15:21   ` Theodore Ts'o

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.