um: Add checks to mtu parameter parsing
Adds a sanity check to the parsing of mtu command line param Signed-off-by: Anton Ivanov <anton.ivanov@cambridgegreys.com> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
77f1073c2c
commit
5853193103
|
@ -121,7 +121,8 @@ static int get_mtu(struct arglist *def)
|
|||
|
||||
if (mtu != NULL) {
|
||||
if (kstrtoul(mtu, 10, &result) == 0)
|
||||
return result;
|
||||
if ((result < (1 << 16) - 1) && (result >= 576))
|
||||
return result;
|
||||
}
|
||||
return ETH_MAX_PACKET;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue