The NetBSD Project

CVS log for src/sys/fs/sysvbfs/sysvbfs_vnops.c

[BACK] Up to [cvs.NetBSD.org] / src / sys / fs / sysvbfs

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.48 / (download) - annotate - [select for diffs], Wed May 15 16:44:03 2013 UTC (9 days, 14 hours ago) by pooka
Branch: MAIN
CVS Tags: HEAD
Changes since 1.47: +10 -2 lines
Diff to previous 1.47 (colored)

Don't change a read-only file system.

Revision 1.47 / (download) - annotate - [select for diffs], Mon Mar 18 19:35:40 2013 UTC (2 months ago) by plunky
Branch: MAIN
CVS Tags: khorben-n900, agc-symver-base, agc-symver
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored)

C99 section 6.7.2.3 (Tags) Note 3 states that:

  A type specifier of the form

	enum identifier

  without an enumerator list shall only appear after the type it
  specifies is complete.

which means that we cannot pass an "enum vtype" argument to
kauth_access_action() without fully specifying the type first.
Unfortunately there is a complicated include file loop which
makes that difficult, so convert this minimal function into a
macro (and capitalize it).

(ok elad@)

Revision 1.46 / (download) - annotate - [select for diffs], Mon Jun 11 21:11:41 2012 UTC (11 months, 1 week ago) by agc
Branch: MAIN
CVS Tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, tls-maxphys-nbase, tls-maxphys-base, tls-maxphys
Changes since 1.45: +3 -3 lines
Diff to previous 1.45 (colored)

cosmetic change: fix two casts to be of the appropriate type

