[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1425448948-16359-1-git-send-email-fabf@skynet.be>
Date: Wed, 4 Mar 2015 07:02:27 +0100
From: Fabian Frederick <fabf@...net.be>
To: linux-kernel@...r.kernel.org
Cc: joe@...ches.com, Fabian Frederick <fabf@...net.be>,
Dave Chinner <david@...morbit.com>, xfs@....sgi.com
Subject: [PATCH V2 linux-next] xfs: use bool instead of int in xfs_rename()
new_parent and src_is_directory are only used in 0/1 context.
Signed-off-by: Fabian Frederick <fabf@...net.be>
---
V2: Also convert src_is_directory (suggested by Joe Perches)
fs/xfs/xfs_inode.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 5a44f1c..33aa725 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -2860,8 +2860,8 @@ xfs_rename(
{
xfs_trans_t *tp = NULL;
xfs_mount_t *mp = src_dp->i_mount;
- int new_parent; /* moving to a new dir */
- int src_is_directory; /* src_name is a directory */
+ bool new_parent; /* moving to a new dir */
+ bool src_is_directory; /* src_name is a directory */
int error;
xfs_bmap_free_t free_list;
xfs_fsblock_t first_block;
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists