From d3b3dd8e88383054f74a8301616770c76166a113 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Tue, 22 Aug 2017 13:04:33 +0200 Subject: [PATCH] Add hashlib support for hashing of pools --- kernel/hashlib.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kernel/hashlib.h b/kernel/hashlib.h index 63ac956f2..df534ec1b 100644 --- a/kernel/hashlib.h +++ b/kernel/hashlib.h @@ -868,6 +868,13 @@ public: return !operator==(other); } + bool hash() const { + unsigned int hashval = mkhash_init; + for (auto &it : entries) + hashval ^= ops.hash(it.udata); + return hashval; + } + void reserve(size_t n) { entries.reserve(n); } size_t size() const { return entries.size(); } bool empty() const { return entries.empty(); } -- 2.30.2