Re: CVS commit: src/sys/fs/ptyfs

2014-08-13 Thread Alan Barrett

On Wed, 13 Aug 2014, Juergen Hannken-Illjes wrote:

Modified Files:
src/sys/fs/ptyfs: ptyfs.h ptyfs_subr.c ptyfs_vfsops.c ptyfs_vnops.c

Log Message:
- Add a map of active controlling ptys per mount and no longer abuse
 the vnode lifecycle.
- No longer set recycle on VOP_INACTIVE().
- Make ptyfs_used_get() private to ptyfs_subr.c
- Stop copying device attributes from traditional ptys on first allocation.
- Remove unneeded argument lwp from ptyfs_allocvp() and ptyfs_free_get().


Please could you update the mount_ptyfs(8) man page to explain the
new behaviour.

--apb (Alan Barrett)


Re: CVS commit: src/sys/fs/ptyfs

2012-10-24 Thread David Holland
On Tue, Oct 23, 2012 at 07:31:01PM -0400, Christos Zoulas wrote:
  Module Name: src
  Committed By:christos
  Date:Tue Oct 23 23:31:01 UTC 2012
  
  Modified Files:
   src/sys/fs/ptyfs: ptyfs_subr.c
  
  Log Message:
  fix the mystery of the bad directory times.
 
  [...]
  -   ptyfs-ptyfs_flags |= PTYFS_CHANGE;
  +   ptyfs-ptyfs_flag |= PTYFS_CHANGE;

so, how'd we end up with both those members in the same structure, and
can someone rename one or preferably both of them to something with
semantic significance?

-- 
David A. Holland
dholl...@netbsd.org


Re: CVS commit: src/sys/fs/ptyfs

2012-10-24 Thread Christos Zoulas
In article 20121024204834.ga11...@netbsd.org,
David Holland  dholland-sourcechan...@netbsd.org wrote:
On Tue, Oct 23, 2012 at 07:31:01PM -0400, Christos Zoulas wrote:
  Module Name:src
  Committed By:   christos
  Date:   Tue Oct 23 23:31:01 UTC 2012
  
  Modified Files:
  src/sys/fs/ptyfs: ptyfs_subr.c
  
  Log Message:
  fix the mystery of the bad directory times.
 
  [...]
  -   ptyfs-ptyfs_flags |= PTYFS_CHANGE;
  +   ptyfs-ptyfs_flag |= PTYFS_CHANGE;

so, how'd we end up with both those members in the same structure, and
can someone rename one or preferably both of them to something with
semantic significance?

That would be me. I will change one of the names on head.

christos