linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Brian Foster <bfoster@redhat.com>
To: Christoph Hellwig <hch@lst.de>
Cc: xfs@oss.sgi.com
Subject: Re: [PATCH 2/5] xfs: fold xfs_attr_get_int into xfs_attr_get
Date: Mon, 5 May 2014 16:21:14 -0400	[thread overview]
Message-ID: <20140505202114.GC12448@laptop.bfoster> (raw)
In-Reply-To: <1399130415-5382-3-git-send-email-hch@lst.de>

On Sat, May 03, 2014 at 05:20:12PM +0200, Christoph Hellwig wrote:
> This allows doing an unlocked check if an attr for is present at all and
> slightly reduce the lock hold time if we actually do an attr get.
> 
> Plus various minor style fixes to the new xfs_attr_get.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---

Reviewed-by: Brian Foster <bfoster@redhat.com>

>  fs/xfs/xfs_attr.c |   79 ++++++++++++++++++-----------------------------------
>  1 file changed, 27 insertions(+), 52 deletions(-)
> 
> diff --git a/fs/xfs/xfs_attr.c b/fs/xfs/xfs_attr.c
> index eb3ae8f..01f2267 100644
> --- a/fs/xfs/xfs_attr.c
> +++ b/fs/xfs/xfs_attr.c
> @@ -106,26 +106,34 @@ xfs_inode_hasattr(
>   * Overall external interface routines.
>   *========================================================================*/
>  
> -STATIC int
> -xfs_attr_get_int(
> +int
> +xfs_attr_get(
>  	struct xfs_inode	*ip,
> -	struct xfs_name		*name,
> +	const unsigned char	*name,
>  	unsigned char		*value,
>  	int			*valuelenp,
>  	int			flags)
>  {
> -	xfs_da_args_t   args;
> -	int             error;
> +	struct xfs_da_args	args;
> +	struct xfs_name		xname;
> +	uint			lock_mode;
> +	int			error;
> +
> +	XFS_STATS_INC(xs_attr_get);
> +
> +	if (XFS_FORCED_SHUTDOWN(ip->i_mount))
> +		return EIO;
>  
>  	if (!xfs_inode_hasattr(ip))
>  		return ENOATTR;
>  
> -	/*
> -	 * Fill in the arg structure for this request.
> -	 */
> -	memset((char *)&args, 0, sizeof(args));
> -	args.name = name->name;
> -	args.namelen = name->len;
> +	error = xfs_attr_name_to_xname(&xname, name);
> +	if (error)
> +		return error;
> +
> +	memset(&args, 0, sizeof(args));
> +	args.name = xname.name;
> +	args.namelen = xname.len;
>  	args.value = value;
>  	args.valuelen = *valuelenp;
>  	args.flags = flags;
> @@ -133,52 +141,19 @@ xfs_attr_get_int(
>  	args.dp = ip;
>  	args.whichfork = XFS_ATTR_FORK;
>  
> -	/*
> -	 * Decide on what work routines to call based on the inode size.
> -	 */
> -	if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
> +	lock_mode = xfs_ilock_attr_map_shared(ip);
> +	if (!xfs_inode_hasattr(ip))
> +		error = ENOATTR;
> +	else if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL)
>  		error = xfs_attr_shortform_getvalue(&args);
> -	} else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK)) {
> +	else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK))
>  		error = xfs_attr_leaf_get(&args);
> -	} else {
> +	else
>  		error = xfs_attr_node_get(&args);
> -	}
> +	xfs_iunlock(ip, lock_mode);
>  
> -	/*
> -	 * Return the number of bytes in the value to the caller.
> -	 */
>  	*valuelenp = args.valuelen;
> -
> -	if (error == EEXIST)
> -		error = 0;
> -	return(error);
> -}
> -
> -int
> -xfs_attr_get(
> -	xfs_inode_t	*ip,
> -	const unsigned char *name,
> -	unsigned char	*value,
> -	int		*valuelenp,
> -	int		flags)
> -{
> -	int		error;
> -	struct xfs_name	xname;
> -	uint		lock_mode;
> -
> -	XFS_STATS_INC(xs_attr_get);
> -
> -	if (XFS_FORCED_SHUTDOWN(ip->i_mount))
> -		return(EIO);
> -
> -	error = xfs_attr_name_to_xname(&xname, name);
> -	if (error)
> -		return error;
> -
> -	lock_mode = xfs_ilock_attr_map_shared(ip);
> -	error = xfs_attr_get_int(ip, &xname, value, valuelenp, flags);
> -	xfs_iunlock(ip, lock_mode);
> -	return(error);
> +	return error == EEXIST ? 0 : error;
>  }
>  
>  /*
> -- 
> 1.7.10.4
> 
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

  reply	other threads:[~2014-05-05 20:21 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-03 15:20 attr cleanups Christoph Hellwig
2014-05-03 15:20 ` [PATCH 1/5] xfs: fold xfs_attr_set_int into xfs_attr_set Christoph Hellwig
2014-05-05 20:21   ` Brian Foster
2014-05-03 15:20 ` [PATCH 2/5] xfs: fold xfs_attr_get_int into xfs_attr_get Christoph Hellwig
2014-05-05 20:21   ` Brian Foster [this message]
2014-05-03 15:20 ` [PATCH 3/5] xfs: fold xfs_attr_remove_int into xfs_attr_remove Christoph Hellwig
2014-05-05 20:21   ` Brian Foster
2014-05-05 20:56     ` Dave Chinner
2014-05-05 21:08       ` Brian Foster
2014-05-03 15:20 ` [PATCH 4/5] xfs: simplify attr name setup Christoph Hellwig
2014-05-05 20:21   ` Brian Foster
2014-05-03 15:20 ` [PATCH 5/5] xfs: pass struct da_args to xfs_attr_calc_size Christoph Hellwig
2014-05-05 20:21   ` Brian Foster
2014-05-06  8:06     ` [PATCH 5/5 v2] " Christoph Hellwig
2014-05-06  9:09       ` Dave Chinner
2014-05-03 16:04 ` attr cleanups Mark Tinguely
2014-05-04 10:16   ` Christoph Hellwig
2014-05-04 21:52     ` Dave Chinner
2014-05-05 13:24     ` Mark Tinguely
2014-05-05 20:55       ` Dave Chinner
2014-05-06 19:40         ` Mark Tinguely
2014-05-06 20:51           ` Dave Chinner

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=20140505202114.GC12448@laptop.bfoster \
    --to=bfoster@redhat.com \
    --cc=hch@lst.de \
    --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;
as well as URLs for NNTP newsgroup(s).