From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56668) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gfAcs-0004iP-HG for qemu-devel@nongnu.org; Thu, 03 Jan 2019 16:34:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gfAcn-0003NB-In for qemu-devel@nongnu.org; Thu, 03 Jan 2019 16:34:02 -0500 From: Leonid Bloch Date: Thu, 3 Jan 2019 21:33:53 +0000 Message-ID: <20190103213320.2653-1-lbloch@janustech.com> Content-Language: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: [Qemu-devel] [PATCH v2 0/1] include: Auto-generate the sizes lookup table List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "qemu-devel@nongnu.org" Cc: "qemu-block@nongnu.org" , Stefan Weil , Max Reitz , Kevin Wolf , =?iso-8859-1?Q?Philippe_Mathieu-Daud=E9?= , Leonid Bloch , Alberto Garcia , Markus Armbruster Following the conversations here: https://patchwork.kernel.org/patch/10665157 and here: https://patchwork.kernel.org/patch/10666975 Making the lookup table for power-of-two sizes auto-generated, instead of being hard-coded into the units.h file. I'm not sure if the changes I've made to Makefile here are "standard". Please correct me if that's not the case. Sorry it took so much time - I was busy with something completely different. Regards, Leonid. --- Differences from v1: * The generated header moved from $(SRC_PATH)/include/qemu/sizes.h to pow2_sizes.h in the build directory. * The commit message mentions the commit which is partially reverted by the current commit. * Small changes in the comments of the generated header file. Leonid Bloch (1): include: Auto-generate the sizes lookup table .gitignore | 1 + Makefile | 5 +++ block/qcow2.h | 2 +- block/vdi.c | 1 + include/qemu/units.h | 73 -------------------------------------------- scripts/gen-sizes.sh | 66 +++++++++++++++++++++++++++++++++++++++ 6 files changed, 74 insertions(+), 74 deletions(-) create mode 100755 scripts/gen-sizes.sh --=20 2.20.1