Revision 1.45 / (download) - annotate - [select for diffs], Tue May 8 14:28:55 2012 UTC (12 months, 2 weeks ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-pagecache-base5, jmcneill-usbmp-base10
Changes since 1.44: +22 -5 lines
Diff to previous 1.44 (colored)

Move bfs_file_setsize() from bfs.c to sysvbfs_vnops.c
(and rename it to sysvbfs_file_setsize()) because it's actually
part of vnode ops and bfs.c is also pulled by standalone bootloaders
which don't want vnode header mess.

Revision 1.44 / (download) - annotate - [select for diffs], Sun Apr 29 22:53:59 2012 UTC (12 months, 3 weeks ago) by chs
Branch: MAIN
Changes since 1.43: +3 -3 lines
Diff to previous 1.43 (colored)

change vflushbuf() to take the full FSYNC_* flags.
translate FSYNC_LAZY into PGO_LAZY for VOP_PUTPAGES() so that
genfs_do_io() can set the appropriate io priority for the I/O.
this is the first part of addressing PR 46325.

Revision 1.43 / (download) - annotate - [select for diffs], Fri Mar 30 18:27:55 2012 UTC (13 months, 3 weeks ago) by njoly
Branch: MAIN
CVS Tags: yamt-pagecache-base4, jmcneill-usbmp-base9, jmcneill-usbmp-base8
Changes since 1.42: +5 -2 lines
Diff to previous 1.42 (colored)

sysvbfs do not support file flags; fail with EOPNOTSUPP.

Revision 1.42 / (download) - annotate - [select for diffs], Sun Mar 18 02:40:55 2012 UTC (14 months, 1 week ago) by christos
Branch: MAIN
Changes since 1.41: +26 -13 lines
Diff to previous 1.41 (colored)

handle file resizing.

Revision 1.41 / (download) - annotate - [select for diffs], Tue Mar 13 18:40:50 2012 UTC (14 months, 1 week ago) by elad
Branch: MAIN
Changes since 1.40: +22 -12 lines
Diff to previous 1.40 (colored)

Replace the remaining KAUTH_GENERIC_ISSUSER authorization calls with
something meaningful. All relevant documentation has been updated or
written.

Most of these changes were brought up in the following messages:

    http://mail-index.netbsd.org/tech-kern/2012/01/18/msg012490.html
    http://mail-index.netbsd.org/tech-kern/2012/01/19/msg012502.html
    http://mail-index.netbsd.org/tech-kern/2012/02/17/msg012728.html

Thanks to christos, manu, njoly, and jmmv for input.

Huge thanks to pgoyette for spinning these changes through some build
cycles and ATF.

Revision 1.40 / (download) - annotate - [select for diffs], Fri Jan 27 21:46:42 2012 UTC (15 months, 3 weeks ago) by njoly
Branch: MAIN
CVS Tags: netbsd-6-base, jmcneill-usbmp-base7, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2
Branch point for: netbsd-6
Changes since 1.39: +28 -8 lines
Diff to previous 1.39 (colored)

Check credentials when setting uid, gid or mode attributes.

Revision 1.39 / (download) - annotate - [select for diffs], Mon Dec 12 19:11:21 2011 UTC (17 months, 1 week ago) by njoly
Branch: MAIN
Changes since 1.38: +9 -3 lines
Diff to previous 1.38 (colored)

Start making fs read(2) fail with EISDIR if the implementation does
not allow read on directories (kernfs, rumpfs, ptyfs and sysvbfs).
Adjust man page accordingly, and add a small corresponding vfs
testcase.

Revision 1.38 / (download) - annotate - [select for diffs], Thu May 19 03:11:58 2011 UTC (2 years ago) by rmind
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, rmind-uvmplock-nbase, rmind-uvmplock-base, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base, jmcneill-audiomp3-base, jmcneill-audiomp3, cherry-xenmp-base, cherry-xenmp
Branch point for: yamt-pagecache, jmcneill-usbmp
Changes since 1.37: +2 -3 lines
Diff to previous 1.37 (colored)

Remove cache_purge(9) calls from reclamation routines in the file systems,
as vclean(9) performs it for us since Lite2 merge.

Revision 1.37 / (download) - annotate - [select for diffs], Tue Apr 26 11:32:38 2011 UTC (2 years ago) by hannken
Branch: MAIN
Changes since 1.36: +4 -7 lines
Diff to previous 1.36 (colored)

Change vflushbuf() to return an error if a synchronous write fails.

Welcome to 5.99.51.

Revision 1.36 / (download) - annotate - [select for diffs], Mon Jan 31 18:48:50 2011 UTC (2 years, 3 months ago) by njoly
Branch: MAIN
CVS Tags: bouyer-quota2-nbase, bouyer-quota2-base
Changes since 1.35: +8 -2 lines
Diff to previous 1.35 (colored)

In sysvbfs_lookup(), deny last component write operation on a
read-only mount.
Fix PR/44302: sysvbfs allows unlink on fs mounted MNT_RDONLY.

Reviewed by pooka.

Revision 1.35 / (download) - annotate - [select for diffs], Tue Nov 30 10:43:04 2010 UTC (2 years, 5 months ago) by dholland
Branch: MAIN
CVS Tags: matt-mips64-premerge-20101231, jruoho-x86intr-base
Branch point for: jruoho-x86intr, bouyer-quota2
Changes since 1.34: +2 -7 lines
Diff to previous 1.34 (colored)

Abolish the SAVENAME and HASBUF flags. There is now always a buffer,
so the path in a struct componentname is now always valid during VOP
calls.

Revision 1.34 / (download) - annotate - [select for diffs], Tue Nov 30 10:30:00 2010 UTC (2 years, 5 months ago) by dholland
Branch: MAIN
Changes since 1.33: +2 -8 lines
Diff to previous 1.33 (colored)

Abolish struct componentname's cn_pnbuf. Use the path buffer in the
pathbuf object passed to namei as work space instead. (For now a pnbuf
pointer appears in struct nameidata, to support certain unclean things
that haven't been fixed yet, but it will be going away in the future.)

This removes the need for the SAVENAME and HASBUF namei flags.

Revision 1.33 / (download) - annotate - [select for diffs], Sat Jul 17 00:13:42 2010 UTC (2 years, 10 months ago) by njoly
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2
Changes since 1.32: +5 -4 lines
Diff to previous 1.32 (colored)

Fix build with SYSVBFS_VNOPS_DEBUG.

Revision 1.32 / (download) - annotate - [select for diffs], Fri Jul 16 23:41:01 2010 UTC (2 years, 10 months ago) by njoly
Branch: MAIN
Changes since 1.31: +3 -3 lines
Diff to previous 1.31 (colored)

Small typo in comment.

Revision 1.31 / (download) - annotate - [select for diffs], Thu Jun 24 13:03:10 2010 UTC (2 years, 11 months ago) by hannken
Branch: MAIN
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored)

Clean up vnode lock operations pass 2:

VOP_UNLOCK(vp, flags) -> VOP_UNLOCK(vp): Remove the unneeded flags argument.

Welcome to 5.99.32.

Discussed on tech-kern.

Revision 1.30 / (download) - annotate - [select for diffs], Thu May 27 23:40:12 2010 UTC (2 years, 11 months ago) by pooka
Branch: MAIN
Changes since 1.29: +27 -4 lines
Diff to previous 1.29 (colored)

Mark files removed in the in-memory structure.  This allows us
to do two things:

 1) properly set "recycle?" in inactive
 2) easily check if we are renaming a removed vnode.  without the
    check, it was possible to enter a dirent in the file system for
    a removed (and hence scheduled to be vcleaned) vnode.  this would
    lead to the succesful vget() of a clean vnode.  the use of the
    cleaned vnode was, however, less succesful, except for purposes
    of crashing.

