Re: CVS commit: src/sys/kern

2021-01-21 Thread Tom Spindler (moof)
I believe it's this change that's made my vbox image panic at the drop of a hat; while it occasionally panics before it even hits single user, it also consistently panics when starting syslogd (even from single-user): panic: kqueue_scan,1491: kq=0xc779aeff6dc0 kq->kq_count(1) != count(0),

Re: CVS commit: src/sys/external/bsd/acpica/dist

2020-08-03 Thread Tom Spindler (moof)
On Mon, Aug 03, 2020 at 10:59:04PM +0200, Herbert J. Skuhra wrote: > This breaks the build (amd64) on FreeBSD and GNU/Linux: > > aslcompilerlex.l: In function 'AslCompilerlex': > aslcompilerlex.l:589:22: error: 'PARSEOP_REGIONSPACE_PRM' undeclared (first > use in this function); did you mean

Re: CVS commit: src/bin/sleep

2019-01-27 Thread Tom Spindler (moof)
On Mon, Jan 28, 2019 at 07:52:22AM +0700, Robert Elz wrote: > That PR needed to be fixed, even before it was filed, as stray > characters after the numeric value are more likely to be something > attempting linux "sleep 2m" (ie: sleep 120) raher than someone > attempting to sleep for a currency

Re: CVS commit: [netbsd-8] src/sys/compat

2019-01-02 Thread Tom Spindler (moof)
This breaks the netbsd-8 build: dependall ===> lib/libc # compile libc/compat___msgctl13.o /usr/obj/8tools/bin/x86_64--netbsd-gcc -O2 -std=gnu99-Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings

Re: CVS commit: src/sys/nfs

2018-01-25 Thread Tom Spindler (moof)
> > Log Message: > > Use a random opaque cookie, not kva pointer, for nfssvc(2). > > > > (What were they smoking?!) It looks like most of the code is from the 4.4-Lite merge from mycroft circa 1994 (!!); I leave it up to the reader to determine what was being smoked when at Berkeley. > > I

Re: CVS commit: src/sys/dev/ic

2016-05-16 Thread Tom Spindler
Don't know if it's your change, but for the alpha... /usr/src/netbsd/sys/dev/ic/sl811hs.c: In function 'slhci_root_start': /usr/src/netbsd/sys/dev/ic/sl811hs.c:989:21: error: variable 'spipe' set but not used [-Werror=unused-but-set-variable] struct slhci_pipe *spipe; ^

Re: CVS commit: src/tools/host-mkdep

2013-03-14 Thread Tom Spindler (moof)
Log Message: Revert 1.25 and 1.26: Breaks build on !NetBSD Can you explain how? The shell does not work? E.g. util.h not found in binstall and a lot of other header issues. On what os? I've seen it on OSX ( 10.5 PowerPC if it matters ). And I've seen it on Debian.

Re: CVS commit: src/sys/dev/sdmmc

2010-09-20 Thread Tom Spindler
Modified Files: src/sys/dev/sdmmc: sdmmc_mem.c Did you miss committing a header file and/or further sets of patches? /usr/src/sys/dev/sdmmc/sdmmc_mem.c: In function 'sdmmc_mem_init': /usr/src/sys/dev/sdmmc/sdmmc_mem.c:476: error: 'SMC_CAPS_8BIT_MODE' undeclared (first use in this

Re: CVS commit: src

2010-08-31 Thread Tom Spindler
src/sys/sys: exec_elf.h Log Message: Replace the current usage of Elf64_Half with Elf64_Word and rename NetBSD specific Elf64_Quarter to Elf64_Half. This restores compatibility with the common ELF specifications. I believe this change is what's causing alpha to blow up:

Re: CVS commit: src/crypto/external/bsd/netpgp/dist/src/lib

2010-07-26 Thread Tom Spindler
Modified Files: src/crypto/external/bsd/netpgp/dist/src/lib: keyring.h packet-print.c Added Files: src/crypto/external/bsd/netpgp/dist/src/lib: mj.c mj.h Log Message: add a minimalist JSON implementation, and add a new function to access the data, and serialise it using JSON.

Re: CVS commit: src/distrib/sets/lists

2010-07-02 Thread Tom Spindler
On Fri, Jul 02, 2010 at 07:43:36AM +, matthew green wrote: Module Name: src Committed By: mrg Date: Fri Jul 2 07:43:36 UTC 2010 Modified Files: src/distrib/sets/lists/comp: shl.mi src/distrib/sets/lists/xbase: shl.mi Removed Files:

Re: CVS commit: src/usr.bin/make

2010-04-22 Thread Tom Spindler
Modified Files: src/usr.bin/make: job.c main.c make.h Log Message: Just because $TMPDIR is set does not mean it is valid. Add a central function for creating temp files so we have one place to audit. This breaks build.sh when bootstrapping nbmake on linux: cc -O -o nbmake *.o

Re: CVS commit: src/distrib

2010-04-22 Thread Tom Spindler
Log Message: Change use of ${CP} and ${CHMOD} to ${INSTALL_FILE}, so that if the target is made un-writeable, the build won't bomb out during an UPDATE build. OK'ed by mar...@. on i386, when I try building, I now get: /usr/local/locdisk/locobj/tools/bin/nbmtree -CSM -k all -N /src/nbsrc/etc

Re: CVS commit: src/share/man/man4

2010-02-09 Thread Tom Spindler
IMHO, especially for formats that end up in plain text more often than not, it's better to use oxford commas to explicitly delineate what conditions are; in this particular case, I think one could easily parse the text with (critover or invalid) as a single value. IMVHO, the title should be

Re: CVS commit: src/sys/uvm

2009-08-11 Thread Tom Spindler
/src/current/sys/uvm/uvm_page.c:120: error: conflicting types for 'physmem' /src/current/sys/sys/systm.h:82: error: previous declaration of 'physmem' was here I can't see why the first part of the diff (adding `uintptr_t physmem;`) was even added in the first place.