xor.h (7a9787e1eba95a166265e6a260cf30af04ef0a99) xor.h (2cfc5f9ce7f5e17553e84d36ea9563e677e369d1)
1#include <asm-generic/xor.h>
1/*
2 * Optimited xor routines
3 *
4 * Copyright IBM Corp. 2016
5 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
6 */
7#ifndef _ASM_S390_XOR_H
8#define _ASM_S390_XOR_H
9
10extern struct xor_block_template xor_block_xc;
11
12#undef XOR_TRY_TEMPLATES
13#define XOR_TRY_TEMPLATES \
14do { \
15 xor_speed(&xor_block_xc); \
16} while (0)
17
18#define XOR_SELECT_TEMPLATE(FASTEST) (&xor_block_xc)
19
20#endif /* _ASM_S390_XOR_H */