From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756102AbdJJJae (ORCPT ); Tue, 10 Oct 2017 05:30:34 -0400 Received: from usa-sjc-mx-foss1.foss.arm.com ([217.140.101.70]:40766 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755844AbdJJJab (ORCPT ); Tue, 10 Oct 2017 05:30:31 -0400 Date: Tue, 10 Oct 2017 10:28:59 +0100 From: Mark Rutland To: linux-kernel@vger.kernel.org Cc: Johannes Berg , "David S. Miller" Subject: Re: [PATCH 09/13] net: average: kill off ACCESS_ONCE() Message-ID: <20171010092858.GB27659@leverpostej> References: <1507573730-8083-1-git-send-email-mark.rutland@arm.com> <1507573730-8083-10-git-send-email-mark.rutland@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1507573730-8083-10-git-send-email-mark.rutland@arm.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 09, 2017 at 07:28:46PM +0100, Mark Rutland wrote: > diff --git a/include/linux/average.h b/include/linux/average.h > index 7ddaf34..7a72de4 100644 > --- a/include/linux/average.h > +++ b/include/linux/average.h > @@ -1,6 +1,10 @@ > #ifndef _LINUX_AVERAGE_H > #define _LINUX_AVERAGE_H > > +#include > +#include > +#include This should've been . I've fixed that locally and pushed out to my core/access-once branch. Thanks, Mark.