Re: gdb has outdated knowledge of signal trampolines

2013-11-26 Thread Konstantin Belousov
On Mon, Nov 25, 2013 at 07:35:27PM +0200, Konstantin Belousov wrote:
 Could you update your gdb patch to use the KERN_PROC_SIGTRAMP from
 the patch below ? If this works out, I will add initialization of
 sv_szsigcode for ABIs which do not use shared page.

Below is the complete patch.  With it applied, I get
(gdb) bt
#0  sighandler (signo=1, info=0x7fffd2b0, context=Unhandled dwarf 
expression opcode 0xf3
) at siginfo.c:34
#1  signal handler called
#2  0x00080088849a in sigsuspend () from /lib/libc.so.7
#3  0x0040093a in main (argc=Unhandled dwarf expression opcode 0xf3
) at siginfo.c:54

diff --git a/contrib/gdb/gdb/amd64fbsd-nat.c b/contrib/gdb/gdb/amd64fbsd-nat.c
index f083734..dacd4a3 100644
--- a/contrib/gdb/gdb/amd64fbsd-nat.c
+++ b/contrib/gdb/gdb/amd64fbsd-nat.c
@@ -29,6 +29,7 @@
 #include sys/types.h
 #include sys/ptrace.h
 #include sys/sysctl.h
+#include sys/user.h
 #include machine/reg.h
 
 #ifdef HAVE_SYS_PROCFS_H
@@ -212,24 +213,23 @@ Please report this to bug-...@gnu.org.,
 
   SC_RBP_OFFSET = offset;
 
-  /* FreeBSD provides a kern.ps_strings sysctl that we can use to
+  /* FreeBSD provides a kern.proc.sigtramp sysctl that we can use to
  locate the sigtramp.  That way we can still recognize a sigtramp
- if its location is changed in a new kernel.  Of course this is
- still based on the assumption that the sigtramp is placed
- directly under the location where the program arguments and
- environment can be found.  */
+ if its location is changed in a new kernel. */
   {
-int mib[2];
-long ps_strings;
+int mib[4];
+struct kinfo_sigtramp kst;
 size_t len;
 
 mib[0] = CTL_KERN;
-mib[1] = KERN_PS_STRINGS;
-len = sizeof (ps_strings);
-if (sysctl (mib, 2, ps_strings, len, NULL, 0) == 0)
+mib[1] = KERN_PROC;
+mib[2] = KERN_PROC_SIGTRAMP;
+mib[3] = getpid();
+len = sizeof (kst);
+if (sysctl (mib, sizeof(mib) / sizeof(mib[0]), kst, len, NULL, 0) == 0)
   {
-   amd64fbsd_sigtramp_start_addr = ps_strings - 32;
-   amd64fbsd_sigtramp_end_addr = ps_strings;
+   amd64fbsd_sigtramp_start_addr = kst.ksigtramp_start;
+   amd64fbsd_sigtramp_end_addr = kst.ksigtramp_end;
   }
   }
 }
diff --git a/sys/amd64/include/pcb.h b/sys/amd64/include/pcb.h
index c106edc..80aff86 100644
--- a/sys/amd64/include/pcb.h
+++ b/sys/amd64/include/pcb.h
@@ -43,6 +43,7 @@
 #include machine/fpu.h
 #include machine/segments.h
 
