From patchwork Tue Jun 20 16:33:35 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Oliver Upton X-Patchwork-Id: 13286191 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B94E6C0015E for ; Tue, 20 Jun 2023 16:34:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230453AbjFTQeg (ORCPT ); Tue, 20 Jun 2023 12:34:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56880 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231833AbjFTQeS (ORCPT ); Tue, 20 Jun 2023 12:34:18 -0400 Received: from out-25.mta0.migadu.com (out-25.mta0.migadu.com [91.218.175.25]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 015461992 for ; Tue, 20 Jun 2023 09:34:16 -0700 (PDT) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1687278855; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=9YpD01o6UPhM5WsJPhZO7V/DerMefZkxr+zZT/DMt3w=; b=l269BUmws6WJNXZ2rJPbOyzNrMt4hsmaIkGKHGp3fexy5ujW9xom6pdPazB1SY3PmASoW7 yypsD965CgcWE9X01JrAv66jnHwWhRS13ChJzuXrnfuCPAgD2jgMplGo2f9RsbHI3Gn7yP ZsfNlWfed4CqDbGX6LO7Om/RnT70eXI= From: Oliver Upton To: kvmarm@lists.linux.dev Cc: kvm@vger.kernel.org, Marc Zyngier , James Morse , Suzuki K Poulose , Zenghui Yu , Will Deacon , Julien Thierry , Salil Mehta , Oliver Upton Subject: [PATCH v2 02/20] update_headers: Add missing entries to list of headers to copy Date: Tue, 20 Jun 2023 11:33:35 -0500 Message-ID: <20230620163353.2688567-3-oliver.upton@linux.dev> In-Reply-To: <20230620163353.2688567-1-oliver.upton@linux.dev> References: <20230620163353.2688567-1-oliver.upton@linux.dev> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org There are a few headers in kvmtool that are not handled by the updater script. Add them to the list of headers to update. Signed-off-by: Oliver Upton --- util/update_headers.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/update_headers.sh b/util/update_headers.sh index 4c1be7e..5720151 100755 --- a/util/update_headers.sh +++ b/util/update_headers.sh @@ -10,6 +10,9 @@ set -ue GENERIC_LIST="kvm.h \ + psci.h \ + vfio.h \ + vhost.h \ virtio_9p.h \ virtio_balloon.h \ virtio_blk.h \