Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Feb 2009 10:42:25 -0500
From:      John Baldwin <jhb@freebsd.org>
To:        Jens Rehsack <rehsack@web.de>
Cc:        freebsd-stable@freebsd.org
Subject:   Re: Error compiling FreeBSD-Stable with MFC'ed iconv locking
Message-ID:  <200902171042.26151.jhb@freebsd.org>
In-Reply-To: <4996C16D.8050909@web.de>
References:  <4996C16D.8050909@web.de>

next in thread | previous in thread | raw e-mail | index | archive | help
On Saturday 14 February 2009 8:04:45 am Jens Rehsack wrote:
> Hi John,
> 
> after I updated my system (-STABLE) I received following compilation error
> while building the kernel (having ICONV built in):
> 
> cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -march=nocona
> -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes
> -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef
> -Wno-pointer-sign -fformat-extensions -nostdinc  -I. -I/usr/src/sys
> -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include
> opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100
> --param large-function-growth=1000  -fno-omit-frame-pointer -mcmodel=kernel
> -mno-red-zone  -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow
> -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Werror
> /usr/src/sys/libkern/iconv.c
> /usr/src/sys/libkern/iconv.c: In function 'iconv_mod_unload':
> /usr/src/sys/libkern/iconv.c:92: error: 'curthread' undeclared (first use in
> this function)
> /usr/src/sys/libkern/iconv.c:92: error: (Each undeclared identifier is
> reported only once
> /usr/src/sys/libkern/iconv.c:92: error: for each function it appears in.)
> /usr/src/sys/libkern/iconv.c: In function 'iconv_sysctl_add':
> /usr/src/sys/libkern/iconv.c:401: error: 'curthread' undeclared (first use
> in this function)
> /usr/src/sys/libkern/iconv.c: In function 'iconv_converter_handler':
> /usr/src/sys/libkern/iconv.c:452: error: 'curthread' undeclared (first use
> in this function)
> 
> I applied following patch - and it works:
> --- sys/sys/sx.h.orig	2009-02-14 12:56:11.000000000 +0000
> +++ sys/sys/sx.h	2009-02-14 12:57:33.000000000 +0000
> @@ -35,6 +35,7 @@
>  #include <sys/_lock.h>
>  #include <sys/_sx.h>
>  #include <sys/lock_profile.h>
> +#include <sys/proc.h>
> 
>  #ifdef	_KERNEL
>  #include <machine/atomic.h>
> 
> Google didn't find anything so I thought I mail this quickly.

The most recent commit to <sys/sx.h> to include <sys/pcpu.h> in the _KERNEL 
section should fix this.

-- 
John Baldwin



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902171042.26151.jhb>