mirror of https://gitee.com/openkylin/linux.git
reiserfs: clean up several indentation issues
There are several places where code is indented incorrectly. Fix these. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Link: http://lkml.kernel.org/r/20200325135018.113431-1-colin.king@canonical.com Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0bd476e6c6
commit
5404e7e0ac
|
@ -842,7 +842,7 @@ static void balance_leaf_paste_right_whole(struct tree_balance *tb,
|
||||||
struct item_head *pasted;
|
struct item_head *pasted;
|
||||||
struct buffer_info bi;
|
struct buffer_info bi;
|
||||||
|
|
||||||
buffer_info_init_right(tb, &bi);
|
buffer_info_init_right(tb, &bi);
|
||||||
leaf_shift_right(tb, tb->rnum[0], tb->rbytes);
|
leaf_shift_right(tb, tb->rnum[0], tb->rbytes);
|
||||||
|
|
||||||
/* append item in R[0] */
|
/* append item in R[0] */
|
||||||
|
|
|
@ -184,11 +184,12 @@ int reiserfs_unpack(struct inode *inode, struct file *filp)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we need to make sure nobody is changing the file size beneath us */
|
/* we need to make sure nobody is changing the file size beneath us */
|
||||||
{
|
{
|
||||||
int depth = reiserfs_write_unlock_nested(inode->i_sb);
|
int depth = reiserfs_write_unlock_nested(inode->i_sb);
|
||||||
inode_lock(inode);
|
|
||||||
reiserfs_write_lock_nested(inode->i_sb, depth);
|
inode_lock(inode);
|
||||||
}
|
reiserfs_write_lock_nested(inode->i_sb, depth);
|
||||||
|
}
|
||||||
|
|
||||||
reiserfs_write_lock(inode->i_sb);
|
reiserfs_write_lock(inode->i_sb);
|
||||||
|
|
||||||
|
|
|
@ -838,10 +838,10 @@ static int reiserfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode
|
||||||
*/
|
*/
|
||||||
INC_DIR_INODE_NLINK(dir)
|
INC_DIR_INODE_NLINK(dir)
|
||||||
|
|
||||||
retval = reiserfs_new_inode(&th, dir, mode, NULL /*symlink */ ,
|
retval = reiserfs_new_inode(&th, dir, mode, NULL /*symlink */,
|
||||||
old_format_only(dir->i_sb) ?
|
old_format_only(dir->i_sb) ?
|
||||||
EMPTY_DIR_SIZE_V1 : EMPTY_DIR_SIZE,
|
EMPTY_DIR_SIZE_V1 : EMPTY_DIR_SIZE,
|
||||||
dentry, inode, &security);
|
dentry, inode, &security);
|
||||||
if (retval) {
|
if (retval) {
|
||||||
DEC_DIR_INODE_NLINK(dir)
|
DEC_DIR_INODE_NLINK(dir)
|
||||||
goto out_failed;
|
goto out_failed;
|
||||||
|
@ -967,7 +967,7 @@ static int reiserfs_rmdir(struct inode *dir, struct dentry *dentry)
|
||||||
reiserfs_update_sd(&th, inode);
|
reiserfs_update_sd(&th, inode);
|
||||||
|
|
||||||
DEC_DIR_INODE_NLINK(dir)
|
DEC_DIR_INODE_NLINK(dir)
|
||||||
dir->i_size -= (DEH_SIZE + de.de_entrylen);
|
dir->i_size -= (DEH_SIZE + de.de_entrylen);
|
||||||
reiserfs_update_sd(&th, dir);
|
reiserfs_update_sd(&th, dir);
|
||||||
|
|
||||||
/* prevent empty directory from getting lost */
|
/* prevent empty directory from getting lost */
|
||||||
|
|
Loading…
Reference in New Issue