Re: Status of NetBSD virtualization roadmap - support jails like features?

2022-04-16 Thread Reinoud Zandijk
Hi, On Sat, Apr 16, 2022 at 06:07:46AM +0200, Matthias Petermann wrote: > > 1) nvmm seems to work well in netbsd (I haven't run it yet) and there has > > been bug fixing. > > > > 2) code flows between BSDs a lot, in many directions. > > > > 3) You could run diff to see what's different and why.

Automated report: NetBSD-current/i386 test failure

2022-04-16 Thread NetBSD Test Fixture
This is an automatically generated notice of new failures of the NetBSD test suite. The newly failing test cases are: usr.bin/xlint/lint1/t_integration:msg_259_ilp32 usr.bin/xlint/lint1/t_integration:platform_int The above tests failed in each of the last 5 test runs, and passed in at

Re: panic: kernel diagnostic assertion VOP_ISLOCKET(vp) == LK_EXCLUSIVE

2022-04-16 Thread Tobias Nygren
On Sat, 16 Apr 2022 16:51:31 +0200 Thomas Klausner wrote: > panic: kernel diagnostic assertion "VOP_ISLOCKED(vp) == LK_EXCLUSIVE" failed: > file "/usr/src/sys/miscfs/specfs/spec_vnops.c", line 1555 > cpu1: Begin traceback... > vpanic() > kern_assert() > spec_close() at netbsd:spec_close+0x2fc >

daily CVS update output

2022-04-16 Thread NetBSD source update
Updating src tree: P src/bin/sh/miscbltin.c P src/bin/sh/mystring.c P src/bin/sh/options.c P src/bin/sh/parser.c P src/etc/rc.d/swap1 P src/external/cddl/osnet/dist/uts/common/fs/zfs/vdev_disk.c P src/games/trek/DOC/trekmanual.nr P src/lib/libc/gen/fixunsgen_ieee754.c P

panic: kernel diagnostic assertion VOP_ISLOCKET(vp) == LK_EXCLUSIVE

2022-04-16 Thread Thomas Klausner
Hi! On 9.99.96 from end of March, I wanted to modify the contents of a tarfile, so I extracted it on a tmpfs, replaced one file and tried tarring it up again - at which point I got the following panic: panic: kernel diagnostic assertion "VOP_ISLOCKED(vp) == LK_EXCLUSIVE" failed: file

Re: panic: kernel diagnostic assertion VOP_ISLOCKET(vp) == LK_EXCLUSIVE

2022-04-16 Thread J. Hannken-Illjes
> On 16. Apr 2022, at 17:27, Tobias Nygren wrote: > > On Sat, 16 Apr 2022 16:51:31 +0200 > Thomas Klausner wrote: > >> panic: kernel diagnostic assertion "VOP_ISLOCKED(vp) == LK_EXCLUSIVE" >> failed: file "/usr/src/sys/miscfs/specfs/spec_vnops.c", line 1555 >> cpu1: Begin traceback... >>

Re: panic: kernel diagnostic assertion VOP_ISLOCKET(vp) == LK_EXCLUSIVE

2022-04-16 Thread Michael van Elst
t...@netbsd.org (Tobias Nygren) writes: >+ vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); > VOP_CLOSE(vp, oflags, kauth_cred_get()); >- vrele(vp); >+ vput(vp); Sounds like an open-coded version of vn_close().

Re: Are NetBSD users interested extending options for patch?

2022-04-16 Thread Hans Petter Selasky
On 4/12/22 11:00, Hans Petter Selasky wrote: https://reviews.freebsd.org/D30160 --HPS Thanks for your input. --HPS

Re: Status of NetBSD virtualization roadmap - support jails like features?

2022-04-16 Thread Matthias Petermann
Hi Greg, Am 15.04.2022 um 20:28 schrieb Greg A. Woods: At Fri, 15 Apr 2022 07:36:15 +0200, Matthias Petermann wrote: Subject: Status of NetBSD virtualization roadmap - support jails like features? My motivation: I am looking for a particularly high performance virtualization solution on

Re: panic: kernel diagnostic assertion VOP_ISLOCKET(vp) == LK_EXCLUSIVE

2022-04-16 Thread David Holland
On Sat, Apr 16, 2022 at 03:37:51PM -, Michael van Elst wrote: > >+ vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); > >VOP_CLOSE(vp, oflags, kauth_cred_get()); > >- vrele(vp); > >+ vput(vp); > > Sounds like an open-coded version of vn_close(). It's not,