freebsd-dev/sys/ufs/ffs
Poul-Henning Kamp 227ee8a188 Eradicate the variable "time" from the kernel, using various measures.
"time" wasn't a atomic variable, so splfoo() protection were needed
around any access to it, unless you just wanted the seconds part.

Most uses of time.tv_sec now uses the new variable time_second instead.

gettime() changed to getmicrotime(0.

Remove a couple of unneeded splfoo() protections, the new getmicrotime()
is atomic, (until Bruce sets a breakpoint in it).

A couple of places needed random data, so use read_random() instead
of mucking about with time which isn't random.

Add a new nfs_curusec() function.

Mark a couple of bogosities involving the now disappeard time variable.

Update ffs_update() to avoid the weird "== &time" checks, by fixing the
one remaining call that passwd &time as args.

Change profiling in ncr.c to use ticks instead of time.  Resolution is
the same.

Add new function "tvtohz()" to avoid the bogus "splfoo(), add time, call
hzto() which subtracts time" sequences.

Reviewed by:	bde
1998-03-30 09:56:58 +00:00
..
ffs_alloc.c Eradicate the variable "time" from the kernel, using various measures. 1998-03-30 09:56:58 +00:00
ffs_balloc.c Reviewed by: dyson@freebsd.org (john Dyson), dg@root.com (david greenman) 1998-03-08 09:59:44 +00:00
ffs_extern.h Forward declare even more structs to restore some self-sufficiency. 1998-03-23 14:12:37 +00:00
ffs_inode.c Eradicate the variable "time" from the kernel, using various measures. 1998-03-30 09:56:58 +00:00
ffs_softdep_stub.c Submitted by: kirk McKusick 1998-03-08 08:38:41 +00:00
ffs_subr.c Moved some #includes from <sys/param.h> nearer to where they are actually 1998-03-28 10:33:27 +00:00
ffs_tables.c
ffs_vfsops.c Eradicate the variable "time" from the kernel, using various measures. 1998-03-30 09:56:58 +00:00
ffs_vnops.c Eradicate the variable "time" from the kernel, using various measures. 1998-03-30 09:56:58 +00:00
fs.h Reviewed by: dyson@freebsd.org (john Dyson), dg@root.com (david greenman) 1998-03-08 09:59:44 +00:00