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=-10.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 936F9C433E0 for ; Mon, 10 Aug 2020 15:21:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6135920734 for ; Mon, 10 Aug 2020 15:21:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1597072901; bh=tXAco+/hJuVY5Hoz8JSM+n9qDLrtNpmiQ6NZFbHlv64=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=pwS6aq2hcNmJdXuZdfch8v6JnP6WSQE3esI9dWd16ghDHDM7ZEDZ676wc6H33C+aw jgCLxq2W26j/rbvPplsACmMYzA5yt3lb1wFNI9XAsySdG6lh0lHJRPwv3NeUarIiCD 2HSah6XV6CQzMq+jsOPINh2sLVwRumG3apEAPP/A= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726491AbgHJPVg (ORCPT ); Mon, 10 Aug 2020 11:21:36 -0400 Received: from mail.kernel.org ([198.145.29.99]:51320 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728032AbgHJPUp (ORCPT ); Mon, 10 Aug 2020 11:20:45 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 1FB0220656; Mon, 10 Aug 2020 15:20:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1597072844; bh=tXAco+/hJuVY5Hoz8JSM+n9qDLrtNpmiQ6NZFbHlv64=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=enE62gD+mp9pcW2BNWdMesytF7So6QucNm8eqnqAvmnXN+OLWmfE61Uj9P8K17wNq 58vRYRaetpoVKBcdifxgtJe37GSIVYBdFbtR7NTEzodkUG1o+it41XPt6W5M5GKUdz OO9CI/YByWWYXAKXHrX1X8rBjHEE2yX6zeITf0h0= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Guenter Roeck , Linus Torvalds , =?UTF-8?q?Daniel=20D=C3=ADaz?= Subject: [PATCH 5.8 37/38] random: random.h should include archrandom.h, not the other way around Date: Mon, 10 Aug 2020 17:19:27 +0200 Message-Id: <20200810151805.749334782@linuxfoundation.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20200810151803.920113428@linuxfoundation.org> References: <20200810151803.920113428@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Linus Torvalds commit 585524081ecdcde1c719e63916c514866d898217 upstream. This is hopefully the final piece of the crazy puzzle with random.h dependencies. And by "hopefully" I obviously mean "Linus is a hopeless optimist". Reported-and-tested-by: Daniel Díaz Acked-by: Guenter Roeck Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- arch/arm64/include/asm/archrandom.h | 1 - arch/arm64/kernel/kaslr.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) --- a/arch/arm64/include/asm/archrandom.h +++ b/arch/arm64/include/asm/archrandom.h @@ -6,7 +6,6 @@ #include #include -#include #include static inline bool __arm64_rndr(unsigned long *v) --- a/arch/arm64/kernel/kaslr.c +++ b/arch/arm64/kernel/kaslr.c @@ -11,8 +11,8 @@ #include #include #include +#include -#include #include #include #include