2019-04-14 11:25:38

by Bharath Vedartham

[permalink] [raw]
Subject: [PATCH] fs/reiserfs/journal.c: Make remove_journal_hash static

This fixes the -WDecl sparse warning in journal.c. Function was declared
as static void but the definition was void.

Signed-off-by: Bharath Vedartham <[email protected]>
---
fs/reiserfs/journal.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/reiserfs/journal.c b/fs/reiserfs/journal.c
index 8a76f9d..36346dc 100644
--- a/fs/reiserfs/journal.c
+++ b/fs/reiserfs/journal.c
@@ -1844,7 +1844,7 @@ static int flush_used_journal_lists(struct super_block *s,
* removes any nodes in table with name block and dev as bh.
* only touchs the hnext and hprev pointers.
*/
-void remove_journal_hash(struct super_block *sb,
+static void remove_journal_hash(struct super_block *sb,
struct reiserfs_journal_cnode **table,
struct reiserfs_journal_list *jl,
unsigned long block, int remove_freed)
--
2.7.4


2019-04-15 09:48:47

by Jan Kara

[permalink] [raw]
Subject: Re: [PATCH] fs/reiserfs/journal.c: Make remove_journal_hash static

On Sun 14-04-19 16:54:38, Bharath Vedartham wrote:
> This fixes the -WDecl sparse warning in journal.c. Function was declared
> as static void but the definition was void.
>
> Signed-off-by: Bharath Vedartham <[email protected]>

Thanks! I've added your patch into my tree.

Honza

> ---
> fs/reiserfs/journal.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/reiserfs/journal.c b/fs/reiserfs/journal.c
> index 8a76f9d..36346dc 100644
> --- a/fs/reiserfs/journal.c
> +++ b/fs/reiserfs/journal.c
> @@ -1844,7 +1844,7 @@ static int flush_used_journal_lists(struct super_block *s,
> * removes any nodes in table with name block and dev as bh.
> * only touchs the hnext and hprev pointers.
> */
> -void remove_journal_hash(struct super_block *sb,
> +static void remove_journal_hash(struct super_block *sb,
> struct reiserfs_journal_cnode **table,
> struct reiserfs_journal_list *jl,
> unsigned long block, int remove_freed)
> --
> 2.7.4
>
--
Jan Kara <[email protected]>
SUSE Labs, CR

2019-04-15 15:08:09

by Bharath Vedartham

[permalink] [raw]
Subject: Re: [PATCH] fs/reiserfs/journal.c: Make remove_journal_hash static

On Mon, Apr 15, 2019 at 11:47:39AM +0200, Jan Kara wrote:
> On Sun 14-04-19 16:54:38, Bharath Vedartham wrote:
> > This fixes the -WDecl sparse warning in journal.c. Function was declared
> > as static void but the definition was void.
> >
> > Signed-off-by: Bharath Vedartham <[email protected]>
>
> Thanks! I've added your patch into my tree.
>
Thanks Jan!
> Honza
>
> > ---
> > fs/reiserfs/journal.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/fs/reiserfs/journal.c b/fs/reiserfs/journal.c
> > index 8a76f9d..36346dc 100644
> > --- a/fs/reiserfs/journal.c
> > +++ b/fs/reiserfs/journal.c
> > @@ -1844,7 +1844,7 @@ static int flush_used_journal_lists(struct super_block *s,
> > * removes any nodes in table with name block and dev as bh.
> > * only touchs the hnext and hprev pointers.
> > */
> > -void remove_journal_hash(struct super_block *sb,
> > +static void remove_journal_hash(struct super_block *sb,
> > struct reiserfs_journal_cnode **table,
> > struct reiserfs_journal_list *jl,
> > unsigned long block, int remove_freed)
> > --
> > 2.7.4
> >
> --
> Jan Kara <[email protected]>
> SUSE Labs, CR