From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 32DB3C43217 for ; Fri, 21 Jan 2022 15:21:41 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.259390.447696 (Exim 4.92) (envelope-from ) id 1nAvjD-0003PS-0Z; Fri, 21 Jan 2022 15:21:27 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 259390.447696; Fri, 21 Jan 2022 15:21:26 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1nAvjC-0003NW-Oe; Fri, 21 Jan 2022 15:21:26 +0000 Received: by outflank-mailman (input) for mailman id 259390; Fri, 21 Jan 2022 15:21:25 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1nAvjB-0003JS-Ac for xen-devel@lists.xenproject.org; Fri, 21 Jan 2022 15:21:25 +0000 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by se1-gles-flk1.inumbo.com (Halon) with ESMTPS id cacafca7-7acd-11ec-bc18-3156f6d857e4; Fri, 21 Jan 2022 16:21:23 +0100 (CET) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id D2AF61F3AF; Fri, 21 Jan 2022 15:21:22 +0000 (UTC) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 8F971139FE; Fri, 21 Jan 2022 15:21:22 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id PxigIXLP6mFpAgAAMHmgww (envelope-from ); Fri, 21 Jan 2022 15:21:22 +0000 X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: cacafca7-7acd-11ec-bc18-3156f6d857e4 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1642778482; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=pu+D+XCV5vakBgyLlB2J5yNghvXJQ9cT+8my8T+L11k=; b=Bu7Skq5TmnupxfKDph4EDSNRAYMfEOCNB3P7GfQHqMFLsH/lF39t8nbXbP6j9JWP+vDnrI 4BUwrlFuQvYYOD3VoCP8I69W4X0KS1WAmF0v46qaSJ8b12LdYbyBMC9IW5LHZJR6g5qqmK xmIfAPVmzXhlHyyDeCI7qzGwoaVGLwU= From: Juergen Gross To: xen-devel@lists.xenproject.org Cc: Juergen Gross , Wei Liu , Julien Grall , Anthony PERARD Subject: [PATCH v2 0/3] tools/xenstore: simplify hashtable implementation Date: Fri, 21 Jan 2022 16:21:17 +0100 Message-Id: <20220121152120.23160-1-jgross@suse.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Do some simplifications in the hashtable implementation not touching the hashtable interfaces. Juergen Gross (3): tools/xenstore: merge hashtable_private.h into hashtable.c tools/xenstore: fix hashtable_expand() zeroing new area tools/xenstore: drop DEFINE_HASHTABLE_* macros and usage intro tools/xenstore/hashtable.c | 34 ++++++++++-- tools/xenstore/hashtable.h | 76 -------------------------- tools/xenstore/hashtable_private.h | 85 ------------------------------ 3 files changed, 29 insertions(+), 166 deletions(-) delete mode 100644 tools/xenstore/hashtable_private.h -- 2.31.1