diff mbox series

mm/vmscan.c:Fix -Wunused-but-set-variable warning

Message ID 20210924181218.21165-1-songkai01@inspur.com (mailing list archive)
State New
Headers show
Series mm/vmscan.c:Fix -Wunused-but-set-variable warning | expand

Commit Message

Harris Song Sept. 24, 2021, 6:12 p.m. UTC
We fix the following warning when building kernel with W=1:
mm/vmscan.c:1362:6: warning: variable 'err' set but not used [-Wunused-but-set-variable]

Signed-off-by: Kai Song <songkai01@inspur.com>
---
 mm/vmscan.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Yang Shi Sept. 27, 2021, 4:51 p.m. UTC | #1
On Sun, Sep 26, 2021 at 1:36 AM Kai Song <songkai01@inspur.com> wrote:
>
> We fix the following warning when building kernel with W=1:
> mm/vmscan.c:1362:6: warning: variable 'err' set but not used [-Wunused-but-set-variable]
>
> Signed-off-by: Kai Song <songkai01@inspur.com>

Reviewed-by: Yang Shi <shy828301@gmail.com>

> ---
>  mm/vmscan.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/mm/vmscan.c b/mm/vmscan.c
> index f8b43f131673..7cf702bc1959 100644
> --- a/mm/vmscan.c
> +++ b/mm/vmscan.c
> @@ -1359,7 +1359,6 @@ static unsigned int demote_page_list(struct list_head *demote_pages,
>  {
>         int target_nid = next_demotion_node(pgdat->node_id);
>         unsigned int nr_succeeded;
> -       int err;
>
>         if (list_empty(demote_pages))
>                 return 0;
> @@ -1368,7 +1367,7 @@ static unsigned int demote_page_list(struct list_head *demote_pages,
>                 return 0;
>
>         /* Demotion ignores all cpuset and mempolicy settings */
> -       err = migrate_pages(demote_pages, alloc_demote_page, NULL,
> +       migrate_pages(demote_pages, alloc_demote_page, NULL,
>                             target_nid, MIGRATE_ASYNC, MR_DEMOTION,
>                             &nr_succeeded);
>
> --
> 2.27.0
>
>
diff mbox series

Patch

diff --git a/mm/vmscan.c b/mm/vmscan.c
index f8b43f131673..7cf702bc1959 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -1359,7 +1359,6 @@  static unsigned int demote_page_list(struct list_head *demote_pages,
 {
 	int target_nid = next_demotion_node(pgdat->node_id);
 	unsigned int nr_succeeded;
-	int err;
 
 	if (list_empty(demote_pages))
 		return 0;
@@ -1368,7 +1367,7 @@  static unsigned int demote_page_list(struct list_head *demote_pages,
 		return 0;
 
 	/* Demotion ignores all cpuset and mempolicy settings */
-	err = migrate_pages(demote_pages, alloc_demote_page, NULL,
+	migrate_pages(demote_pages, alloc_demote_page, NULL,
 			    target_nid, MIGRATE_ASYNC, MR_DEMOTION,
 			    &nr_succeeded);