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

Commit 2c0b80d4 authored by Nicholas Krause's avatar Nicholas Krause Committed by Linus Torvalds
Browse files

mm: make set_recommended_min_free_kbytes() return void



This makes set_recommended_min_free_kbytes() have a return type of void as
it cannot fail.

Signed-off-by: default avatarNicholas Krause <xerofoify@gmail.com>
Acked-by: default avatarMichal Hocko <mhocko@suse.cz>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 28c015d0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ static struct khugepaged_scan khugepaged_scan = {
};


static int set_recommended_min_free_kbytes(void)
static void set_recommended_min_free_kbytes(void)
{
	struct zone *zone;
	int nr_zones = 0;
@@ -141,7 +141,6 @@ static int set_recommended_min_free_kbytes(void)
		min_free_kbytes = recommended_min;
	}
	setup_per_zone_wmarks();
	return 0;
}

static int start_stop_khugepaged(void)