Revision 1.29 / (download) - annotate - [select for diffs], Thu May 27 13:22:02 2010 UTC (2 years, 11 months ago) by pooka
Branch: MAIN
Changes since 1.28: +8 -2 lines
Diff to previous 1.28 (colored)

Release pathname buffers after use.

Revision 1.28 / (download) - annotate - [select for diffs], Wed May 26 21:27:00 2010 UTC (2 years, 11 months ago) by pooka
Branch: MAIN
Changes since 1.27: +15 -8 lines
Diff to previous 1.27 (colored)

fix refcounting

Revision 1.27 / (download) - annotate - [select for diffs], Wed May 26 17:52:35 2010 UTC (2 years, 11 months ago) by pooka
Branch: MAIN
Changes since 1.26: +4 -3 lines
Diff to previous 1.26 (colored)

Initialize *vpp to NULL: relookup() requires it without initializing
the value before the call (yea, changing relookup would probably
be smart, but other file systems already initialize vpp, so I'm
letting someone else experiment with tylenol od).

Revision 1.26 / (download) - annotate - [select for diffs], Fri Jan 8 11:35:09 2010 UTC (3 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9, uebayasi-xip-base1, uebayasi-xip-base
Branch point for: uebayasi-xip, rmind-uvmplock
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored)

The VATTR_NULL/VREF/VHOLD/HOLDRELE() macros lost their will to live
years ago when the kernel was modified to not alter ABI based on
DIAGNOSTIC, and now just call the respective function interfaces
(in lowercase).  Plenty of mix'n match upper/lowercase has creeped
into the tree since then.  Nuke the macros and convert all callsites
to lowercase.

no functional change

Revision 1.25 / (download) - annotate - [select for diffs], Tue Jan 5 13:30:11 2010 UTC (3 years, 4 months ago) by mbalmer
Branch: MAIN
Changes since 1.24: +9 -9 lines
Diff to previous 1.24 (colored)

Remove extra semicolons.

Revision 1.24 / (download) - annotate - [select for diffs], Fri Jul 3 22:38:08 2009 UTC (3 years, 10 months ago) by pgoyette
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, matt-premerge-20091211, jymxensuspend-base, jym-xensuspend-nbase
Changes since 1.23: +3 -2 lines
Diff to previous 1.23 (colored)

