From ef8104118c27062e7c6eff5ecda5764400d75977 Mon Sep 17 00:00:00 2001 From: dlg Date: Thu, 22 Dec 2022 04:43:52 +0000 Subject: [PATCH] provide stoeplitz_n32() --- sys/net/toeplitz.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/net/toeplitz.h b/sys/net/toeplitz.h index 3f30fd4b739..3ce66ead3ba 100644 --- a/sys/net/toeplitz.h +++ b/sys/net/toeplitz.h @@ -1,4 +1,4 @@ -/* $OpenBSD: toeplitz.h,v 1.8 2021/02/24 23:44:04 dlg Exp $ */ +/* $OpenBSD: toeplitz.h,v 1.9 2022/12/22 04:43:52 dlg Exp $ */ /* * Copyright (c) 2019 David Gwynne @@ -118,6 +118,8 @@ extern const struct stoeplitz_cache *const stoeplitz_cache; #define stoeplitz_n16(_n16) \ stoeplitz_hash_n16(stoeplitz_cache, (_n16)) +#define stoeplitz_n32(_n32) \ + stoeplitz_hash_n32(stoeplitz_cache, (_n32)) #define stoeplitz_h16(_h16) \ stoeplitz_hash_h16(stoeplitz_cache, (_h16)) #define stoeplitz_h32(_h32) \ -- 2.20.1