Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754084Ab1DSJn3 (ORCPT ); Tue, 19 Apr 2011 05:43:29 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:57729 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753108Ab1DSJn2 (ORCPT ); Tue, 19 Apr 2011 05:43:28 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=szeredi.hu; s=google; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=o0HN8LWcqrrhf6qc9yAjBAcabcoMrH9vgK0ciCz9UOPwjzlnEdZfQapmzuck9gBn4l 7PkG2nsZuKcqscdySmcGdO/gAW1vAMnrsAAo2EHVK0wTBNRuUgWIOM0bI/iV41B3kT8C YlQzrtoGnfKFKwinwvbxYUG2M8nUj6Y3tOOkk= From: Miklos Szeredi To: viro@ZenIV.linux.org.uk Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, apw@canonical.com, nbd@openwrt.org, neilb@suse.de, hramrach@centrum.cz, Miklos Szeredi Subject: [PATCH 1/2] ovl: fix missing include Date: Tue, 19 Apr 2011 11:43:18 +0200 Message-Id: <1303206199-852-1-git-send-email-miklos@szeredi.hu> X-Mailer: git-send-email 1.7.1 In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1267 Lines: 35 From: Miklos Szeredi CC [M] fs/overlayfs/copy_up.o fs/overlayfs/copy_up.c: In function 'ovl_read_symlink': fs/overlayfs/copy_up.c:135:2: error: implicit declaration of function 'get_fs' fs/overlayfs/copy_up.c:135:9: error: incompatible types when assigning to type 'mm_segment_t' from type 'int' fs/overlayfs/copy_up.c:136:2: error: implicit declaration of function 'set_fs' fs/overlayfs/copy_up.c:136:2: error: implicit declaration of function 'get_ds' Reported-by: Michal Suchanek Signed-off-by: Miklos Szeredi --- fs/overlayfs/copy_up.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/fs/overlayfs/copy_up.c b/fs/overlayfs/copy_up.c index fb9962c..308a80a 100644 --- a/fs/overlayfs/copy_up.c +++ b/fs/overlayfs/copy_up.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "overlayfs.h" #define OVL_COPY_UP_CHUNK_SIZE (1 << 20) -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/