split dev_queue
[cor.git] / include / asm-generic / simd.h
blobd0343d58a74a19460bc3c03e7eb7073ae11261fa
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #include <linux/hardirq.h>
5 /*
6 * may_use_simd - whether it is allowable at this time to issue SIMD
7 * instructions or access the SIMD register file
9 * As architectures typically don't preserve the SIMD register file when
10 * taking an interrupt, !in_interrupt() should be a reasonable default.
12 static __must_check inline bool may_use_simd(void)
14 return !in_interrupt();