diff mbox series

[10/12] xfs: clean up printing the allocsize option in xfs_showargs

Message ID 20191027145547.25157-11-hch@lst.de (mailing list archive)
State New, archived
Headers show
Series [01/12] xfs: remove the biosize mount option | expand

Commit Message

Christoph Hellwig Oct. 27, 2019, 2:55 p.m. UTC
Remove superflous cast.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 fs/xfs/xfs_super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Darrick J. Wong Oct. 28, 2019, 5:13 p.m. UTC | #1
On Sun, Oct 27, 2019 at 03:55:45PM +0100, Christoph Hellwig wrote:
> Remove superflous cast.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Looks ok,
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

--D

> ---
>  fs/xfs/xfs_super.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
> index f21c59822a38..93ed0871b1cf 100644
> --- a/fs/xfs/xfs_super.c
> +++ b/fs/xfs/xfs_super.c
> @@ -446,7 +446,7 @@ xfs_showargs(
>  
>  	if (mp->m_flags & XFS_MOUNT_ALLOCSIZE)
>  		seq_printf(m, ",allocsize=%dk",
> -				(int)(1 << mp->m_allocsize_log) >> 10);
> +			   (1 << mp->m_allocsize_log) >> 10);
>  
>  	if (mp->m_logbufs > 0)
>  		seq_printf(m, ",logbufs=%d", mp->m_logbufs);
> -- 
> 2.20.1
>
diff mbox series

Patch

diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
index f21c59822a38..93ed0871b1cf 100644
--- a/fs/xfs/xfs_super.c
+++ b/fs/xfs/xfs_super.c
@@ -446,7 +446,7 @@  xfs_showargs(
 
 	if (mp->m_flags & XFS_MOUNT_ALLOCSIZE)
 		seq_printf(m, ",allocsize=%dk",
-				(int)(1 << mp->m_allocsize_log) >> 10);
+			   (1 << mp->m_allocsize_log) >> 10);
 
 	if (mp->m_logbufs > 0)
 		seq_printf(m, ",logbufs=%d", mp->m_logbufs);