Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f71b2f10 authored by Dave Kleikamp's avatar Dave Kleikamp Committed by Linus Torvalds
Browse files

[PATCH] JBD: Make journal_brelse_array() static



It's always good to make symbols static when we can, and this also eliminates
the need to rename the function in jbd2

Suggested by Eric Sandeen.

Signed-off-by: default avatarDave Kleikamp <shaggy@austin.ibm.com>
Cc: Eric Sandeen <sandeen@sandeen.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4efd587b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -46,7 +46,7 @@ static int scan_revoke_records(journal_t *, struct buffer_head *,
#ifdef __KERNEL__
#ifdef __KERNEL__


/* Release readahead buffers after use */
/* Release readahead buffers after use */
void journal_brelse_array(struct buffer_head *b[], int n)
static void journal_brelse_array(struct buffer_head *b[], int n)
{
{
	while (--n >= 0)
	while (--n >= 0)
		brelse (b[n]);
		brelse (b[n]);
+0 −1
Original line number Original line Diff line number Diff line
@@ -977,7 +977,6 @@ extern void journal_write_revoke_records(journal_t *, transaction_t *);
extern int	journal_set_revoke(journal_t *, unsigned long, tid_t);
extern int	journal_set_revoke(journal_t *, unsigned long, tid_t);
extern int	journal_test_revoke(journal_t *, unsigned long, tid_t);
extern int	journal_test_revoke(journal_t *, unsigned long, tid_t);
extern void	journal_clear_revoke(journal_t *);
extern void	journal_clear_revoke(journal_t *);
extern void	journal_brelse_array(struct buffer_head *b[], int n);
extern void	journal_switch_revoke_table(journal_t *journal);
extern void	journal_switch_revoke_table(journal_t *journal);


/*
/*