]> git.proxmox.com Git - ceph.git/blob - ceph/src/arch/intel.h
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / arch / intel.h
1 #ifndef CEPH_ARCH_INTEL_H
2 #define CEPH_ARCH_INTEL_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 extern int ceph_arch_intel_pclmul; /* true if we have PCLMUL features */
9 extern int ceph_arch_intel_sse42; /* true if we have sse 4.2 features */
10 extern int ceph_arch_intel_sse41; /* true if we have sse 4.1 features */
11 extern int ceph_arch_intel_ssse3; /* true if we have ssse 3 features */
12 extern int ceph_arch_intel_sse3; /* true if we have sse 3 features */
13 extern int ceph_arch_intel_sse2; /* true if we have sse 2 features */
14 extern int ceph_arch_intel_aesni; /* true if we have aesni features */
15
16 extern int ceph_arch_intel_probe(void);
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif