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 X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1B859C433E0 for ; Mon, 13 Jul 2020 07:52:23 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E425020702 for ; Mon, 13 Jul 2020 07:52:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E425020702 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=irrelevant.dk Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:55852 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jutGA-0006Sd-2O for qemu-devel@archiver.kernel.org; Mon, 13 Jul 2020 03:52:22 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36094) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jutFV-0005Yu-Oi; Mon, 13 Jul 2020 03:51:41 -0400 Received: from charlie.dont.surf ([128.199.63.193]:41572) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jutFT-00026G-EW; Mon, 13 Jul 2020 03:51:41 -0400 Received: from apples.localdomain (80-167-98-190-cable.dk.customer.tdc.net [80.167.98.190]) by charlie.dont.surf (Postfix) with ESMTPSA id 7B21DBF506; Mon, 13 Jul 2020 07:51:35 +0000 (UTC) Date: Mon, 13 Jul 2020 09:51:32 +0200 From: Klaus Jensen To: Philippe =?utf-8?Q?Mathieu-Daud=C3=A9?= Subject: Re: [PATCH v3 0/4] hw/block/nvme: Fix I/O BAR structure Message-ID: <20200713075132.GA35777@apples.localdomain> References: <20200630110429.19972-1-philmd@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20200630110429.19972-1-philmd@redhat.com> Received-SPF: pass client-ip=128.199.63.193; envelope-from=its@irrelevant.dk; helo=charlie.dont.surf X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/13 03:51:36 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , qemu-block@nongnu.org, Klaus Jensen , qemu-devel@nongnu.org, Max Reitz , Keith Busch Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" On Jun 30 13:04, Philippe Mathieu-Daudé wrote: > Improvements for the I/O BAR structure: > - correct pmrmsc register size (Klaus) > - pack structures > - align to 4KB > > Since v2: > - Added Klaus' tags with correct address > > $ git backport-diff -u v2 > Key: > [----] : patches are identical > [####] : number of functional differences between upstream/downstream patch > [down] : patch is downstream-only > The flags [FC] indicate (F)unctional and (C)ontextual differences, respectively > > 001/4:[----] [--] 'hw/block/nvme: Update specification URL' > 002/4:[----] [--] 'hw/block/nvme: Use QEMU_PACKED on hardware/packet structures' > 003/4:[----] [--] 'hw/block/nvme: Fix pmrmsc register size' > 004/4:[----] [--] 'hw/block/nvme: Align I/O BAR to 4 KiB' > > Philippe Mathieu-Daudé (4): > hw/block/nvme: Update specification URL > hw/block/nvme: Use QEMU_PACKED on hardware/packet structures > hw/block/nvme: Fix pmrmsc register size > hw/block/nvme: Align I/O BAR to 4 KiB > > include/block/nvme.h | 42 ++++++++++++++++++++++-------------------- > hw/block/nvme.c | 7 +++---- > 2 files changed, 25 insertions(+), 24 deletions(-) > > -- > 2.21.3 > > Thanks Philippe! Applied to nvme-next.