From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH -next] fs: fix fs/fs-writeback.c build error Date: Thu, 05 Jan 2012 16:18:30 -0800 Message-ID: <4F063DD6.5050403@xenotime.net> References: <20120105191218.42825638a431bc1aba4879de@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from oproxy1-pub.bluehost.com ([66.147.249.253]:40236 "HELO oproxy1-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751289Ab2AFWGL (ORCPT ); Fri, 6 Jan 2012 17:06:11 -0500 In-Reply-To: <20120105191218.42825638a431bc1aba4879de@canb.auug.org.au> Sender: linux-next-owner@vger.kernel.org List-ID: To: Stephen Rothwell Cc: linux-next@vger.kernel.org, LKML , Linus , Al Viro , Andrew Morton 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);