+#ifdef __amd64__
 struct pcb {
register_t  pcb_r15;
register_t  pcb_r14;
@@ -105,6 +106,7 @@ struct pcb {
 
uint64_tpcb_pad[3];
 };
+#endif
 
 #ifdef _KERNEL
 struct trapframe;
diff --git a/sys/amd64/include/segments.h b/sys/amd64/include/segments.h
index d9f4280..6bcadc7 100644
--- a/sys/amd64/include/segments.h
+++ b/sys/amd64/include/segments.h
@@ -82,8 +82,8 @@ structsoft_segment_descriptor {
  * region descriptors, used to load gdt/idt tables before segments yet exist.
  */
 struct region_descriptor {
-   unsigned long rd_limit:16;  /* segment extent */
-   unsigned long rd_base:64 __packed;  /* base address  */
+   uint64_t rd_limit:16;   /* segment extent */
+   uint64_t rd_base:64 __packed;   /* base address  */
 } __packed;
 
 #ifdef _KERNEL
diff --git a/sys/compat/freebsd32/freebsd32.h b/sys/compat/freebsd32/freebsd32.h
index 8376e95..94f886e 100644
--- a/sys/compat/freebsd32/freebsd32.h
+++ b/sys/compat/freebsd32/freebsd32.h
@@ -362,6 +362,12 @@ struct kinfo_proc32 {
int ki_tdflags;
 };
 
+struct kinfo_sigtramp32 {
+   uint32_t ksigtramp_start;
+   uint32_t ksigtramp_end;
+   uint32_t ksigtramp_spare[4];
+};
+
 struct kld32_file_stat_1 {
int version;/* set to sizeof(struct kld_file_stat_1) */
charname[MAXPATHLEN];
diff --git a/sys/kern/kern_proc.c b/sys/kern/kern_proc.c
index 9968e76..2e6bc32 100644
--- a/sys/kern/kern_proc.c
+++ b/sys/kern/kern_proc.c
@@ -2632,6 +2632,60 @@ errout:
return (error);
 }
 
+static int
+sysctl_kern_proc_sigtramp(SYSCTL_HANDLER_ARGS)
+{
+   int *name = (int *)arg1;
+   u_int namelen = arg2;
+   struct proc *p;
+   struct kinfo_sigtramp kst;
+   const struct sysentvec *sv;
+   int error;
+#ifdef COMPAT_FREEBSD32
+   struct kinfo_sigtramp32 kst32;
+#endif
+
+   if (namelen != 1)
+   return (EINVAL);
+
+   error = pget((pid_t)name[0], PGET_CANDEBUG, p);
+   if (error != 0)
+   return (error);
+   sv = p-p_sysent;
+#ifdef COMPAT_FREEBSD32
+   if ((req-flags  SCTL_MASK32) != 0) {
+   bzero(kst32, sizeof(kst32));
+   if (SV_PROC_FLAG(p, SV_ILP32)) {
+   if (sv-sv_sigcode_base != 0) {
+   kst32.ksigtramp_start = sv-sv_sigcode_base;
+   kst32.ksigtramp_end = sv-sv_sigcode_base +
+   *sv-sv_szsigcode;
+   

Re: Patch: Add option to fmt to ignore email reply lines

2013-11-26 Thread Anthony Perkins
On Mon, Nov 25, 2013 at 09:58:12PM +, Mark Robert Vaughan Murray
wrote:

 You may want to extend your idea a bit and do what par (ports/textproc/par)
 does. This is a paragraph reformatter that takes the quoting into account,
 replacing it after the paragraph wrapping.

I did consider doing this but decided against it on the basis that
the incoming mail from the previous sender was unpredictable.  If
it included, for example, a list of a few short sentences or bullet
points these would all be combined into one long paragraph in the
reply.

If others also feel this would be desirable I will look at implementing
it with an updated patch.

Many thanks,

Anthony
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


lang/gcc not build

2013-11-26 Thread Alexander Panyushkin

#portmaster lang/gcc
[...]
cd /usr/ports/lang/gcc/work/gcc-4.6.4 ; contrib/gcc_update --touch
configure: loading site script /usr/ports/Templates/config.site
checking build system type... x86_64-portbld-freebsd10.0
checking host system type... x86_64-portbld-freebsd10.0
checking target system type... x86_64-portbld-freebsd10.0
checking for a BSD-compatible install... /usr/bin/install -c -o root -g 
wheel

checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for gawk... (cached) /usr/bin/awk
checking for gcc... gcc46
checking for C compiler default output file name...
configure: error: in `/usr/ports/lang/gcc/work/build':
configure: error: C compiler cannot create executables
See `config.log' for more details.
===  Script ../gcc-4.6.4/configure failed unexpectedly.
Please report the problem to ger...@freebsd.org [maintainer] and attach the
/usr/ports/lang/gcc/work/build/config.log including the output of the 
failure

of your make command. Also, it might be a good idea to provide an overview
of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static
info -g -Ea).
*** Error code 1

#
/etc/make.conf

.if ${.CURDIR:N*/ports/lang/gcc*} == 
CFLAGS= -O2 -march=athlon64-sse3 -mtune=athlon64-sse3 -pipe -Wformat
CPPFLAGS+= -D_FORTIFY_SOURCE=2
USE_GCC=4.6
.endif

#pkg info -ix gcc
gcc-4.6.3
gcc-ecj-4.5
gccmakedep-1.0.2_1

--
Alexander

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc/powerpc

2013-11-26 Thread FreeBSD Tinderbox
TB --- 2013-11-26 15:37:19 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-11-26 15:37:19 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-11-26 15:37:19 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2013-11-26 15:37:19 - cleaning the object tree
TB --- 2013-11-26 15:39:04 - /usr/local/bin/svn stat /src
TB --- 2013-11-26 15:39:10 - At svn revision 258615
TB --- 2013-11-26 15:39:11 - building world
TB --- 2013-11-26 15:39:11 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 15:39:11 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 15:39:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 15:39:11 - SRCCONF=/dev/null
TB --- 2013-11-26 15:39:11 - TARGET=powerpc
TB --- 2013-11-26 15:39:11 - TARGET_ARCH=powerpc
TB --- 2013-11-26 15:39:11 - TZ=UTC
TB --- 2013-11-26 15:39:11 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 15:39:11 - cd /src
TB --- 2013-11-26 15:39:11 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Tue Nov 26 15:39:19 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Tue Nov 26 18:16:52 UTC 2013
TB --- 2013-11-26 18:16:52 - generating LINT kernel config
TB --- 2013-11-26 18:16:52 - cd /src/sys/powerpc/conf
TB --- 2013-11-26 18:16:52 - /usr/bin/make -B LINT
TB --- 2013-11-26 18:16:52 - cd /src/sys/powerpc/conf
TB --- 2013-11-26 18:16:52 - /usr/sbin/config -m LINT
TB --- 2013-11-26 18:16:52 - building LINT kernel
TB --- 2013-11-26 18:16:52 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 18:16:52 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 18:16:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 18:16:52 - SRCCONF=/dev/null
TB --- 2013-11-26 18:16:52 - TARGET=powerpc
TB --- 2013-11-26 18:16:52 - TARGET_ARCH=powerpc
TB --- 2013-11-26 18:16:52 - TZ=UTC
TB --- 2013-11-26 18:16:52 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 18:16:52 - cd /src
TB --- 2013-11-26 18:16:52 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Tue Nov 26 18:16:52 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
 Kernel build for LINT completed on Tue Nov 26 18:36:02 UTC 2013
TB --- 2013-11-26 18:36:02 - cd /src/sys/powerpc/conf
TB --- 2013-11-26 18:36:02 - /usr/sbin/config -m GENERIC
TB --- 2013-11-26 18:36:02 - building GENERIC kernel
TB --- 2013-11-26 18:36:02 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 18:36:02 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 18:36:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 18:36:02 - SRCCONF=/dev/null
TB --- 2013-11-26 18:36:02 - TARGET=powerpc
TB --- 2013-11-26 18:36:02 - TARGET_ARCH=powerpc
TB --- 2013-11-26 18:36:02 - TZ=UTC
TB --- 2013-11-26 18:36:02 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 18:36:02 - cd /src
TB --- 2013-11-26 18:36:02 - /usr/bin/make -B buildkernel KERNCONF=GENERIC
 Kernel build for GENERIC started on Tue Nov 26 18:36:02 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:189: 
warning: redundant redeclaration of 'nfscl_attrcache_flush_done_id' 
[-Wredundant-decls]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_kdtrace.h:76: 
warning: previous declaration of 'nfscl_attrcache_flush_done_id' was here
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:190: 
warning: redundant redeclaration of 'nfscl_attrcache_get_hit_id' 
[-Wredundant-decls]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_kdtrace.h:77: 
warning: previous declaration of 'nfscl_attrcache_get_hit_id' was here
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:191: 
warning: redundant redeclaration of 'nfscl_attrcache_get_miss_id' 
[-Wredundant-decls]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_kdtrace.h:78: 
warning: previous declaration of 'nfscl_attrcache_get_miss_id' was here
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:192: 
warning: redundant redeclaration of 'nfscl_attrcache_load_done_id' 
[-Wredundant-decls]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_kdtrace.h:79: 
warning: previous declaration of 'nfscl_attrcache_load_done_id' was here
*** Error code 1

Stop.
bmake[4]: stopped in /src/sys/modules/dtrace/dtnfscl
*** Error code 1

Stop.

[head tinderbox] failure on powerpc64/powerpc

2013-11-26 Thread FreeBSD Tinderbox
TB --- 2013-11-26 16:16:43 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-11-26 16:16:43 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-11-26 16:16:43 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2013-11-26 16:16:43 - cleaning the object tree
TB --- 2013-11-26 16:18:48 - /usr/local/bin/svn stat /src
TB --- 2013-11-26 16:18:53 - At svn revision 258615
TB --- 2013-11-26 16:18:54 - building world
TB --- 2013-11-26 16:18:54 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 16:18:54 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 16:18:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 16:18:54 - SRCCONF=/dev/null
TB --- 2013-11-26 16:18:54 - TARGET=powerpc
TB --- 2013-11-26 16:18:54 - TARGET_ARCH=powerpc64
TB --- 2013-11-26 16:18:54 - TZ=UTC
TB --- 2013-11-26 16:18:54 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 16:18:54 - cd /src
TB --- 2013-11-26 16:18:54 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Tue Nov 26 16:19:01 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 stage 5.1: building 32 bit shim libraries
 World build completed on Tue Nov 26 19:20:25 UTC 2013
TB --- 2013-11-26 19:20:25 - generating LINT kernel config
TB --- 2013-11-26 19:20:25 - cd /src/sys/powerpc/conf
TB --- 2013-11-26 19:20:25 - /usr/bin/make -B LINT
TB --- 2013-11-26 19:20:25 - cd /src/sys/powerpc/conf
TB --- 2013-11-26 19:20:25 - /usr/sbin/config -m LINT
TB --- 2013-11-26 19:20:25 - skipping LINT kernel
TB --- 2013-11-26 19:20:25 - cd /src/sys/powerpc/conf
TB --- 2013-11-26 19:20:25 - /usr/sbin/config -m GENERIC
TB --- 2013-11-26 19:20:25 - skipping GENERIC kernel
TB --- 2013-11-26 19:20:25 - cd /src/sys/powerpc/conf
TB --- 2013-11-26 19:20:25 - /usr/sbin/config -m GENERIC64
TB --- 2013-11-26 19:20:25 - building GENERIC64 kernel
TB --- 2013-11-26 19:20:25 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 19:20:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 19:20:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 19:20:25 - SRCCONF=/dev/null
TB --- 2013-11-26 19:20:25 - TARGET=powerpc
TB --- 2013-11-26 19:20:25 - TARGET_ARCH=powerpc64
TB --- 2013-11-26 19:20:25 - TZ=UTC
TB --- 2013-11-26 19:20:25 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 19:20:25 - cd /src
TB --- 2013-11-26 19:20:25 - /usr/bin/make -B buildkernel KERNCONF=GENERIC64
 Kernel build for GENERIC64 started on Tue Nov 26 19:20:25 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:189: 
warning: redundant redeclaration of 'nfscl_attrcache_flush_done_id' 
[-Wredundant-decls]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_kdtrace.h:76: 
warning: previous declaration of 'nfscl_attrcache_flush_done_id' was here
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:190: 
warning: redundant redeclaration of 'nfscl_attrcache_get_hit_id' 
[-Wredundant-decls]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_kdtrace.h:77: 
warning: previous declaration of 'nfscl_attrcache_get_hit_id' was here
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:191: 
warning: redundant redeclaration of 'nfscl_attrcache_get_miss_id' 
[-Wredundant-decls]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_kdtrace.h:78: 
warning: previous declaration of 'nfscl_attrcache_get_miss_id' was here
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:192: 
warning: redundant redeclaration of 'nfscl_attrcache_load_done_id' 
[-Wredundant-decls]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_kdtrace.h:79: 
warning: previous declaration of 'nfscl_attrcache_load_done_id' was here
*** Error code 1

Stop.
bmake[4]: stopped in /src/sys/modules/dtrace/dtnfscl
*** Error code 1

Stop.
bmake[3]: stopped in /src/sys/modules/dtrace
*** Error code 1

Stop.
bmake[2]: stopped in /src/sys/modules
*** Error code 1

Stop.
bmake[1]: stopped in /obj/powerpc.powerpc64/src/sys/GENERIC64
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2013-11-26 19:30:06 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-11-26 19:30:06 - ERROR: failed to build GENERIC64 kernel
TB --- 2013-11-26 19:30:06 - 10088.59 user 1288.37 system 11603.62 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc64-powerpc.full

ZFS: sharenfs and zdb no such file errors

2013-11-26 Thread Beeblebrox
I had a previously discussed zpool related error on my susytem:
(http://freebsd.1045724.n5.nabble.com/zpool-requires-re-import-on-reboot-td5861930.html#a5862468).
This may be related.

Now a different but equally odd error: On one of the pools with the import
problem (poolname=da), I had:
zfs set sharenfs=-network=192.168.2.0/24 da/data/amd64
When I start nfsd + mountd, TTY0 shows this error:
bad exports list line: /mnt/data/amd64
bad exports list line: /mnt/amd64

I can only assume that I had the da zpool mounted as altroot=/mnt at some
point in its history. After I 
zfs set sharenfs=off da/data/amd64 
for debugging, the error persisted for some time then was gone when I first
tried; now it persists even after a pool scrub. ZDB shows nothing odd with
the -Cl /dev/ada1p2 flag, but,
zdb -d da/data/amd64
zdb: can't open 'da/data/amd64': No such file or directory
I have same error for all pool-type commands. # zdb -C da for example.

Regards




-
FreeBSD-11-current_amd64_root-on-zfs_RadeonKMS
--
View this message in context: 
http://freebsd.1045724.n5.nabble.com/ZFS-sharenfs-and-zdb-no-such-file-errors-tp5864187.html
Sent from the freebsd-current mailing list archive at Nabble.com.
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: ZFS: sharenfs and zdb no such file errors

2013-11-26 Thread Allan Jude
On 2013-11-26 15:07, Beeblebrox wrote:
 I had a previously discussed zpool related error on my susytem:
 (http://freebsd.1045724.n5.nabble.com/zpool-requires-re-import-on-reboot-td5861930.html#a5862468).
 This may be related.

 Now a different but equally odd error: On one of the pools with the import
 problem (poolname=da), I had:
 zfs set sharenfs=-network=192.168.2.0/24 da/data/amd64
 When I start nfsd + mountd, TTY0 shows this error:
 bad exports list line: /mnt/data/amd64
 bad exports list line: /mnt/amd64

 I can only assume that I had the da zpool mounted as altroot=/mnt at some
 point in its history. After I 
 zfs set sharenfs=off da/data/amd64 
 for debugging, the error persisted for some time then was gone when I first
 tried; now it persists even after a pool scrub. ZDB shows nothing odd with
 the -Cl /dev/ada1p2 flag, but,
 zdb -d da/data/amd64
 zdb: can't open 'da/data/amd64': No such file or directory
 I have same error for all pool-type commands. # zdb -C da for example.

 Regards




 -
 FreeBSD-11-current_amd64_root-on-zfs_RadeonKMS
 --
 View this message in context: 
 http://freebsd.1045724.n5.nabble.com/ZFS-sharenfs-and-zdb-no-such-file-errors-tp5864187.html
 Sent from the freebsd-current mailing list archive at Nabble.com.
 ___
 freebsd-current@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-current
 To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org
NFS related config for ZFS is stored in /etc/zfs/exports
and mountd just reads that in addition to the usual /etc/exports

you might want to check there

-- 
Allan Jude




signature.asc
Description: OpenPGP digital signature


Re: Patch: Add option to fmt to ignore email reply lines

2013-11-26 Thread Mark Robert Vaughan Murray

On 26 Nov 2013, at 12:10, Anthony Perkins anth...@acperkins.com wrote:

 On Mon, Nov 25, 2013 at 09:58:12PM +, Mark Robert Vaughan Murray
 wrote:
 
 You may want to extend your idea a bit and do what par (ports/textproc/par)
 does. This is a paragraph reformatter that takes the quoting into account,
 replacing it after the paragraph wrapping.
 
 I did consider doing this but decided against it on the basis that
 the incoming mail from the previous sender was unpredictable.  If
 it included, for example, a list of a few short sentences or bullet
 points these would all be combined into one long paragraph in the
 reply.

Not true. In fact par is rather good at preserving changing indent levels.
Its not perfect, but its darn good.

 If others also feel this would be desirable I will look at implementing
 it with an updated patch.

Yes please!

M
-- 
Mark R V Murray



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: ZFS: sharenfs and zdb no such file errors

2013-11-26 Thread Beeblebrox
 NFS related config for ZFS is stored in /etc/zfs/exports
 and mountd just reads that in addition to the usual /etc/exports
 you might want to check there

Awesome, pal!! Editing that file cleared it all up.
Thanks.



-
FreeBSD-11-current_amd64_root-on-zfs_RadeonKMS
--
View this message in context: 
http://freebsd.1045724.n5.nabble.com/ZFS-sharenfs-and-zdb-no-such-file-errors-tp5864187p5864193.html
Sent from the freebsd-current mailing list archive at Nabble.com.
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/i386

2013-11-26 Thread FreeBSD Tinderbox
TB --- 2013-11-26 19:40:22 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-11-26 19:40:22 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-11-26 19:40:22 - starting HEAD tinderbox run for i386/i386
TB --- 2013-11-26 19:40:22 - cleaning the object tree
TB --- 2013-11-26 19:40:22 - /usr/local/bin/svn stat /src
TB --- 2013-11-26 19:40:27 - At svn revision 258660
TB --- 2013-11-26 19:40:28 - building world
TB --- 2013-11-26 19:40:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 19:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 19:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 19:40:28 - SRCCONF=/dev/null
TB --- 2013-11-26 19:40:28 - TARGET=i386
TB --- 2013-11-26 19:40:28 - TARGET_ARCH=i386
TB --- 2013-11-26 19:40:28 - TZ=UTC
TB --- 2013-11-26 19:40:28 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 19:40:28 - cd /src
TB --- 2013-11-26 19:40:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Tue Nov 26 19:40:37 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Tue Nov 26 22:53:27 UTC 2013
TB --- 2013-11-26 22:53:27 - generating LINT kernel config
TB --- 2013-11-26 22:53:27 - cd /src/sys/i386/conf
TB --- 2013-11-26 22:53:27 - /usr/bin/make -B LINT
TB --- 2013-11-26 22:53:27 - cd /src/sys/i386/conf
TB --- 2013-11-26 22:53:27 - /usr/sbin/config -m LINT
TB --- 2013-11-26 22:53:27 - building LINT kernel
TB --- 2013-11-26 22:53:27 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 22:53:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 22:53:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 22:53:27 - SRCCONF=/dev/null
TB --- 2013-11-26 22:53:27 - TARGET=i386
TB --- 2013-11-26 22:53:27 - TARGET_ARCH=i386
TB --- 2013-11-26 22:53:27 - TZ=UTC
TB --- 2013-11-26 22:53:27 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 22:53:27 - cd /src
TB --- 2013-11-26 22:53:27 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Tue Nov 26 22:53:27 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
 Kernel build for LINT completed on Tue Nov 26 23:31:17 UTC 2013
TB --- 2013-11-26 23:31:17 - cd /src/sys/i386/conf
TB --- 2013-11-26 23:31:17 - /usr/sbin/config -m LINT-NOINET
TB --- 2013-11-26 23:31:17 - building LINT-NOINET kernel
TB --- 2013-11-26 23:31:17 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 23:31:17 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 23:31:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 23:31:17 - SRCCONF=/dev/null
TB --- 2013-11-26 23:31:17 - TARGET=i386
TB --- 2013-11-26 23:31:17 - TARGET_ARCH=i386
TB --- 2013-11-26 23:31:17 - TZ=UTC
TB --- 2013-11-26 23:31:17 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 23:31:17 - cd /src
TB --- 2013-11-26 23:31:17 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET
 Kernel build for LINT-NOINET started on Tue Nov 26 23:31:17 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
 Kernel build for LINT-NOINET completed on Wed Nov 27 00:03:53 UTC 2013
TB --- 2013-11-27 00:03:53 - cd /src/sys/i386/conf
TB --- 2013-11-27 00:03:53 - /usr/sbin/config -m LINT-NOINET6
TB --- 2013-11-27 00:03:53 - building LINT-NOINET6 kernel
TB --- 2013-11-27 00:03:53 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-27 00:03:53 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-27 00:03:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-27 00:03:53 - SRCCONF=/dev/null
TB --- 2013-11-27 00:03:53 - TARGET=i386
TB --- 2013-11-27 00:03:53 - TARGET_ARCH=i386
TB --- 2013-11-27 00:03:53 - TZ=UTC
TB --- 2013-11-27 00:03:53 - __MAKE_CONF=/dev/null
TB --- 2013-11-27 00:03:53 - cd /src
TB --- 2013-11-27 00:03:53 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6
 Kernel build for LINT-NOINET6 started on Wed Nov 27 00:03:53 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
 Kernel build for LINT-NOINET6 completed on Wed Nov 27 00:37:14 UTC 2013
TB --- 2013-11-27 00:37:14 - cd /src/sys/i386/conf
TB --- 2013-11-27 00:37:14 - /usr/sbin/config -m LINT-NOIP
TB --- 2013-11-27 00:37:14 - building LINT-NOIP kernel
TB --- 2013-11-27 00:37:14 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-27 00:37:14 - MAKEOBJDIRPREFIX=/obj

[head tinderbox] failure on amd64/amd64

2013-11-26 Thread FreeBSD Tinderbox
TB --- 2013-11-26 19:40:22 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-11-26 19:40:22 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-11-26 19:40:22 - starting HEAD tinderbox run for amd64/amd64
TB --- 2013-11-26 19:40:22 - cleaning the object tree
TB --- 2013-11-26 19:40:22 - /usr/local/bin/svn stat /src
TB --- 2013-11-26 19:40:27 - At svn revision 258660
TB --- 2013-11-26 19:40:28 - building world
TB --- 2013-11-26 19:40:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 19:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 19:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 19:40:28 - SRCCONF=/dev/null
TB --- 2013-11-26 19:40:28 - TARGET=amd64
TB --- 2013-11-26 19:40:28 - TARGET_ARCH=amd64
TB --- 2013-11-26 19:40:28 - TZ=UTC
TB --- 2013-11-26 19:40:28 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 19:40:28 - cd /src
TB --- 2013-11-26 19:40:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Tue Nov 26 19:40:37 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 stage 5.1: building 32 bit shim libraries
 World build completed on Tue Nov 26 23:29:43 UTC 2013
TB --- 2013-11-26 23:29:43 - generating LINT kernel config
TB --- 2013-11-26 23:29:43 - cd /src/sys/amd64/conf
TB --- 2013-11-26 23:29:43 - /usr/bin/make -B LINT
TB --- 2013-11-26 23:29:43 - cd /src/sys/amd64/conf
TB --- 2013-11-26 23:29:43 - /usr/sbin/config -m LINT
TB --- 2013-11-26 23:29:43 - building LINT kernel
TB --- 2013-11-26 23:29:43 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-26 23:29:43 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-26 23:29:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-26 23:29:43 - SRCCONF=/dev/null
TB --- 2013-11-26 23:29:43 - TARGET=amd64
TB --- 2013-11-26 23:29:43 - TARGET_ARCH=amd64
TB --- 2013-11-26 23:29:43 - TZ=UTC
TB --- 2013-11-26 23:29:43 - __MAKE_CONF=/dev/null
TB --- 2013-11-26 23:29:43 - cd /src
TB --- 2013-11-26 23:29:43 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Tue Nov 26 23:29:43 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
 Kernel build for LINT completed on Wed Nov 27 00:04:14 UTC 2013
TB --- 2013-11-27 00:04:14 - cd /src/sys/amd64/conf
TB --- 2013-11-27 00:04:14 - /usr/sbin/config -m LINT-NOINET
TB --- 2013-11-27 00:04:14 - building LINT-NOINET kernel
TB --- 2013-11-27 00:04:14 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-27 00:04:14 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-27 00:04:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-27 00:04:14 - SRCCONF=/dev/null
TB --- 2013-11-27 00:04:14 - TARGET=amd64
TB --- 2013-11-27 00:04:14 - TARGET_ARCH=amd64
TB --- 2013-11-27 00:04:14 - TZ=UTC
TB --- 2013-11-27 00:04:14 - __MAKE_CONF=/dev/null
TB --- 2013-11-27 00:04:14 - cd /src
TB --- 2013-11-27 00:04:14 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET
 Kernel build for LINT-NOINET started on Wed Nov 27 00:04:14 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
 Kernel build for LINT-NOINET completed on Wed Nov 27 00:36:37 UTC 2013
TB --- 2013-11-27 00:36:37 - cd /src/sys/amd64/conf
TB --- 2013-11-27 00:36:37 - /usr/sbin/config -m LINT-NOINET6
TB --- 2013-11-27 00:36:37 - building LINT-NOINET6 kernel
TB --- 2013-11-27 00:36:37 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-27 00:36:37 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-27 00:36:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-27 00:36:37 - SRCCONF=/dev/null
TB --- 2013-11-27 00:36:37 - TARGET=amd64
TB --- 2013-11-27 00:36:37 - TARGET_ARCH=amd64
TB --- 2013-11-27 00:36:37 - TZ=UTC
TB --- 2013-11-27 00:36:37 - __MAKE_CONF=/dev/null
TB --- 2013-11-27 00:36:37 - cd /src
TB --- 2013-11-27 00:36:37 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6
 Kernel build for LINT-NOINET6 started on Wed Nov 27 00:36:37 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
 Kernel build for LINT-NOINET6 completed on Wed Nov 27 01:08:42 UTC 2013
TB --- 2013-11-27 01:08:42 - cd /src/sys/amd64/conf
TB --- 2013-11-27 01:08:42 - /usr/sbin/config -m LINT-NOIP
TB --- 2013-11-27 01:08:42 - building LINT-NOIP kernel
TB --- 2013-11-27 01:08:42 - 

[head tinderbox] failure on i386/pc98

2013-11-26 Thread FreeBSD Tinderbox
TB --- 2013-11-27 00:47:54 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-11-27 00:47:54 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-11-27 00:47:54 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-11-27 00:47:54 - cleaning the object tree
TB --- 2013-11-27 00:47:54 - /usr/local/bin/svn stat /src
TB --- 2013-11-27 00:48:19 - At svn revision 258660
TB --- 2013-11-27 00:48:20 - building world
TB --- 2013-11-27 00:48:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-27 00:48:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-27 00:48:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-27 00:48:20 - SRCCONF=/dev/null
TB --- 2013-11-27 00:48:20 - TARGET=pc98
TB --- 2013-11-27 00:48:20 - TARGET_ARCH=i386
TB --- 2013-11-27 00:48:20 - TZ=UTC
TB --- 2013-11-27 00:48:20 - __MAKE_CONF=/dev/null
TB --- 2013-11-27 00:48:20 - cd /src
TB --- 2013-11-27 00:48:20 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Wed Nov 27 00:48:28 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Wed Nov 27 04:09:56 UTC 2013
TB --- 2013-11-27 04:09:56 - generating LINT kernel config
TB --- 2013-11-27 04:09:56 - cd /src/sys/pc98/conf
TB --- 2013-11-27 04:09:56 - /usr/bin/make -B LINT
TB --- 2013-11-27 04:09:56 - cd /src/sys/pc98/conf
TB --- 2013-11-27 04:09:56 - /usr/sbin/config -m LINT
TB --- 2013-11-27 04:09:56 - building LINT kernel
TB --- 2013-11-27 04:09:56 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-27 04:09:56 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-27 04:09:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-27 04:09:56 - SRCCONF=/dev/null
TB --- 2013-11-27 04:09:56 - TARGET=pc98
TB --- 2013-11-27 04:09:56 - TARGET_ARCH=i386
TB --- 2013-11-27 04:09:56 - TZ=UTC
TB --- 2013-11-27 04:09:56 - __MAKE_CONF=/dev/null
TB --- 2013-11-27 04:09:56 - cd /src
TB --- 2013-11-27 04:09:56 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Wed Nov 27 04:09:56 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:483:17: 
error: use of undeclared identifier 'nfscl_accesscache_get_hit_id'
else if (id == nfscl_accesscache_get_hit_id)
   ^
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:485:17: 
error: use of undeclared identifier 'nfscl_accesscache_get_miss_id'
else if (id == nfscl_accesscache_get_miss_id)
   ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
*** Error code 1

Stop.
bmake[4]: stopped in /src/sys/modules/dtrace/dtnfscl
*** Error code 1

Stop.
bmake[3]: stopped in /src/sys/modules/dtrace
*** Error code 1

Stop.
bmake[2]: stopped in /src/sys/modules
*** Error code 1

Stop.
bmake[1]: stopped in /obj/pc98.i386/src/sys/LINT
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2013-11-27 04:29:12 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-11-27 04:29:12 - ERROR: failed to build LINT kernel
TB --- 2013-11-27 04:29:12 - 10621.30 user 1455.07 system 13277.91 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-pc98.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on powerpc/powerpc

2013-11-26 Thread FreeBSD Tinderbox
TB --- 2013-11-27 03:37:00 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-11-27 03:37:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-11-27 03:37:00 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2013-11-27 03:37:00 - cleaning the object tree
TB --- 2013-11-27 03:39:36 - /usr/local/bin/svn stat /src
TB --- 2013-11-27 03:40:37 - At svn revision 258660
TB --- 2013-11-27 03:40:38 - building world
TB --- 2013-11-27 03:40:38 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-27 03:40:38 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-27 03:40:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-27 03:40:38 - SRCCONF=/dev/null
TB --- 2013-11-27 03:40:38 - TARGET=powerpc
TB --- 2013-11-27 03:40:38 - TARGET_ARCH=powerpc
TB --- 2013-11-27 03:40:38 - TZ=UTC
TB --- 2013-11-27 03:40:38 - __MAKE_CONF=/dev/null
TB --- 2013-11-27 03:40:38 - cd /src
TB --- 2013-11-27 03:40:38 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Wed Nov 27 03:40:45 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Wed Nov 27 06:13:50 UTC 2013
TB --- 2013-11-27 06:13:50 - generating LINT kernel config
TB --- 2013-11-27 06:13:50 - cd /src/sys/powerpc/conf
TB --- 2013-11-27 06:13:50 - /usr/bin/make -B LINT
TB --- 2013-11-27 06:13:50 - cd /src/sys/powerpc/conf
TB --- 2013-11-27 06:13:50 - /usr/sbin/config -m LINT
TB --- 2013-11-27 06:13:50 - building LINT kernel
TB --- 2013-11-27 06:13:50 - CROSS_BUILD_TESTING=YES
TB --- 2013-11-27 06:13:50 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-11-27 06:13:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-11-27 06:13:50 - SRCCONF=/dev/null
TB --- 2013-11-27 06:13:50 - TARGET=powerpc
TB --- 2013-11-27 06:13:50 - TARGET_ARCH=powerpc
TB --- 2013-11-27 06:13:50 - TZ=UTC
TB --- 2013-11-27 06:13:50 - __MAKE_CONF=/dev/null
TB --- 2013-11-27 06:13:50 - cd /src
TB --- 2013-11-27 06:13:50 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Wed Nov 27 06:13:50 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:506: 
error: 'nfscl_accesscache_flush_done_id' undeclared (first use in this function)
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:508: 
error: 'nfscl_accesscache_get_hit_id' undeclared (first use in this function)
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:510: 
error: 'nfscl_accesscache_get_miss_id' undeclared (first use in this function)
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:512: 
error: 'nfscl_accesscache_load_done_id' undeclared (first use in this function)
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:514: 
error: 'nfscl_attrcache_flush_done_id' undeclared (first use in this function)
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:516: 
error: 'nfscl_attrcache_get_hit_id' undeclared (first use in this function)
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:518: 
error: 'nfscl_attrcache_get_miss_id' undeclared (first use in this function)
/src/sys/modules/dtrace/dtnfscl/../../../fs/nfsclient/nfs_clkdtrace.c:520: 
error: 'nfscl_attrcache_load_done_id' undeclared (first use in this function)
*** Error code 1

Stop.
bmake[4]: stopped in /src/sys/modules/dtrace/dtnfscl
*** Error code 1

Stop.
bmake[3]: stopped in /src/sys/modules/dtrace
*** Error code 1

Stop.
bmake[2]: stopped in /src/sys/modules
*** Error code 1

Stop.
bmake[1]: stopped in /obj/powerpc.powerpc/src/sys/LINT
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2013-11-27 06:26:02 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-11-27 06:26:02 - ERROR: failed to build LINT kernel
TB --- 2013-11-27 06:26:02 - 8571.16 user 1078.95 system 10141.68 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-powerpc-powerpc.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org