Skip to content
Snippets Groups Projects
Commit 637f23ab authored by Dan Carpenter's avatar Dan Carpenter Committed by Chris Metcalf
Browse files

tile: array underflow in setup_maxnodemem()


My static checker correctly complains that we should have a lower bound
on "node" to prevent an array underflow.

Fixes: 867e359b ("arch/tile: core support for Tilera 32-bit chips.")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarChris Metcalf <cmetcalf@mellanox.com>
parent 7c88f2bf
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ static int __init setup_maxnodemem(char *str)
{
char *endp;
unsigned long long maxnodemem;
long node;
unsigned long node;
node = str ? simple_strtoul(str, &endp, 0) : INT_MAX;
if (node >= MAX_NUMNODES || *endp != ':')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment