Skip to content

Commit 60ed633

Browse files
Xianting Tiantytso
authored andcommitted
jbd2: fix incorrect code style
Remove unnecessary blank. Signed-off-by: Xianting Tian <[email protected]> Reviewed-by: Jan Kara <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Theodore Ts'o <[email protected]>
1 parent 3d392b2 commit 60ed633

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

fs/jbd2/journal.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ journal_t *jbd2_journal_init_inode(struct inode *inode)
12851285
* superblock as being NULL to prevent the journal destroy from writing
12861286
* back a bogus superblock.
12871287
*/
1288-
static void journal_fail_superblock (journal_t *journal)
1288+
static void journal_fail_superblock(journal_t *journal)
12891289
{
12901290
struct buffer_head *bh = journal->j_sb_buffer;
12911291
brelse(bh);
@@ -1817,7 +1817,7 @@ int jbd2_journal_destroy(journal_t *journal)
18171817

18181818

18191819
/**
1820-
*int jbd2_journal_check_used_features () - Check if features specified are used.
1820+
*int jbd2_journal_check_used_features() - Check if features specified are used.
18211821
* @journal: Journal to check.
18221822
* @compat: bitmask of compatible features
18231823
* @ro: bitmask of features that force read-only mount
@@ -1827,7 +1827,7 @@ int jbd2_journal_destroy(journal_t *journal)
18271827
* features. Return true (non-zero) if it does.
18281828
**/
18291829

1830-
int jbd2_journal_check_used_features (journal_t *journal, unsigned long compat,
1830+
int jbd2_journal_check_used_features(journal_t *journal, unsigned long compat,
18311831
unsigned long ro, unsigned long incompat)
18321832
{
18331833
journal_superblock_t *sb;
@@ -1862,7 +1862,7 @@ int jbd2_journal_check_used_features (journal_t *journal, unsigned long compat,
18621862
* all of a given set of features on this journal. Return true
18631863
* (non-zero) if it can. */
18641864

1865-
int jbd2_journal_check_available_features (journal_t *journal, unsigned long compat,
1865+
int jbd2_journal_check_available_features(journal_t *journal, unsigned long compat,
18661866
unsigned long ro, unsigned long incompat)
18671867
{
18681868
if (!compat && !ro && !incompat)
@@ -1884,7 +1884,7 @@ int jbd2_journal_check_available_features (journal_t *journal, unsigned long com
18841884
}
18851885

18861886
/**
1887-
* int jbd2_journal_set_features () - Mark a given journal feature in the superblock
1887+
* int jbd2_journal_set_features() - Mark a given journal feature in the superblock
18881888
* @journal: Journal to act on.
18891889
* @compat: bitmask of compatible features
18901890
* @ro: bitmask of features that force read-only mount
@@ -1895,7 +1895,7 @@ int jbd2_journal_check_available_features (journal_t *journal, unsigned long com
18951895
*
18961896
*/
18971897

1898-
int jbd2_journal_set_features (journal_t *journal, unsigned long compat,
1898+
int jbd2_journal_set_features(journal_t *journal, unsigned long compat,
18991899
unsigned long ro, unsigned long incompat)
19001900
{
19011901
#define INCOMPAT_FEATURE_ON(f) \

0 commit comments

Comments
 (0)