mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
71ae8aac3e
We introduce a new hashing library that is meant to be used in the contexts where speed is more important than uniformity of the hashed values. The hash library leverages architecture specific implementation to achieve high performance and fall backs to jhash() for the generic case. On Intel-based x86 architectures, the library can exploit the crc32l instruction, part of the Intel SSE4.2 instruction set, if the instruction is supported by the processor. This implementation is twice as fast as the jhash() implementation on an i7 processor. Additional architectures, such as Arm64 provide instructions for accelerating the computation of CRC, so they could be added as well in follow-up work. Signed-off-by: Francesco Fusco <ffusco@redhat.com> Signed-off-by: Daniel Borkmann <dborkman@redhat.com> Signed-off-by: Thomas Graf <tgraf@redhat.com> Cc: linux-kernel@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
8 lines
162 B
C
8 lines
162 B
C
#ifndef _ASM_X86_HASH_H
|
|
#define _ASM_X86_HASH_H
|
|
|
|
struct fast_hash_ops;
|
|
extern void setup_arch_fast_hash(struct fast_hash_ops *ops);
|
|
|
|
#endif /* _ASM_X86_HASH_H */
|