From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH] unionfs section mismatch Date: Wed, 6 Jun 2007 14:51:02 -0700 Message-ID: <20070606145102.02f9a816.randy.dunlap@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: akpm , jsipek@cs.sunysb.edu To: linux-fsdevel@vger.kernel.org, unionfs@filesystems.org Return-path: Received: from agminet01.oracle.com ([141.146.126.228]:22596 "EHLO agminet01.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751272AbXFFVvh (ORCPT ); Wed, 6 Jun 2007 17:51:37 -0400 Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org From: Randy Dunlap Fix section marker in header file: WARNING: fs/unionfs/unionfs.o(.init.text+0x56): Section mismatch: reference to .exit.text:stop_sioq (between 'init_module' and 'init_sioq') Signed-off-by: Randy Dunlap --- fs/unionfs/sioq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-2.6.22-rc4-mm1.orig/fs/unionfs/sioq.h +++ linux-2.6.22-rc4-mm1/fs/unionfs/sioq.h @@ -76,7 +76,7 @@ struct sioq_args { /* Extern definitions for SIOQ functions */ extern int __init init_sioq(void); -extern __exit void stop_sioq(void); +extern void stop_sioq(void); extern void run_sioq(work_func_t func, struct sioq_args *args); /* Extern definitions for our privilege escalation helpers */