linux – 内核函数“get_fs()”中的“fs”缩写是什么?
作者:互联网
有两个Linux内核函数:
get_ds()和get_fs()
根据this article,我知道ds是数据段的缩写.
但是,我无法猜出“fs”的缩写.
有什么解释吗?
解决方法:
FS来自386 architecture(第二段末尾)上名为FS的附加段寄存器.
我的猜测是,在DS for Data Segment和ES for Extra Segment之后,英特尔只是选择了字母表中的下一个字符(FS,GS).您可以在右侧图形上的wiki page上看到386寄存器.
从我的Linux Mint系统上的linux内核源码(arch / x86 / include / asm / uaccess.h):
/*
* The fs value determines whether argument validity checking should be
* performed or not. If get_fs() == USER_DS, checking is performed, with
* get_fs() == KERNEL_DS, checking is bypassed.
*
* For historical reasons, these macros are grossly misnamed.
*/
#define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
#define KERNEL_DS MAKE_MM_SEG(-1UL)
#define USER_DS MAKE_MM_SEG(TASK_SIZE_MAX)
#define get_ds() (KERNEL_DS)
#define get_fs() (current_thread_info()->addr_limit)
#define set_fs(x) (current_thread_info()->addr_limit = (x))
标签:linux,api,conventions,kernel,linux-kernel 来源: https://codeday.me/bug/20190816/1665585.html