Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\kstrtox.c Create Date:2022-07-28 06:26:36
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:kstrtos8_from_user

Proto:int kstrtos8_from_user(const char *s, size_t count, unsigned int base, s8 *res)

Type:int

Parameter:

TypeParameterName
const char *s
size_tcount
unsigned intbase
s8 *res
410  count = __builtin_choose_expr(((!!( size of 1 == 1 )) && ((sizeof(int) == size of *If 8 Then count * 0l Else 8 ) && (sizeof(int) == size of *If 8 Then ( size of buf - 1) * 0l Else 8 ))), ((count) < ( size of buf - 1) ? (count) : ( size of buf - 1)), ({typeof(count)__UNIQUE_ID___x = (count);typeof( size of buf - 1)__UNIQUE_ID___y = ( size of buf - 1);((__UNIQUE_ID___x) < (__UNIQUE_ID___y) ? (__UNIQUE_ID___x) : (__UNIQUE_ID___y));}))
410  If copy_from_user(buf, s, count) Then Return -EFAULT
410  buf[count] = '\0'
410  Return kstrtos8(buf, base, res)