Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: [netbsd-5] src/sys



Module Name:    src
Committed By:   snj
Date:           Wed Mar 18 05:33:23 UTC 2009

Modified Files:
        src/sys/kern [netbsd-5]: kern_descrip.c uipc_usrreq.c
        src/sys/sys [netbsd-5]: fcntl.h file.h param.h un.h

Log Message:
Pull up following revision(s) (requested by mrg in ticket #577):
        sys/kern/kern_descrip.c: revision 1.188
        sys/kern/uipc_usrreq.c: revision 1.121
        sys/sys/fcntl.h: revision 1.35
        sys/sys/file.h: revision 1.66
        sys/sys/param.h: patch
        sys/sys/un.h: revision 1.45
completely rework the way that orphaned sockets that are being fdpassed
via SCM_RIGHTS messages are dealt with:
1. unp_gc: make this a kthread.
2. unp_detach: go not call unp_gc directly. instead, wake up unp_gc kthread.
3. unp_scan: do not close files here. instead, put them on a global list
   for unp_gc to close, along with a per-file "deferred close count". if
   file is already enqueued for close, just increment deferred close count.
   this eliminates the recursive calls.
3. unp_gc: scan files on global deferred close list. close each file N
   times, as specified by deferred close count in file. continue processing
   list until it becomes empty (closing may cause additional files to be
   queued for close).
4. unp_gc: add additional bit to mark files we are scanning. set during
   initial scan of global file list that currently clears FMARK/FDEFER.
   during later scans, never examine / garbage collect descriptors that
   we have not marked during the earlier scan. do not proceed with this
   initial scan until all deferred closes have been processed. be careful
   with locking to ensure no races are introduced between deferred close
   and file scan.
5. unp_gc: use dummy file_t to mark position in list when scanning. allow
   us to drop filelist_lock. in turn allows us to eliminate kmem_alloc()
   and safely close files, etc.
6. prohibit transfer of descriptors within SCM_RIGHTS messages if
   (num_files_in_transit > maxfiles / unp_rights_ratio)
7. fd_allocfile: ensure recycled filse don't get scanned.
this is 97% work done by andrew doran, with a couple of minor bug fixes
and a lot of testing by yours truly.


To generate a diff of this commit:
cvs rdiff -u -r1.182.6.3 -r1.182.6.4 src/sys/kern/kern_descrip.c
cvs rdiff -u -r1.119.4.1 -r1.119.4.2 src/sys/kern/uipc_usrreq.c
cvs rdiff -u -r1.34 -r1.34.64.1 src/sys/sys/fcntl.h
cvs rdiff -u -r1.65 -r1.65.6.1 src/sys/sys/file.h
cvs rdiff -u -r1.330.4.3 -r1.330.4.4 src/sys/sys/param.h
cvs rdiff -u -r1.44 -r1.44.4.1 src/sys/sys/un.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



Home | Main Index | Thread Index | Old Index