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

Commit f322980b authored by Liam R. Howlett's avatar Liam R. Howlett Committed by David S. Miller
Browse files

sparc/mm/hugepages: Fix setup_hugepagesz for invalid values.



hugetlb_bad_size needs to be called on invalid values.  Also change the
pr_warn to a pr_err to better align with other platforms.

Signed-off-by: default avatarLiam R. Howlett <Liam.Howlett@Oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c982aa9c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -358,7 +358,8 @@ static int __init setup_hugepagesz(char *string)
	}

	if ((hv_pgsz_mask & cpu_pgsz_mask) == 0U) {
		pr_warn("hugepagesz=%llu not supported by MMU.\n",
		hugetlb_bad_size();
		pr_err("hugepagesz=%llu not supported by MMU.\n",
			hugepage_size);
		goto out;
	}