AsiaBSDCon 2014 P2B: NPF - progress and perspective

2014-03-21 Thread Mindaugas Rasiukevicius
Hello, Here are the slides of the NPF - progress and perspective presentation: http://www.netbsd.org/~rmind/pub/npf_asiabsdcon_2014.pdf You can also find the paper in the AsiaBSDCon 2014 Proceedings. Thank you. -- Mindaugas

Re: Enhance ptyfs to handle multiple instances.

2014-03-21 Thread Ilya Zykov
Hello! Correct ptyfs_readdir for multi mount points use. ptyfs.h |1 + ptyfs_subr.c |3 +-- ptyfs_vnops.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) Ilya. Index: fs/ptyfs/ptyfs.h === RCS file:

Vnode API change: VI_CLEAN and VI_XLOCK

2014-03-21 Thread J. Hannken-Illjes
The vnode flags VI_CLEAN and VI_XLOCK are used in file systems to check for reclaimed or reclaiming but still active vnodes, so make the vnode flags VI_XLOCK, VI_CLEAN (and VI_LOCKSHARE) private to the files kern/vfs_* and add a function to check the vnode state: int vdead_check(struct vnode

Re: Vnode API change: VI_CLEAN and VI_XLOCK

2014-03-21 Thread Taylor R Campbell
Date: Fri, 21 Mar 2014 11:10:54 +0100 From: J. Hannken-Illjes hann...@eis.cs.tu-bs.de The vnode flags VI_CLEAN and VI_XLOCK are used in file systems to check for reclaimed or reclaiming but still active vnodes, so make the vnode flags VI_XLOCK, VI_CLEAN (and VI_LOCKSHARE) private

Re: NetBSD kernel booting on lm32

2014-03-21 Thread Yann Sionneau
2014-03-20 10:38 GMT+01:00 Yann Sionneau yann.sionn...@gmail.com: Hi, I am very happy to announce that the NetBSD/lm32 project is making good progress :) [...] Regards, Hi NetBSD guys, Is this normal I get that much error messages about sysctl_createv ? Am I doing something wrong here?

[ANN] rumprun

2014-03-21 Thread Justin Cormack
I know a few people have been using this already, but I thought I would do a more formal announcement as I have now pushed a much improved version (no longer uses dlopen). Rumprun, available from https://github.com/rumpkernel/rumprun is a set of build scripts that builds NetBSD userspace tools

Re: Vnode API change: VI_CLEAN and VI_XLOCK

2014-03-21 Thread J. Hannken-Illjes
On Mar 21, 2014, at 3:07 PM, Taylor R Campbell campbell+netbsd-tech-k...@mumble.net wrote: Date: Fri, 21 Mar 2014 11:10:54 +0100 From: J. Hannken-Illjes hann...@eis.cs.tu-bs.de The vnode flags VI_CLEAN and VI_XLOCK are used in file systems to check for reclaimed or reclaiming but

Re: [M-Labs devel] NetBSD kernel booting on lm32

2014-03-21 Thread Christos Zoulas
In article CACi+aWYQ9x8c2W6M7qwzOdr=l9cvzkz_p4jsporttsoagjx...@mail.gmail.com, Yann Sionneau yann.sionn...@gmail.com wrote: 2014-03-20 10:38 GMT+01:00 Yann Sionneau yann.sionn...@gmail.com: Hi, I am very happy to announce that the NetBSD/lm32 project is making good progress :) [...]

Re: Enhance ptyfs to handle multiple instances.

2014-03-21 Thread Christos Zoulas
In article 532c0718.3020...@izyk.ru, Ilya Zykov net...@izyk.ru wrote: -=-=-=-=-=- Hello! Correct ptyfs_readdir for multi mount points use. committed. christos

Re: Enhance ptyfs to handle multiple instances.

2014-03-21 Thread Ilya Zykov
DONE. :) If seriously, it's first working prototype for comments and objections. It's working as follow: Mount first ptyfs instance in /dev/pts(or other path) you can get access to master side through ptm{x} device. Mount second ptyfs instance inside chroot(Example: /var/chroot/test/dev/pts),

Re: [M-Labs devel] NetBSD kernel booting on lm32

2014-03-21 Thread Yann Sionneau
Le 21 mars 2014 18:16, Christos Zoulas chris...@astron.com a écrit : In article CACi+aWYQ9x8c2W6M7qwzOdr= l9cvzkz_p4jsporttsoagjx...@mail.gmail.com, Yann Sionneau yann.sionn...@gmail.com wrote: 2014-03-20 10:38 GMT+01:00 Yann Sionneau yann.sionn...@gmail.com: Hi, I am very happy to

Re: [M-Labs devel] NetBSD kernel booting on lm32

2014-03-21 Thread Christos Zoulas
On Mar 21, 7:05pm, yann.sionn...@gmail.com (Yann Sionneau) wrote: -- Subject: Re: [M-Labs devel] NetBSD kernel booting on lm32 | Do you see the printf: | | printf(sysctl_createv: sysctl_locate(%s) returned %d\n, | nnode.sysctl_name, error); | | Yes that's

Re: Enhance ptyfs to handle multiple instances.

2014-03-21 Thread Christos Zoulas
On Mar 21, 10:23pm, net...@izyk.ru (Ilya Zykov) wrote: -- Subject: Re: Enhance ptyfs to handle multiple instances. | If seriously, it's first working prototype for comments and objections. | | It's working as follow: | | Mount first ptyfs instance in /dev/pts(or other path) you can get access