From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mezzanine.sirena.org.uk ([106.187.55.193]:52303 "EHLO mezzanine.sirena.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751771AbbCWFAT (ORCPT ); Mon, 23 Mar 2015 01:00:19 -0400 From: Mark Brown To: Chris Mason , Josef Bacik , David Sterba Cc: linux-fsdevel@vger.kernel.org, linux-btrfs@vger.kernel.org, Mark Brown Date: Sun, 22 Mar 2015 16:46:15 +0000 Message-Id: <1427042775-8258-1-git-send-email-broonie@kernel.org> Subject: [PATCH] btrfs: Fix implicit inclusion of linux/uio.h Sender: linux-btrfs-owner@vger.kernel.org List-ID: The btrfs inode.c relies on implicit inclusion of linux/uio.h for definitions of struct iov_iter and iov_iter_alignment() which breaks the current ARM allmodconfig build where that implicit inclusion does not happen. Add an explicit include to fix that. Signed-off-by: Mark Brown --- fs/btrfs/inode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 37dc84c..9e4a634 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include -- 2.1.4