Received: by 10.223.185.116 with SMTP id b49csp657147wrg; Fri, 16 Feb 2018 05:11:48 -0800 (PST) X-Google-Smtp-Source: AH8x226hRy1ZHY0D4hnws3BLi2VTydlGd63nmuT3n7eHsXvxI2CkNNad4LOFVYG5pcpFfQBG6bjD X-Received: by 10.99.191.15 with SMTP id v15mr5256906pgf.216.1518786708097; Fri, 16 Feb 2018 05:11:48 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518786708; cv=none; d=google.com; s=arc-20160816; b=w31W5Sf8pk3QOdgNEjB2qxK+cxDPfd7H5IfOVPrFgt+JjFXsFPZZdKTfJ1Ot4X1vMM iKBqnp3bZDMdlaW9Y0Lz3BioWEt5RMvz/m5RTubwQGkta446J+mxgcBJpk8mZFg9Jy9e vlaPMy4jL6S6Dg/NKEV0WF6ZYHUFNh0bSm+AV77HQQtkj1KuaaTQNz9XhoBOy7qUmN4/ G40Jps9kl2fHNTv9cEC7wM3yLJXsr9vc4/jYTrW3ssAjfwkVf0kIhp7ApFOZgPrVmpXC ITjiL/nwie8Wa9Ki8nbhmTyKDDc75lHV6Of9lPLFRy26EgZyl/huE/i07HRNNg9mCxee TQQQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=o3V+EiuMPmL2OS1O345OtkduBYSR11bpCZjKVFPOFw0=; b=gBQ+a6SLKROScAgqldsPWsgsBm9AED0sesOQhUnTLx6IycHAt7/jBVC33iJHftyYqQ Kkzw5gTqBOz78JsukbsOR+hA4cqHSCba7KqvljnvDUeJFRP1BOrwWiblEypti4qxf7Zj a6uxi4DgKuaIHmhzPMgHLatd3+E3IPVZB7X5NsDkAWhn0B664ICeNsDzjEiKDhNziKds mI+mDfDaXrRm1/gcpUhX6fdy9b0k16VCZMTvq1s7j3eceB27TgZ0vTcYsLrvikWdYt3A lkzGRCAgEZfJByut52N1a/TChu6Av9ctwhCiWSObS17m3oSkHeGU7418JdBlcImbMCVf tWUQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f1si1499203pfn.167.2018.02.16.05.11.33; Fri, 16 Feb 2018 05:11:48 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1166407AbeBOS1V (ORCPT + 99 others); Thu, 15 Feb 2018 13:27:21 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:52354 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1163221AbeBOPZm (ORCPT ); Thu, 15 Feb 2018 10:25:42 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 7793510EF; Thu, 15 Feb 2018 15:25:41 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Michal Suchanek , Michael Ellerman Subject: [PATCH 4.9 01/88] powerpc/pseries: include linux/types.h in asm/hvcall.h Date: Thu, 15 Feb 2018 16:16:28 +0100 Message-Id: <20180215151222.616200916@linuxfoundation.org> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180215151222.437136975@linuxfoundation.org> References: <20180215151222.437136975@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Michal Suchanek commit 1b689a95ce7427075f9ac9fb4aea1af530742b7f upstream. Commit 6e032b350cd1 ("powerpc/powernv: Check device-tree for RFI flush settings") uses u64 in asm/hvcall.h without including linux/types.h This breaks hvcall.h users that do not include the header themselves. Fixes: 6e032b350cd1 ("powerpc/powernv: Check device-tree for RFI flush settings") Signed-off-by: Michal Suchanek Signed-off-by: Michael Ellerman Signed-off-by: Greg Kroah-Hartman --- arch/powerpc/include/asm/hvcall.h | 1 + 1 file changed, 1 insertion(+) --- a/arch/powerpc/include/asm/hvcall.h +++ b/arch/powerpc/include/asm/hvcall.h @@ -319,6 +319,7 @@ #define H_CPU_BEHAV_BNDS_CHK_SPEC_BAR (1ull << 61) // IBM bit 2 #ifndef __ASSEMBLY__ +#include /** * plpar_hcall_norets: - Make a pseries hypervisor call with no return arguments