From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heiko Carstens Subject: [PATCH] f2fs: add missing pretech.h include Date: Thu, 27 Dec 2012 15:30:32 +0100 Message-ID: <20121227143032.GA3223@osiris> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org To: Jaegeuk Kim , Namjae Jeon Return-path: Received: from e06smtp18.uk.ibm.com ([195.75.94.114]:42269 "EHLO e06smtp18.uk.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752801Ab2L0Oah (ORCPT ); Thu, 27 Dec 2012 09:30:37 -0500 Received: from /spool/local by e06smtp18.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 27 Dec 2012 14:29:54 -0000 Content-Disposition: inline Sender: linux-fsdevel-owner@vger.kernel.org List-ID: >>From aa027f06dfb5b2fd27d6f92391d8340df671e82b Mon Sep 17 00:00:00 2001 From: Heiko Carstens Date: Thu, 27 Dec 2012 15:22:27 +0100 Subject: [PATCH] f2fs: add missing pretech.h include Fix these compile errors on s390: fs/f2fs/data.c: In function 'read_end_io': fs/f2fs/data.c:311:4: error: implicit declaration of function 'prefetchw' [-Werror=implicit-function-declaration] fs/f2fs/segment.c: In function 'f2fs_end_io_write': fs/f2fs/segment.c:628:4: error: implicit declaration of function 'prefetchw' [-Werror=implicit-function-declaration] Signed-off-by: Heiko Carstens --- fs/f2fs/data.c | 1 + fs/f2fs/segment.c | 1 + 2 files changed, 2 insertions(+) diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 655aeab..f5d2c62 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c index 1b26e4e..cc28975 100644 --- a/fs/f2fs/segment.c +++ b/fs/f2fs/segment.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include "f2fs.h" -- 1.7.12.4