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