summaryrefslogtreecommitdiff
path: root/backport/backport-include/crypto/algapi.h
blob: ac6ea84840737e39db461de7f23c2aceb08bd92a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __BP_ALGAPI_H
#define __BP_ALGAPI_H
#include <linux/version.h>
#include_next <crypto/algapi.h>

#if LINUX_VERSION_IS_LESS(3,13,0) && \
    !LINUX_VERSION_IN_RANGE(3,12,59, 3,12,255) && \
    !LINUX_VERSION_IN_RANGE(3,10,106, 3,10,255)
#define __crypto_memneq LINUX_BACKPORT(__crypto_memneq)
noinline unsigned long __crypto_memneq(const void *a, const void *b, size_t size);
#define crypto_memneq LINUX_BACKPORT(crypto_memneq)
static inline int crypto_memneq(const void *a, const void *b, size_t size)
{
        return __crypto_memneq(a, b, size) != 0UL ? 1 : 0;
}
#endif

#endif /* __BP_ALGAPI_H */