cregit-Linux how code gets into the kernel

Release 4.7 arch/s390/include/asm/fpu/types.h

/*
 * FPU data structures
 *
 * Copyright IBM Corp. 2015
 * Author(s): Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
 */

#ifndef _ASM_S390_FPU_TYPES_H

#define _ASM_S390_FPU_TYPES_H

#include <asm/sigcontext.h>


struct fpu {
	
__u32 fpc;		/* Floating-point control */
	
void *regs;		/* Pointer to the current save area */
	union {
		/* Floating-point register save area */
		
freg_t fprs[__NUM_FPRS];
		/* Vector register save area */
		
__vector128 vxrs[__NUM_VXRS];
	};
};

/* VX array structure for address operand constraints in inline assemblies */


struct vx_array { __vector128 _[__NUM_VXRS]; };

#endif /* _ASM_S390_FPU_TYPES_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
hendrik bruecknerhendrik brueckner4680.70%150.00%
martin schwidefskymartin schwidefsky1119.30%150.00%
Total57100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}