Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752375AbdGGQvd (ORCPT ); Fri, 7 Jul 2017 12:51:33 -0400 Received: from foss.arm.com ([217.140.101.70]:49524 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751916AbdGGQvc (ORCPT ); Fri, 7 Jul 2017 12:51:32 -0400 Subject: Re: [PATCH v2 03/10] drivers base/arch_topology: frequency-invariant load-tracking support To: Viresh Kumar Cc: linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, linux@arm.linux.org.uk, Greg Kroah-Hartman , Russell King , Catalin Marinas , Will Deacon , Juri Lelli , Vincent Guittot , Peter Zijlstra , Morten Rasmussen , "Rafael J . Wysocki" References: <20170706094948.8779-1-dietmar.eggemann@arm.com> <20170706094948.8779-4-dietmar.eggemann@arm.com> <20170706104515.GD13048@vireshk-i7> From: Dietmar Eggemann Message-ID: <2e775230-be37-d840-1938-7217f718d224@arm.com> Date: Fri, 7 Jul 2017 17:51:28 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <20170706104515.GD13048@vireshk-i7> Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 683 Lines: 29 On 06/07/17 11:45, Viresh Kumar wrote: > On 06-07-17, 10:49, Dietmar Eggemann wrote: [...] >> diff --git a/include/linux/arch_topology.h b/include/linux/arch_topology.h >> index 9af3c174c03a..168104d2d2cf 100644 >> --- a/include/linux/arch_topology.h >> +++ b/include/linux/arch_topology.h >> @@ -4,6 +4,8 @@ >> #ifndef _LINUX_ARCH_TOPOLOGY_H_ >> #define _LINUX_ARCH_TOPOLOGY_H_ >> >> +#include >> + > > You don't need a full include here, instead following will work pretty well. > > struct cpumask; True. Forward declaration is sufficient here. Will change it. [...] > Apart from that: > > Reviewed-by: Viresh Kumar Thanks!