Define error before using it.

(Hello again, elad!)

Revision 1.23 / (download) - annotate - [select for diffs], Fri Jul 3 21:17:41 2009 UTC (3 years, 10 months ago) by elad
Branch: MAIN
Changes since 1.22: +30 -7 lines
Diff to previous 1.22 (colored)

Where possible, extract the file-system's access() routine to two internal
functions: the first checking if the operation is possible (regardless of
permissions), the second checking file-system permissions, ACLs, etc.

Mailing list reference:

	http://mail-index.netbsd.org/tech-kern/2009/06/21/msg005311.html

Revision 1.22 / (download) - annotate - [select for diffs], Tue Jun 23 19:36:39 2009 UTC (3 years, 11 months ago) by elad
Branch: MAIN
Changes since 1.21: +5 -3 lines
Diff to previous 1.21 (colored)

Move the implementation of vaccess() to genfs_can_access(), in line with
the other routines of the same spirit.

Adjust file-system code to use it.

Keep vaccess() for KPI compatibility and to keep element of least
surprise. A "diagnostic" message warning that vaccess() is deprecated will
be printed when it's used (obviously, only in DIAGNOSTIC kernels).

No objections on tech-kern@:

	http://mail-index.netbsd.org/tech-kern/2009/06/21/msg005310.html

