From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eduardo Silva Subject: [PATCH] fs: add missing prefetch header to inode.c Date: Sun, 22 May 2011 15:34:39 -0400 Message-ID: <1306092879.16902.1.camel@monotop> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org To: Alexander Viro Return-path: Received: from mail-pw0-f46.google.com ([209.85.160.46]:36895 "EHLO mail-pw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752790Ab1EVTgO (ORCPT ); Sun, 22 May 2011 15:36:14 -0400 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: inode.c fails in the compilation process due to the missing include of linux/prefetch.h. Signed-off-by: Eduardo Silva --- fs/inode.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/fs/inode.c b/fs/inode.c index 33c963d..c77081f 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "internal.h" /* -- 1.7.4.1