xor.h 415 B

123456789101112131415161718192021
  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. extern struct xor_block_template xor_block_xc;
  10. #undef XOR_TRY_TEMPLATES
  11. #define XOR_TRY_TEMPLATES \
  12. do { \
  13. xor_speed(&xor_block_xc); \
  14. } while (0)
  15. #define XOR_SELECT_TEMPLATE(FASTEST) (&xor_block_xc)
  16. #endif /* _ASM_S390_XOR_H */