Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:fpregs_get

Proto:int fpregs_get(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, void *kbuf, void __user *ubuf)

Type:int

Parameter:

TypeParameterName
struct task_struct *target
const struct user_regset *regset
unsigned intpos
unsigned intcount
void *kbuf
void __user *ubuf
299  fpu = Floating point and extended processor state
302  This function must be called before we read a task's fpstate
304  If Not boot_cpu_has(Onboard FPU ) Then Return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf)
307  If Not boot_cpu_has(FXSAVE/FXRSTOR, CR4.OSFXSR ) Then Return These are helpers for writing regset get/set functions in arch code
312  When executing XSAVEOPT (or other optimized XSAVE instructions), if* a processor implementation detects that an FPU state component is still* (or is again) in its initialized state, it may clear the corresponding* bit in the header
314  If kbuf && pos == 0 && count == size of env Then
315  FXSR floating point environment conversions.
316  Return 0
319  FXSR floating point environment conversions.
321  Return These are helpers for writing regset get/set functions in arch code
Caller
NameDescribe
dump_fpuFPU state for core dumps.* This is only used for a.out dumps now.* It is declared generically using elf_fpregset_t (which is* struct user_i387_struct) but is in fact only used for 32-bit* dumps, so on 64-bit it is really struct user_i387_ia32_struct.