[Midnightbsd-cvs] src [6620] U trunk/sys/kern: For gstat, allow users to run as non root.
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Mar 22 11:11:25 EDT 2014
Revision: 6620
http://svnweb.midnightbsd.org/src/?rev=6620
Author: laffer1
Date: 2014-03-22 11:11:25 -0400 (Sat, 22 Mar 2014)
Log Message:
-----------
For gstat, allow users to run as non root. Also, remove giant lock from devstat
del props for cvs2svn:cvs-rev
Modified Paths:
--------------
trunk/sys/kern/subr_devstat.c
Property Changed:
----------------
trunk/sys/kern/subr_clock.c
trunk/sys/kern/subr_devstat.c
trunk/sys/kern/subr_disk.c
trunk/sys/kern/subr_eventhandler.c
trunk/sys/kern/subr_fattime.c
trunk/sys/kern/subr_firmware.c
trunk/sys/kern/subr_hash.c
trunk/sys/kern/subr_hints.c
trunk/sys/kern/subr_kdb.c
trunk/sys/kern/subr_kobj.c
trunk/sys/kern/subr_lock.c
trunk/sys/kern/subr_log.c
trunk/sys/kern/subr_mbpool.c
trunk/sys/kern/subr_mchain.c
trunk/sys/kern/subr_module.c
trunk/sys/kern/subr_msgbuf.c
trunk/sys/kern/subr_param.c
trunk/sys/kern/subr_pcpu.c
trunk/sys/kern/subr_power.c
trunk/sys/kern/subr_prf.c
trunk/sys/kern/subr_prof.c
trunk/sys/kern/subr_rman.c
trunk/sys/kern/subr_rtc.c
trunk/sys/kern/subr_sbuf.c
trunk/sys/kern/subr_scanf.c
trunk/sys/kern/subr_sglist.c
trunk/sys/kern/subr_sleepqueue.c
trunk/sys/kern/subr_smp.c
trunk/sys/kern/subr_stack.c
trunk/sys/kern/subr_syscall.c
trunk/sys/kern/subr_taskqueue.c
trunk/sys/kern/subr_trap.c
trunk/sys/kern/subr_turnstile.c
trunk/sys/kern/subr_uio.c
trunk/sys/kern/subr_unit.c
trunk/sys/kern/subr_witness.c
trunk/sys/kern/sys_capability.c
trunk/sys/kern/sys_generic.c
trunk/sys/kern/sys_pipe.c
trunk/sys/kern/sys_procdesc.c
trunk/sys/kern/sys_process.c
trunk/sys/kern/sys_socket.c
trunk/sys/kern/syscalls.c
trunk/sys/kern/syscalls.master
trunk/sys/kern/systrace_args.c
trunk/sys/kern/sysv_ipc.c
trunk/sys/kern/sysv_msg.c
trunk/sys/kern/sysv_sem.c
trunk/sys/kern/sysv_shm.c
trunk/sys/kern/tty.c
trunk/sys/kern/tty_compat.c
trunk/sys/kern/tty_info.c
trunk/sys/kern/tty_inq.c
trunk/sys/kern/tty_outq.c
trunk/sys/kern/tty_pts.c
trunk/sys/kern/tty_tty.c
trunk/sys/kern/tty_ttydisc.c
trunk/sys/kern/uipc_accf.c
trunk/sys/kern/uipc_cow.c
trunk/sys/kern/uipc_debug.c
trunk/sys/kern/uipc_domain.c
trunk/sys/kern/uipc_mbuf.c
trunk/sys/kern/uipc_mbuf2.c
trunk/sys/kern/uipc_mqueue.c
trunk/sys/kern/uipc_sem.c
trunk/sys/kern/uipc_shm.c
trunk/sys/kern/uipc_sockbuf.c
trunk/sys/kern/uipc_socket.c
trunk/sys/kern/uipc_syscalls.c
trunk/sys/kern/uipc_usrreq.c
trunk/sys/kern/vfs_acl.c
trunk/sys/kern/vfs_aio.c
trunk/sys/kern/vfs_bio.c
trunk/sys/kern/vfs_cache.c
trunk/sys/kern/vfs_cluster.c
trunk/sys/kern/vfs_default.c
trunk/sys/kern/vfs_export.c
trunk/sys/kern/vfs_extattr.c
trunk/sys/kern/vfs_hash.c
trunk/sys/kern/vfs_init.c
trunk/sys/kern/vfs_lookup.c
trunk/sys/kern/vfs_mount.c
trunk/sys/kern/vfs_mountroot.c
trunk/sys/kern/vfs_subr.c
trunk/sys/kern/vfs_syscalls.c
trunk/sys/kern/vfs_vnops.c
trunk/sys/kern/vnode_if.src
Index: trunk/sys/kern/subr_clock.c
===================================================================
--- trunk/sys/kern/subr_clock.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_clock.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_clock.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Modified: trunk/sys/kern/subr_devstat.c
===================================================================
--- trunk/sys/kern/subr_devstat.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_devstat.c 2014-03-22 15:11:25 UTC (rev 6620)
@@ -429,7 +429,6 @@
static struct cdevsw devstat_cdevsw = {
.d_version = D_VERSION,
- .d_flags = D_NEEDGIANT,
.d_mmap = devstat_mmap,
.d_name = "devstat",
};
@@ -451,13 +450,16 @@
if (nprot != VM_PROT_READ)
return (-1);
+ mtx_lock(&devstat_mutex);
TAILQ_FOREACH(spp, &pagelist, list) {
if (offset == 0) {
*paddr = vtophys(spp->stat);
+ mtx_unlock(&devstat_mutex);
return (0);
}
offset -= PAGE_SIZE;
}
+ mtx_unlock(&devstat_mutex);
return (-1);
}
@@ -472,7 +474,7 @@
mtx_assert(&devstat_mutex, MA_NOTOWNED);
if (!once) {
make_dev_credf(MAKEDEV_ETERNAL | MAKEDEV_CHECKNAME,
- &devstat_cdevsw, 0, NULL, UID_ROOT, GID_WHEEL, 0400,
+ &devstat_cdevsw, 0, NULL, UID_ROOT, GID_WHEEL, 0440,
DEVSTAT_DEVICE_NAME);
once = 1;
}
Property changes on: trunk/sys/kern/subr_devstat.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/subr_disk.c
===================================================================
--- trunk/sys/kern/subr_disk.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_disk.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_disk.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_eventhandler.c
===================================================================
--- trunk/sys/kern/subr_eventhandler.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_eventhandler.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_eventhandler.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/subr_fattime.c
===================================================================
--- trunk/sys/kern/subr_fattime.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_fattime.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_fattime.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/subr_firmware.c
===================================================================
--- trunk/sys/kern/subr_firmware.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_firmware.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_firmware.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_hash.c
===================================================================
--- trunk/sys/kern/subr_hash.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_hash.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_hash.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/subr_hints.c
===================================================================
--- trunk/sys/kern/subr_hints.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_hints.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_hints.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_kdb.c
===================================================================
--- trunk/sys/kern/subr_kdb.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_kdb.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_kdb.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_kobj.c
===================================================================
--- trunk/sys/kern/subr_kobj.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_kobj.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_kobj.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_lock.c
===================================================================
--- trunk/sys/kern/subr_lock.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_lock.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_lock.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/subr_log.c
===================================================================
--- trunk/sys/kern/subr_log.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_log.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_log.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/subr_mbpool.c
===================================================================
--- trunk/sys/kern/subr_mbpool.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_mbpool.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_mbpool.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_mchain.c
===================================================================
--- trunk/sys/kern/subr_mchain.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_mchain.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_mchain.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_module.c
===================================================================
--- trunk/sys/kern/subr_module.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_module.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_module.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/subr_msgbuf.c
===================================================================
--- trunk/sys/kern/subr_msgbuf.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_msgbuf.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_msgbuf.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/subr_param.c
===================================================================
--- trunk/sys/kern/subr_param.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_param.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_param.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/subr_pcpu.c
===================================================================
--- trunk/sys/kern/subr_pcpu.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_pcpu.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_pcpu.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_power.c
===================================================================
--- trunk/sys/kern/subr_power.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_power.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_power.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_prf.c
===================================================================
--- trunk/sys/kern/subr_prf.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_prf.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_prf.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/subr_prof.c
===================================================================
--- trunk/sys/kern/subr_prof.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_prof.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_prof.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_rman.c
===================================================================
--- trunk/sys/kern/subr_rman.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_rman.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_rman.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_rtc.c
===================================================================
--- trunk/sys/kern/subr_rtc.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_rtc.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_rtc.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/subr_sbuf.c
===================================================================
--- trunk/sys/kern/subr_sbuf.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_sbuf.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_sbuf.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_scanf.c
===================================================================
--- trunk/sys/kern/subr_scanf.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_scanf.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_scanf.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/subr_sglist.c
===================================================================
--- trunk/sys/kern/subr_sglist.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_sglist.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_sglist.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/subr_sleepqueue.c
===================================================================
--- trunk/sys/kern/subr_sleepqueue.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_sleepqueue.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_sleepqueue.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/subr_smp.c
===================================================================
--- trunk/sys/kern/subr_smp.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_smp.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_smp.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Index: trunk/sys/kern/subr_stack.c
===================================================================
--- trunk/sys/kern/subr_stack.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_stack.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_stack.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_syscall.c
===================================================================
--- trunk/sys/kern/subr_syscall.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_syscall.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_syscall.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/subr_taskqueue.c
===================================================================
--- trunk/sys/kern/subr_taskqueue.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_taskqueue.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_taskqueue.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/subr_trap.c
===================================================================
--- trunk/sys/kern/subr_trap.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_trap.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_trap.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_turnstile.c
===================================================================
--- trunk/sys/kern/subr_turnstile.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_turnstile.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_turnstile.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_uio.c
===================================================================
--- trunk/sys/kern/subr_uio.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_uio.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_uio.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/subr_unit.c
===================================================================
--- trunk/sys/kern/subr_unit.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_unit.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_unit.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/subr_witness.c
===================================================================
--- trunk/sys/kern/subr_witness.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/subr_witness.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/subr_witness.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.9
\ No newline at end of property
Index: trunk/sys/kern/sys_capability.c
===================================================================
--- trunk/sys/kern/sys_capability.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sys_capability.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sys_capability.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/sys_generic.c
===================================================================
--- trunk/sys/kern/sys_generic.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sys_generic.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sys_generic.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/sys_pipe.c
===================================================================
--- trunk/sys/kern/sys_pipe.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sys_pipe.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sys_pipe.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Index: trunk/sys/kern/sys_procdesc.c
===================================================================
--- trunk/sys/kern/sys_procdesc.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sys_procdesc.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sys_procdesc.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/sys_process.c
===================================================================
--- trunk/sys/kern/sys_process.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sys_process.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sys_process.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/sys_socket.c
===================================================================
--- trunk/sys/kern/sys_socket.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sys_socket.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sys_socket.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/syscalls.c
===================================================================
--- trunk/sys/kern/syscalls.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/syscalls.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/syscalls.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.10
\ No newline at end of property
Index: trunk/sys/kern/syscalls.master
===================================================================
--- trunk/sys/kern/syscalls.master 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/syscalls.master 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/syscalls.master
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.11
\ No newline at end of property
Index: trunk/sys/kern/systrace_args.c
===================================================================
--- trunk/sys/kern/systrace_args.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/systrace_args.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/systrace_args.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Index: trunk/sys/kern/sysv_ipc.c
===================================================================
--- trunk/sys/kern/sysv_ipc.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sysv_ipc.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sysv_ipc.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/sysv_msg.c
===================================================================
--- trunk/sys/kern/sysv_msg.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sysv_msg.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sysv_msg.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/sysv_sem.c
===================================================================
--- trunk/sys/kern/sysv_sem.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sysv_sem.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sysv_sem.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/sysv_shm.c
===================================================================
--- trunk/sys/kern/sysv_shm.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/sysv_shm.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/sysv_shm.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/tty.c
===================================================================
--- trunk/sys/kern/tty.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/tty.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/tty.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Index: trunk/sys/kern/tty_compat.c
===================================================================
--- trunk/sys/kern/tty_compat.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/tty_compat.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/tty_compat.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/tty_info.c
===================================================================
--- trunk/sys/kern/tty_info.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/tty_info.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/tty_info.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/tty_inq.c
===================================================================
--- trunk/sys/kern/tty_inq.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/tty_inq.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/tty_inq.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/tty_outq.c
===================================================================
--- trunk/sys/kern/tty_outq.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/tty_outq.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/tty_outq.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/tty_pts.c
===================================================================
--- trunk/sys/kern/tty_pts.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/tty_pts.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/tty_pts.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/tty_tty.c
===================================================================
--- trunk/sys/kern/tty_tty.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/tty_tty.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/tty_tty.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/tty_ttydisc.c
===================================================================
--- trunk/sys/kern/tty_ttydisc.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/tty_ttydisc.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/tty_ttydisc.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/uipc_accf.c
===================================================================
--- trunk/sys/kern/uipc_accf.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_accf.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_accf.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/uipc_cow.c
===================================================================
--- trunk/sys/kern/uipc_cow.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_cow.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_cow.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/uipc_debug.c
===================================================================
--- trunk/sys/kern/uipc_debug.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_debug.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_debug.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/uipc_domain.c
===================================================================
--- trunk/sys/kern/uipc_domain.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_domain.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_domain.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Index: trunk/sys/kern/uipc_mbuf.c
===================================================================
--- trunk/sys/kern/uipc_mbuf.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_mbuf.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_mbuf.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.9
\ No newline at end of property
Index: trunk/sys/kern/uipc_mbuf2.c
===================================================================
--- trunk/sys/kern/uipc_mbuf2.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_mbuf2.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_mbuf2.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/uipc_mqueue.c
===================================================================
--- trunk/sys/kern/uipc_mqueue.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_mqueue.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_mqueue.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/uipc_sem.c
===================================================================
--- trunk/sys/kern/uipc_sem.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_sem.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_sem.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/uipc_shm.c
===================================================================
--- trunk/sys/kern/uipc_shm.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_shm.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_shm.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/uipc_sockbuf.c
===================================================================
--- trunk/sys/kern/uipc_sockbuf.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_sockbuf.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_sockbuf.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/uipc_socket.c
===================================================================
--- trunk/sys/kern/uipc_socket.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_socket.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_socket.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/uipc_syscalls.c
===================================================================
--- trunk/sys/kern/uipc_syscalls.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_syscalls.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_syscalls.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Index: trunk/sys/kern/uipc_usrreq.c
===================================================================
--- trunk/sys/kern/uipc_usrreq.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/uipc_usrreq.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/uipc_usrreq.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Index: trunk/sys/kern/vfs_acl.c
===================================================================
--- trunk/sys/kern/vfs_acl.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_acl.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_acl.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/vfs_aio.c
===================================================================
--- trunk/sys/kern/vfs_aio.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_aio.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_aio.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Index: trunk/sys/kern/vfs_bio.c
===================================================================
--- trunk/sys/kern/vfs_bio.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_bio.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_bio.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.10
\ No newline at end of property
Index: trunk/sys/kern/vfs_cache.c
===================================================================
--- trunk/sys/kern/vfs_cache.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_cache.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_cache.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Index: trunk/sys/kern/vfs_cluster.c
===================================================================
--- trunk/sys/kern/vfs_cluster.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_cluster.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_cluster.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/vfs_default.c
===================================================================
--- trunk/sys/kern/vfs_default.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_default.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_default.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/vfs_export.c
===================================================================
--- trunk/sys/kern/vfs_export.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_export.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_export.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/vfs_extattr.c
===================================================================
--- trunk/sys/kern/vfs_extattr.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_extattr.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_extattr.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Index: trunk/sys/kern/vfs_hash.c
===================================================================
--- trunk/sys/kern/vfs_hash.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_hash.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_hash.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Index: trunk/sys/kern/vfs_init.c
===================================================================
--- trunk/sys/kern/vfs_init.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_init.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_init.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/vfs_lookup.c
===================================================================
--- trunk/sys/kern/vfs_lookup.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_lookup.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_lookup.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Index: trunk/sys/kern/vfs_mount.c
===================================================================
--- trunk/sys/kern/vfs_mount.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_mount.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_mount.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.10
\ No newline at end of property
Index: trunk/sys/kern/vfs_mountroot.c
===================================================================
--- trunk/sys/kern/vfs_mountroot.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_mountroot.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_mountroot.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Index: trunk/sys/kern/vfs_subr.c
===================================================================
--- trunk/sys/kern/vfs_subr.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_subr.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_subr.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Index: trunk/sys/kern/vfs_syscalls.c
===================================================================
--- trunk/sys/kern/vfs_syscalls.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_syscalls.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_syscalls.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Index: trunk/sys/kern/vfs_vnops.c
===================================================================
--- trunk/sys/kern/vfs_vnops.c 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vfs_vnops.c 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vfs_vnops.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Index: trunk/sys/kern/vnode_if.src
===================================================================
--- trunk/sys/kern/vnode_if.src 2014-03-18 04:12:10 UTC (rev 6619)
+++ trunk/sys/kern/vnode_if.src 2014-03-22 15:11:25 UTC (rev 6620)
Property changes on: trunk/sys/kern/vnode_if.src
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list