From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43090) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCWKp-00074e-Pi for qemu-devel@nongnu.org; Wed, 30 Jul 2014 12:02:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XCWKj-0001jL-Lg for qemu-devel@nongnu.org; Wed, 30 Jul 2014 12:02:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:34102) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCWKj-0001j7-Dj for qemu-devel@nongnu.org; Wed, 30 Jul 2014 12:02:29 -0400 Message-ID: <53D9170D.1060204@redhat.com> Date: Wed, 30 Jul 2014 18:02:21 +0200 From: Laszlo Ersek MIME-Version: 1.0 References: <1406631139-6754-1-git-send-email-stefanb@us.ibm.com> <20140730132027.GA26025@redhat.com> <53D902F6.1050106@redhat.com> <20140730144623.GA26956@redhat.com> <53D90C19.80005@redhat.com> <20140730153738.GG26313@redhat.com> In-Reply-To: <20140730153738.GG26313@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] Add ACPI tables for TPM List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: Stefan Berger , qemu-devel@nongnu.org, Stefan Berger On 07/30/14 17:37, Michael S. Tsirkin wrote: > 1. execute alloc instructions, building a data structure mapping fwcfg > file names to memory. Yes, edk2 currently lacks a good (== sub-linear) dictionary data type. This week I started porting a red-black tree library that I had originally written in 1999 or 2000 or so. In OVMF coding I've faced a few occasions when I would have wanted a dictionary, and one of them is the above. Laszlo