From: Mark Tinguely <tinguely@sgi.com>
To: Jeff Liu <jeff.liu@oracle.com>
Cc: xfs@oss.sgi.com
Subject: Re: [PATCH v2 1/2] xfsprogs: sync xfs_calc_buf_res() to the user space
Date: Mon, 28 Jan 2013 08:09:45 -0600 [thread overview]
Message-ID: <510686A9.3080600@sgi.com> (raw)
In-Reply-To: <51067F4B.8000605@oracle.com>
On 01/28/13 07:38, Jeff Liu wrote:
> Sync the new helper xfs_calc_buf_res() to the user space.
>
> Signed-off-by: Jie Liu<jeff.liu@oracle.com>
> ---
> libxfs/xfs_trans.c | 29 +++++++++++++++++++++++++++++
> 1 file changed, 29 insertions(+)
>
> diff --git a/libxfs/xfs_trans.c b/libxfs/xfs_trans.c
> index 635de8f..d7ff1a9 100644
> --- a/libxfs/xfs_trans.c
> +++ b/libxfs/xfs_trans.c
> @@ -23,6 +23,35 @@ kmem_zone_t *xfs_trans_zone;
> kmem_zone_t *xfs_log_item_desc_zone;
>
> /*
> + * A buffer has a format structure overhead in the log in addition
> + * to the data, so we need to take this into account when reserving
> + * space in a transaction for a buffer. Round the space required up
> + * to a multiple of 128 bytes so that we don't change the historical
> + * reservation that has been used for this overhead.
> + */
> +STATIC uint
> +xfs_buf_log_overhead(void)
> +{
> + return round_up(sizeof(struct xlog_op_header) +
> + sizeof(struct xfs_buf_log_format), 128);
> +}
> +
> +/*
> + * Calculate out transaction log reservation per item in bytes.
> + *
> + * The nbufs argument is used to indicate the number of items that
> + * will be changed in a transaction. size is used to tell how many
> + * bytes should be reserved per item.
> + */
> +STATIC uint
> +xfs_calc_buf_res(
> + uint nbufs,
> + uint size)
> +{
> + return nbufs * (size + xfs_buf_log_overhead());
> +}
> +
> +/*
> * Various log reservation values.
> *
> * These are based on the size of the file system block because that is what
Looks good.
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
prev parent reply other threads:[~2013-01-28 14:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-28 13:38 [PATCH v2 1/2] xfsprogs: sync xfs_calc_buf_res() to the user space Jeff Liu
2013-01-28 14:09 ` Mark Tinguely [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=510686A9.3080600@sgi.com \
--to=tinguely@sgi.com \
--cc=jeff.liu@oracle.com \
--cc=xfs@oss.sgi.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