From patchwork Thu Oct 28 07:56:31 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ingo Molnar X-Patchwork-Id: 69441 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 89F09B6F14 for ; Thu, 28 Oct 2010 18:56:42 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932988Ab0J1H4k (ORCPT ); Thu, 28 Oct 2010 03:56:40 -0400 Received: from mx3.mail.elte.hu ([157.181.1.138]:37938 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932144Ab0J1H4k (ORCPT ); Thu, 28 Oct 2010 03:56:40 -0400 Received: from elvis.elte.hu ([157.181.1.14]) by mx3.mail.elte.hu with esmtp (Exim) id 1PBNLf-0006Rg-E5 from ; Thu, 28 Oct 2010 09:56:38 +0200 Received: by elvis.elte.hu (Postfix, from userid 1004) id A37E93E234D; Thu, 28 Oct 2010 09:56:30 +0200 (CEST) Date: Thu, 28 Oct 2010 09:56:31 +0200 From: Ingo Molnar To: Theodore Ts'o Cc: Linus Torvalds , linux-ext4@vger.kernel.org, linux-kernel@vger.kernel.org Subject: -tip: origin tree build failure (was: [GIT PULL] ext4 update for 2.6.37) Message-ID: <20101028075631.GA7690@elte.hu> References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-08-17) Received-SPF: neutral (mx3: 157.181.1.14 is neither permitted nor denied by domain of elte.hu) client-ip=157.181.1.14; envelope-from=mingo@elte.hu; helo=elvis.elte.hu; X-ELTE-SpamScore: -2.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-2.0 required=5.9 tests=BAYES_00 autolearn=no SpamAssassin version=3.2.5 -2.0 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org hi Ted, > Theodore Ts'o (18): > ext4: rename {exit,init}_ext4_*() to ext4_{exit,init}_*() Today's -tip fails to build due to upstream commit 5dabfc7 ("ext4: rename {exit,init}_ext4_*() to ext4_{exit,init}_*()"), on all[yes/mod]config with CONFIG_EXT4_FS_XATTR disabled: fs/ext4/super.c:4776: error: implicit declaration of function ‘ext4_init_xattr’ Commit 5dabfc7 renamed init_ext4_xattr to ext4_init_xattr but forgot to update the definition in fs/ext4/xattr.h. The patch below fixes it. Thanks, Ingo Signed-off-by: Ingo Molnar Acked-by: "Theodore Ts'o" --- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux.orig/fs/ext4/xattr.h +++ linux/fs/ext4/xattr.h @@ -122,7 +122,7 @@ ext4_xattr_put_super(struct super_block } static __init inline int -init_ext4_xattr(void) +ext4_init_xattr(void) { return 0; }