Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\kernel\setup.c Create Date:2022-07-28 07:40:02
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:parse_reservelow

Proto:static int __init parse_reservelow(char *p)

Type:int

Parameter:

TypeParameterName
char *p
795  If Not p Then Return -EINVAL
798  size = memparse - parse a string with mem suffixes into a number*@ptr: Where parse begins*@retptr: (output) Optional pointer to next char after parse completes* Parses a string into a number. The number stored at @ptr is
800  If size < 4096 Then size = 4096
803  If size > 640 * 1024 Then size = 640 * 1024
806  reserve_low = size
808  Return 0