Revision 1.21 / (download) - annotate - [select for diffs], Wed Nov 26 20:17:33 2008 UTC (4 years, 5 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, mjf-devfs2-base, jym-xensuspend-base, haad-nbase2, haad-dm-base2, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Branch point for: jym-xensuspend
Changes since 1.20: +7 -12 lines
Diff to previous 1.20 (colored)

Rototill all remaining file systems to use ubc_uiomove() instead
of the ubc_alloc() - uiomove() - ubc_release() dance.

Revision 1.20 / (download) - annotate - [select for diffs], Sun Nov 16 19:34:30 2008 UTC (4 years, 6 months ago) by pooka
Branch: MAIN
Changes since 1.19: +3 -2 lines
Diff to previous 1.19 (colored)

more <sys/buf.h> police

Revision 1.19 / (download) - annotate - [select for diffs], Wed Apr 30 14:07:14 2008 UTC (5 years ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-nfs-mp-base2, wrstuden-revivesa-base-4, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, hpcarm-cleanup-nbase, haad-dm-base1
Branch point for: nick-hppapmap, haad-dm
Changes since 1.18: +3 -3 lines
Diff to previous 1.18 (colored)

Make various bits of debug code compile again.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Apr 28 20:24:02 2008 UTC (5 years ago) by martin
Branch: MAIN
Changes since 1.17: +2 -9 lines
Diff to previous 1.17 (colored)

Remove clause 3 and 4 from TNF licenses

Revision 1.17 / (download) - annotate - [select for diffs], Wed Jan 2 11:48:46 2008 UTC (5 years, 4 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, matt-armv6-nbase, matt-armv6-base, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-base, bouyer-xeni386-nbase, bouyer-xeni386-base, ad-socklock-base1
Branch point for: yamt-pf42, yamt-nfs-mp, mjf-devfs2
Changes since 1.16: +6 -5 lines
Diff to previous 1.16 (colored)

Merge vmlocking2 to head.

Revision 1.16 / (download) - annotate - [select for diffs], Sat Dec 15 00:39:36 2007 UTC (5 years, 5 months ago) by perry
Branch: MAIN
CVS Tags: vmlocking2-base3
Changes since 1.15: +32 -32 lines
Diff to previous 1.15 (colored)

__FUNCTION__ -> __func__

Revision 1.15 / (download) - annotate - [select for diffs], Mon Nov 26 19:01:54 2007 UTC (5 years, 5 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, vmlocking2-base2, vmlocking2-base1, vmlocking-nbase, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, jmcneill-pm-base, cube-autoconf-base, cube-autoconf
Branch point for: vmlocking2, bouyer-xeni386
Changes since 1.14: +6 -15 lines
Diff to previous 1.14 (colored)

Remove the "struct lwp *" argument from all VFS and VOP interfaces.
The general trend is to remove it from all kernel interfaces and
this is a start.  In case the calling lwp is desired, curlwp should
be used.

quick consensus on tech-kern

Revision 1.14 / (download) - annotate - [select for diffs], Mon Sep 24 00:42:14 2007 UTC (5 years, 8 months ago) by rumble
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, vmlocking-base, jmcneill-base, bouyer-xenamd64-base2, bouyer-xenamd64-base, bouyer-xenamd64
Branch point for: mjf-devfs
Changes since 1.13: +16 -11 lines
Diff to previous 1.13 (colored)

Avoid stack allocation of large dirent structures in foo_readdir().

Revision 1.13 / (download) - annotate - [select for diffs], Sun Jul 29 13:31:10 2007 UTC (5 years, 9 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base, nick-csl-alignment-base5, matt-mips64-base, hpcarm-cleanup
Branch point for: yamt-x86pmap, matt-mips64, matt-armv6, jmcneill-pm
Changes since 1.12: +2 -3 lines
Diff to previous 1.12 (colored)

It's not a good idea for device drivers to modify b_flags, as they don't
need to understand the locking around that field. Instead of setting
B_ERROR, set b_error instead. b_error is 'owned' by whoever completes
the I/O request.

Revision 1.12 / (download) - annotate - [select for diffs], Sat Jun 30 09:37:57 2007 UTC (5 years, 10 months ago) by pooka
Branch: MAIN
CVS Tags: nick-csl-alignment-base, mjf-ufs-trans-base
Branch point for: nick-csl-alignment
Changes since 1.11: +3 -3 lines
Diff to previous 1.11 (colored)

Using POOL_INIT here makes no sense, since file systems always have
an init method.  So get rid of it and #ifdef _LKM and just always
init in the init method.  Give malloc types the same treatment.
Makes file systems nicer to work with in linksetless environments
and fixes a few LKM discrepancies.

Revision 1.11 / (download) - annotate - [select for diffs], Thu Feb 22 06:37:00 2007 UTC (6 years, 3 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-idlelwp-base8, thorpej-atomic-base, thorpej-atomic, reinoud-bufcleanup, ad-audiomp-base, ad-audiomp
Branch point for: vmlocking, mjf-ufs-trans
Changes since 1.10: +13 -13 lines
Diff to previous 1.10 (colored)

TRUE -> true, FALSE -> false

Revision 1.10 / (download) - annotate - [select for diffs], Wed Feb 21 23:00:03 2007 UTC (6 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.9: +4 -4 lines
Diff to previous 1.9 (colored)

Replace the Mach-derived boolean_t type with the C99 bool type.  A
future commit will replace use of TRUE and FALSE with true and false.

Revision 1.9 / (download) - annotate - [select for diffs], Tue Feb 20 16:21:04 2007 UTC (6 years, 3 months ago) by ad
Branch: MAIN
Changes since 1.8: +3 -2 lines
Diff to previous 1.8 (colored)

Call genfs_node_destroy() where appropriate.

Revision 1.8 / (download) - annotate - [select for diffs], Mon Jan 29 01:52:44 2007 UTC (6 years, 3 months ago) by hubertf
Branch: MAIN
CVS Tags: post-newlock2-merge, newlock2-nbase, newlock2-base
Branch point for: yamt-idlelwp
Changes since 1.7: +2 -3 lines
Diff to previous 1.7 (colored)

Remove more duplicate headers.
Patch by Slava Semushin <slava.semushin@gmail.com>

Again, this was tested by comparing obj files from a pristine and a patched
source tree against an i386/ALL kernel, and also for src/sbin/fsck_ffs,
src/sbin/fsdb and src/usr.sbin/makefs. Only changes in assert() line numbers
were detected in 'objdump -d' output.

Revision 1.7 / (download) - annotate - [select for diffs], Mon Dec 25 18:32:16 2006 UTC (6 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

Spell "algorithm" correctly. From Zafer Aydogan.

Revision 1.6 / (download) - annotate - [select for diffs], Sat Dec 9 16:11:51 2006 UTC (6 years, 5 months ago) by chs
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3
Changes since 1.5: +6 -23 lines
Diff to previous 1.5 (colored)

a smorgasbord of improvements to vnode locking and path lookup:
 - LOCKPARENT is no longer relevant for lookup(), relookup() or VOP_LOOKUP().
   these now always return the parent vnode locked.  namei() works as before.
   lookup() and various other paths no longer acquire vnode locks in the
   wrong order via vrele().  fixes PR 32535.
   as a nice side effect, path lookup is also up to 25% faster.
 - the above allows us to get rid of PDIRUNLOCK.
 - also get rid of WANTPARENT (just use LOCKPARENT and unlock it).
 - remove an assumption in layer_node_find() that all file systems implement
   a recursive VOP_LOCK() (unionfs doesn't).
 - require that all file systems supply vfs_vptofh and vfs_fhtovp routines.
   fill in eopnotsupp() for file systems that don't support being exported
   and remove the checks for NULL.  (layerfs calls these without checking.)
 - in union_lookup1(), don't change refcounts in the ISDOTDOT case, just
   adjust which vnode is locked.  fixes PR 33374.
 - apply fixes for ufs_rename() from ufs_vnops.c rev. 1.61 to ext2fs_rename().

Revision 1.5 / (download) - annotate - [select for diffs], Sat Jul 1 10:12:36 2006 UTC (6 years, 10 months ago) by martin
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2, yamt-splraiseipl-base, yamt-pdpolicy-base9, yamt-pdpolicy-base8, yamt-pdpolicy-base7, rpaulo-netinet-merge-pcb-base, netbsd-4-base, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-splraiseipl, newlock2, netbsd-4
Changes since 1.4: +8 -12 lines
Diff to previous 1.4 (colored)

Redo previous differently - just use time_second.
Pointed out by Frank Kardel.

Revision 1.4 / (download) - annotate - [select for diffs], Sat Jul 1 08:42:39 2006 UTC (6 years, 10 months ago) by martin
Branch: MAIN
Changes since 1.3: +12 -8 lines
Diff to previous 1.3 (colored)

Make it compile post time-counter merge

Revision 1.3 / (download) - annotate - [select for diffs], Mon May 15 12:51:21 2006 UTC (7 years ago) by yamt
Branch: MAIN
CVS Tags: yamt-pdpolicy-base6, yamt-pdpolicy-base5, simonb-timecounters-base, gdamore-uart-base, chap-midi-nbase, chap-midi-base, chap-midi
Branch point for: yamt-lazymbuf, gdamore-uart
Changes since 1.2: +3 -2 lines
Diff to previous 1.2 (colored)

don't try to dereference kauth_cred_t.

Revision 1.2 / (download) - annotate - [select for diffs], Sun May 14 21:31:52 2006 UTC (7 years ago) by elad
Branch: MAIN
Changes since 1.1: +10 -10 lines
Diff to previous 1.1 (colored)

integrate kauth.

Revision 1.1 / (download) - annotate - [select for diffs], Thu Dec 29 14:53:45 2005 UTC (7 years, 4 months ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, peter-altq-base, elad-kernelauth-base
Branch point for: yamt-pdpolicy, simonb-timecounters, rpaulo-netinet-merge-pcb, peter-altq, elad-kernelauth

Add preliminary support for System V Boot File System.
Written by UCHIYAMA Yasushi <uch@netbsd>.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>