From nobody Sun Oct 5 21:14:36 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1500645182245202.434706541482; Fri, 21 Jul 2017 06:53:02 -0700 (PDT) Received: from localhost ([::1]:43325 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dYYMV-000747-W3 for importer@patchew.org; Fri, 21 Jul 2017 09:53:00 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47347) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dYYKr-00069W-Kd for qemu-devel@nongnu.org; Fri, 21 Jul 2017 09:51:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dYYKq-0002kr-RG for qemu-devel@nongnu.org; Fri, 21 Jul 2017 09:51:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59600) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dYYKl-0002dQ-Jj; Fri, 21 Jul 2017 09:51:11 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 81A282F86C1; Fri, 21 Jul 2017 13:51:10 +0000 (UTC) Received: from red.redhat.com (ovpn-120-37.rdu2.redhat.com [10.10.120.37]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6C6AF88D7D; Fri, 21 Jul 2017 13:51:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 81A282F86C1 Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=eblake@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 81A282F86C1 From: Eric Blake To: qemu-devel@nongnu.org Date: Fri, 21 Jul 2017 08:50:47 -0500 Message-Id: <20170721135047.25005-3-eblake@redhat.com> In-Reply-To: <20170721135047.25005-1-eblake@redhat.com> References: <20170721135047.25005-1-eblake@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Fri, 21 Jul 2017 13:51:10 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 2/2] maint: Reorder include directives for qemu-{nbd, io} X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , Paolo Bonzini , "open list:Block layer core" , Max Reitz Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" HACKING recommends listing system includes right after osdep.h, and before any other in-project headers. Signed-off-by: Eric Blake --- qemu-img.c | 3 ++- qemu-nbd.c | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/qemu-img.c b/qemu-img.c index eb32b93e90..f4d5f0d77d 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -22,6 +22,8 @@ * THE SOFTWARE. */ #include "qemu/osdep.h" +#include + #include "qemu-version.h" #include "qapi/error.h" #include "qapi/util.h" @@ -43,7 +45,6 @@ #include "block/qapi.h" #include "crypto/init.h" #include "trace/control.h" -#include #define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \ "\n" QEMU_COPYRIGHT "\n" diff --git a/qemu-nbd.c b/qemu-nbd.c index 1086934a95..b8666bb575 100644 --- a/qemu-nbd.c +++ b/qemu-nbd.c @@ -17,6 +17,10 @@ */ #include "qemu/osdep.h" +#include +#include +#include + #include "qapi/error.h" #include "qemu-common.h" #include "qemu/cutils.h" @@ -38,10 +42,6 @@ #include "trace/control.h" #include "qemu-version.h" -#include -#include -#include - #define SOCKET_PATH "/var/lock/qemu-nbd-%s" #define QEMU_NBD_OPT_CACHE 256 #define QEMU_NBD_OPT_AIO 257 --=20 2.13.3