Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.8-rc1 11 lines 248 B view raw
1 2#include <asm/fpu/api.h> 3 4/* 5 * may_use_simd - whether it is allowable at this time to issue SIMD 6 * instructions or access the SIMD register file 7 */ 8static __must_check inline bool may_use_simd(void) 9{ 10 return irq_fpu_usable(); 11}