From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759252Ab2AFWGN (ORCPT ); Fri, 6 Jan 2012 17:06:13 -0500 Received: from oproxy1-pub.bluehost.com ([66.147.249.253]:45954 "HELO oproxy1-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752940Ab2AFWGL (ORCPT ); Fri, 6 Jan 2012 17:06:11 -0500 Message-ID: <4F063DD6.5050403@xenotime.net> Date: Thu, 05 Jan 2012 16:18:30 -0800 From: Randy Dunlap Organization: YPO4 User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: Stephen Rothwell CC: linux-next@vger.kernel.org, LKML , Linus , Al Viro , Andrew Morton Subject: [PATCH -next] fs: fix fs/fs-writeback.c build error References: <20120105191218.42825638a431bc1aba4879de@canb.auug.org.au> In-Reply-To: <20120105191218.42825638a431bc1aba4879de@canb.auug.org.au> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap In linux-next, fs/fs-writeback.c no longer #includes , which #included , so add that latter header file to to fix the build error: fs/fs-writeback.c:510:11: error: 'PAGE_CACHE_SHIFT' undeclared (first use in this function) Signed-off-by: Randy Dunlap --- include/linux/writeback.h | 1 + 1 file changed, 1 insertion(+) --- linux-next-20120105.orig/include/linux/writeback.h +++ linux-next-20120105/include/linux/writeback.h @@ -6,6 +6,7 @@ #include #include +#include DECLARE_PER_CPU(int, dirty_throttle_leaks);