mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-04 04:04:19 +00:00
ext4: fix coding style in file.c
Fixed a few coding style issues in file.c Signed-off-by: Dio Putra <dioput12@gmail.com> Link: https://lore.kernel.org/r/239fcd8f-d33f-8621-9e82-0416dd3f9c94@gmail.com Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
parent
e0f49d270d
commit
e030a28810
@ -145,8 +145,7 @@ static int ext4_release_file(struct inode *inode, struct file *filp)
|
|||||||
/* if we are the last writer on the inode, drop the block reservation */
|
/* if we are the last writer on the inode, drop the block reservation */
|
||||||
if ((filp->f_mode & FMODE_WRITE) &&
|
if ((filp->f_mode & FMODE_WRITE) &&
|
||||||
(atomic_read(&inode->i_writecount) == 1) &&
|
(atomic_read(&inode->i_writecount) == 1) &&
|
||||||
!EXT4_I(inode)->i_reserved_data_blocks)
|
!EXT4_I(inode)->i_reserved_data_blocks) {
|
||||||
{
|
|
||||||
down_write(&EXT4_I(inode)->i_data_sem);
|
down_write(&EXT4_I(inode)->i_data_sem);
|
||||||
ext4_discard_preallocations(inode);
|
ext4_discard_preallocations(inode);
|
||||||
up_write(&EXT4_I(inode)->i_data_sem);
|
up_write(&EXT4_I(inode)->i_data_sem);
|
||||||
@ -810,7 +809,7 @@ static int ext4_sample_last_mounted(struct super_block *sb,
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ext4_file_open(struct inode * inode, struct file * filp)
|
static int ext4_file_open(struct inode *inode, struct file *filp)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user