Re: [PATCH 2/9] xfs: remove unnecessary dirty bli format check for ordered bufs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This looks generally good, but I have a few nitpicks, too :)

On Fri, Aug 25, 2017 at 11:05:50AM -0400, Brian Foster wrote:
> -	bool			clean;
> +	bool			dirty;
>  	bool			aborted;
> +	bool			ordered;

Can we just initialize all these variables here at the declaration

> +	 * The bli dirty state should match whether the blf has logged segments
> +	 * except for ordered buffers, where only the bli should be dirty.
>  	 */
> +	dirty = (flags & XFS_BLI_DIRTY) ? true : false;
> +	ordered = (flags & XFS_BLI_ORDERED) ? true : false;

No need for the "? true : false" both for these two and the existing
aborted case.

> +/*
> + * Return true if the buffer has any ranges logged/dirtied by a transaction,
> + * false otherwise.
> + */
> +bool
> +xfs_buf_item_dirty_format(

Do you need this outside of xfs_buf_item.c later?

--
To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [XFS Filesystem Development (older mail)]     [Linux Filesystem Development]     [Linux Audio Users]     [Yosemite Trails]     [Linux Kernel]     [Linux RAID]     [Linux SCSI]


  Powered by Linux