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


Revision 1.69 / (download) - annotate - [select for diffs], Sun Jul 31 13:08:18 2022 UTC (19 months, 4 weeks ago) by mlelstv
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, netbsd-10-base, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, bouyer-sunxi-drm-base, bouyer-sunxi-drm, HEAD
Changes since 1.68: +5 -3 lines
Diff to previous 1.68 (colored) to selected 1.3.6.4 (colored)

Don't panic for a negative offset, just fail the operation with EINVAL.

Revision 1.68 / (download) - annotate - [select for diffs], Wed Oct 20 03:08:17 2021 UTC (2 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.67: +4 -9 lines
Diff to previous 1.67 (colored) to selected 1.3.6.4 (colored)

Overhaul of the EVFILT_VNODE kevent(2) filter:

- Centralize vnode kevent handling in the VOP_*() wrappers, rather than
  forcing each individual file system to deal with it (except VOP_RENAME(),
  because VOP_RENAME() is a mess and we currently have 2 different ways
  of handling it; at least it's reasonably well-centralized in the "new"
  way).
- Add support for NOTE_OPEN, NOTE_CLOSE, NOTE_CLOSE_WRITE, and NOTE_READ,
  compatible with the same events in FreeBSD.
- Track which kevent notifications clients are interested in receiving
  to avoid doing work for events no one cares about (avoiding, e.g.
  taking locks and traversing the klist to send a NOTE_WRITE when
  someone is merely watching for a file to be deleted, for example).

In support of the above:

- Add support in vnode_if.sh for specifying PRE- and POST-op handlers,
  to be invoked before and after vop_pre() and vop_post(), respectively.
  Basic idea from FreeBSD, but implemented differently.
- Add support in vnode_if.sh for specifying CONTEXT fields in the
  vop_*_args structures.  These context fields are used to convey information
  between the file system VOP function and the VOP wrapper, but do not
  occupy an argument slot in the VOP_*() call itself.  These context fields
  are initialized and subsequently interpreted by PRE- and POST-op handlers.
- Version VOP_REMOVE(), uses the a context field for the file system to report
  back the resulting link count of the target vnode.  Return this in tmpfs,
  udf, nfs, chfs, ext2fs, lfs, and ufs.

NetBSD 9.99.92.

Revision 1.67 / (download) - annotate - [select for diffs], Sat Jun 27 17:29:18 2020 UTC (3 years, 9 months ago) by christos
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-futex-base, thorpej-futex, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.66: +10 -14 lines
Diff to previous 1.66 (colored) to selected 1.3.6.4 (colored)

Introduce genfs_pathconf() and use it for the default case in all filesystems.

Revision 1.66 / (download) - annotate - [select for diffs], Sat May 16 18:31:49 2020 UTC (3 years, 10 months ago) by christos
Branch: MAIN
Changes since 1.65: +13 -13 lines
Diff to previous 1.65 (colored) to selected 1.3.6.4 (colored)

Add ACL support for FFS. From FreeBSD.

Revision 1.64.4.1 / (download) - annotate - [select for diffs], Sat Apr 25 11:24:05 2020 UTC (3 years, 11 months ago) by bouyer
Branch: bouyer-xenpvh
Changes since 1.64: +4 -4 lines
Diff to previous 1.64 (colored) next main 1.65 (colored) to selected 1.3.6.4 (colored)

Sync with bouyer-xenpvh-base2 (HEAD)

Revision 1.65 / (download) - annotate - [select for diffs], Thu Apr 23 21:47:08 2020 UTC (3 years, 11 months ago) by ad
Branch: MAIN
CVS Tags: bouyer-xenpvh-base2
Changes since 1.64: +4 -4 lines
Diff to previous 1.64 (colored) to selected 1.3.6.4 (colored)

PR kern/54759 (vm.ubc_direct deadlock when read()/write() into mapping of itself)

- Add new flag UBC_ISMAPPED which tells ubc_uiomove() the object is mmap()ed
  somewhere.  Use it to decide whether to do direct-mapped copy, rather than
  poking around directly in the vnode in ubc_uiomove(), which is ugly and
  doesn't work for tmpfs.  It would be nicer to contain all this in UVM but
  the filesystem provides the needed locking here (VV_MAPPED) and to
  reinvent that would suck more.

- Rename UBC_UNMAP_FLAG() to UBC_VNODE_FLAGS().  Pass in UBC_ISMAPPED where
  appropriate.

Revision 1.63.10.1 / (download) - annotate - [select for diffs], Wed Apr 8 14:08:50 2020 UTC (3 years, 11 months ago) by martin
Branch: phil-wifi
Changes since 1.63: +7 -4 lines
Diff to previous 1.63 (colored) next main 1.64 (colored) to selected 1.3.6.4 (colored)

Merge changes from current as of 20200406

Revision 1.63.16.1 / (download) - annotate - [select for diffs], Fri Jan 17 21:47:34 2020 UTC (4 years, 2 months ago) by ad
Branch: ad-namecache
Changes since 1.63: +7 -4 lines
Diff to previous 1.63 (colored) next main 1.64 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.64 / (download) - annotate - [select for diffs], Fri Jan 17 20:08:08 2020 UTC (4 years, 2 months ago) by ad
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, is-mlppp-base, is-mlppp, bouyer-xenpvh-base1, bouyer-xenpvh-base, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1
Branch point for: bouyer-xenpvh
Changes since 1.63: +7 -4 lines
Diff to previous 1.63 (colored) to selected 1.3.6.4 (colored)

VFS_VGET(), VFS_ROOT(), VFS_FHTOVP(): give them a "int lktype" argument, to
allow us to get shared locks (or no lock) on the returned vnode.  Matches
FreeBSD.

Revision 1.46.2.3 / (download) - annotate - [select for diffs], Sun Dec 3 11:38:43 2017 UTC (6 years, 3 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.46.2.2: +34 -24 lines
Diff to previous 1.46.2.2 (colored) to branchpoint 1.46 (colored) next main 1.47 (colored) to selected 1.3.6.4 (colored)

update from HEAD

Revision 1.54.4.4 / (download) - annotate - [select for diffs], Mon Aug 28 17:53:06 2017 UTC (6 years, 7 months ago) by skrll
Branch: nick-nhusb
Changes since 1.54.4.3: +10 -8 lines
Diff to previous 1.54.4.3 (colored) to branchpoint 1.54 (colored) next main 1.55 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD

Revision 1.63 / (download) - annotate - [select for diffs], Fri May 26 14:21:01 2017 UTC (6 years, 10 months ago) by riastradh
Branch: MAIN
CVS Tags: tls-maxphys-base-20171202, phil-wifi-base, phil-wifi-20191119, phil-wifi-20190609, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, isaki-audio2-base, isaki-audio2, ad-namecache-base
Branch point for: phil-wifi, ad-namecache
Changes since 1.62: +5 -3 lines
Diff to previous 1.62 (colored) to selected 1.3.6.4 (colored)

Make VOP_RECLAIM do the last unlock of the vnode.

VOP_RECLAIM naturally has exclusive access to the vnode, so having it
locked on entry is not strictly necessary -- but it means if there
are any final operations that must be done on the vnode, such as
ffs_update, requiring exclusive access to it, we can now kassert that
the vnode is locked in those operations.

We can't just have the caller release the last lock because some file
systems don't use genfs_lock, and require the vnode to remain valid
for VOP_UNLOCK to work, notably unionfs.

Revision 1.62 / (download) - annotate - [select for diffs], Wed Apr 26 03:02:48 2017 UTC (6 years, 11 months ago) by riastradh
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2
Changes since 1.61: +6 -5 lines
Diff to previous 1.61 (colored) to selected 1.3.6.4 (colored)

Change VOP_REMOVE and VOP_RMDIR to preserve lock/ref on dvp.

No change to vp -- the plan is to replace the node by the
componentname in the vop parameters, and let all directory vops do
lookups internally.

Proposed on tech-kern with no objections:
https://mail-index.netbsd.org/tech-kern/2017/04/17/msg021825.html

Revision 1.59.2.1 / (download) - annotate - [select for diffs], Wed Apr 26 02:53:26 2017 UTC (6 years, 11 months ago) by pgoyette
Branch: pgoyette-localcount
Changes since 1.59: +3 -4 lines
Diff to previous 1.59 (colored) next main 1.60 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD

Revision 1.60.2.1 / (download) - annotate - [select for diffs], Fri Apr 21 16:54:01 2017 UTC (6 years, 11 months ago) by bouyer
Branch: bouyer-socketcan
Changes since 1.60: +3 -4 lines
Diff to previous 1.60 (colored) next main 1.61 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD

Revision 1.61 / (download) - annotate - [select for diffs], Tue Apr 11 14:25:00 2017 UTC (6 years, 11 months ago) by riastradh
Branch: MAIN
CVS Tags: pgoyette-localcount-20170426, bouyer-socketcan-base1
Changes since 1.60: +3 -4 lines
Diff to previous 1.60 (colored) to selected 1.3.6.4 (colored)

Make VOP_INACTIVE preserve vnode lock on return.

Discussed on tech-kern:
https://mail-index.netbsd.org/tech-kern/2017/04/01/msg021751.html

Ride 7.99.68, a bumpy bus of incremental vfs improvements!

Revision 1.54.4.3 / (download) - annotate - [select for diffs], Wed Oct 5 20:56:02 2016 UTC (7 years, 5 months ago) by skrll
Branch: nick-nhusb
Changes since 1.54.4.2: +2 -4 lines
Diff to previous 1.54.4.2 (colored) to branchpoint 1.54 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD

Revision 1.60 / (download) - annotate - [select for diffs], Sat Aug 20 12:37:08 2016 UTC (7 years, 7 months ago) by hannken
Branch: MAIN
CVS Tags: pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base
Branch point for: bouyer-socketcan
Changes since 1.59: +2 -4 lines
Diff to previous 1.59 (colored) to selected 1.3.6.4 (colored)

Remove now obsolete operation vcache_remove().

Welcome to 7.99.36

Revision 1.54.4.2 / (download) - annotate - [select for diffs], Sun Dec 27 12:10:04 2015 UTC (8 years, 3 months ago) by skrll
Branch: nick-nhusb
Changes since 1.54.4.1: +10 -7 lines
Diff to previous 1.54.4.1 (colored) to branchpoint 1.54 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD (as of 26th Dec)

Revision 1.59 / (download) - annotate - [select for diffs], Fri Nov 13 13:36:54 2015 UTC (8 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: pgoyette-localcount-base, pgoyette-localcount-20160806, pgoyette-localcount-20160726, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226
Branch point for: pgoyette-localcount
Changes since 1.58: +10 -7 lines
Diff to previous 1.58 (colored) to selected 1.3.6.4 (colored)

Fix bug in readdir loop condition.

Reading all dirents using a small buffer and multiple calls now works.

Bug found by "Shamar" on #rumpkernel

Revision 1.54.4.1 / (download) - annotate - [select for diffs], Mon Apr 6 15:18:19 2015 UTC (8 years, 11 months ago) by skrll
Branch: nick-nhusb
Changes since 1.54: +22 -15 lines
Diff to previous 1.54 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD

Revision 1.58 / (download) - annotate - [select for diffs], Sat Apr 4 13:28:36 2015 UTC (8 years, 11 months ago) by riastradh
Branch: MAIN
CVS Tags: nick-nhusb-base-20150921, nick-nhusb-base-20150606, nick-nhusb-base-20150406
Changes since 1.57: +3 -2 lines
Diff to previous 1.57 (colored) to selected 1.3.6.4 (colored)

Make sure err is initialized.

Revision 1.57 / (download) - annotate - [select for diffs], Sat Apr 4 12:34:45 2015 UTC (8 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.56: +8 -4 lines
Diff to previous 1.56 (colored) to selected 1.3.6.4 (colored)

Fix remaining read(fd, NULL, 1) cases.

Revision 1.56 / (download) - annotate - [select for diffs], Fri Dec 26 15:23:21 2014 UTC (9 years, 3 months ago) by hannken
Branch: MAIN
Changes since 1.55: +5 -5 lines
Diff to previous 1.55 (colored) to selected 1.3.6.4 (colored)

Change sysvbfs to vcache.

Revision 1.55 / (download) - annotate - [select for diffs], Fri Dec 26 15:22:15 2014 UTC (9 years, 3 months ago) by hannken
Branch: MAIN
Changes since 1.54: +12 -10 lines
Diff to previous 1.54 (colored) to selected 1.3.6.4 (colored)

Sysvbfs_rename: Call bfs_file_delete(bfs, to_name, true) before calling
bfs_file_rename() and remove the bfs_file_delete() from bfs_file_rename().

After calling bfs_file_rename() it was too late to set "tnode->removed"
as the inode already disappeared.

Revision 1.46.2.2 / (download) - annotate - [select for diffs], Wed Aug 20 00:04:28 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.46.2.1: +13 -14 lines
Diff to previous 1.46.2.1 (colored) to branchpoint 1.46 (colored) to selected 1.3.6.4 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.53.2.1 / (download) - annotate - [select for diffs], Sun Aug 10 06:55:54 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-earlyentropy
Changes since 1.53: +3 -3 lines
Diff to previous 1.53 (colored) next main 1.54 (colored) to selected 1.3.6.4 (colored)

Rebase.

Revision 1.54 / (download) - annotate - [select for diffs], Fri Aug 8 19:14:45 2014 UTC (9 years, 7 months ago) by gson
Branch: MAIN
CVS Tags: tls-maxphys-base, tls-earlyentropy-base, nick-nhusb-base, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7
Branch point for: nick-nhusb
Changes since 1.53: +3 -3 lines
Diff to previous 1.53 (colored) to selected 1.3.6.4 (colored)

Whitespace fix

Revision 1.38.4.4 / (download) - annotate - [select for diffs], Thu May 22 11:41:01 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.38.4.3: +23 -16 lines
Diff to previous 1.38.4.3 (colored) to branchpoint 1.38 (colored) next main 1.39 (colored) to selected 1.3.6.4 (colored)

sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.48.2.1 / (download) - annotate - [select for diffs], Sun May 18 17:46:06 2014 UTC (9 years, 10 months ago) by rmind
Branch: rmind-smpnet
Changes since 1.48: +14 -15 lines
Diff to previous 1.48 (colored) next main 1.49 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.53 / (download) - annotate - [select for diffs], Fri Feb 7 15:29:21 2014 UTC (10 years, 1 month ago) by hannken
Branch: MAIN
CVS Tags: yamt-pagecache-base9, rmind-smpnet-nbase, rmind-smpnet-base, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3
Branch point for: tls-earlyentropy
Changes since 1.52: +4 -3 lines
Diff to previous 1.52 (colored) to selected 1.3.6.4 (colored)

Change vnode operation lookup to return the resulting vnode *vpp unlocked.
Change cache_lookup() to return an unlocked vnode.

Discussed on tech-kern@

Welcome to 6.99.31

Revision 1.52 / (download) - annotate - [select for diffs], Thu Jan 23 10:13:56 2014 UTC (10 years, 2 months ago) by hannken
Branch: MAIN
Changes since 1.51: +4 -3 lines
Diff to previous 1.51 (colored) to selected 1.3.6.4 (colored)

Change vnode operations create, mknod, mkdir and symlink to return
the resulting vnode *vpp unlocked.

Discussed on tech-kern@

Welcome to 6.99.30

Revision 1.51 / (download) - annotate - [select for diffs], Fri Jan 17 10:55:02 2014 UTC (10 years, 2 months ago) by hannken
Branch: MAIN
Changes since 1.50: +5 -9 lines
Diff to previous 1.50 (colored) to selected 1.3.6.4 (colored)

Change vnode operations create, mknod, mkdir and symlink to keep the
directory node dvp locked on return.

Discussed on tech-kern@

Welcome to 6.99.29

Revision 1.50 / (download) - annotate - [select for diffs], Thu Jan 9 13:23:57 2014 UTC (10 years, 2 months ago) by hannken
Branch: MAIN
Changes since 1.49: +8 -3 lines
Diff to previous 1.49 (colored) to selected 1.3.6.4 (colored)

Operation sysvbfs_remove() destructs inodes attached to active vnodes.
Defer the destruction to sysvbfs_reclaim().

Disable test t_renamerace:sysvbfs_renamerace as it will exhaust the
inode table (sysvbfs has space for 8 inodes only).

Ok: Izumi Tsutsui <tsutsui@netbsd.org>

Revision 1.49 / (download) - annotate - [select for diffs], Tue Dec 24 09:56:18 2013 UTC (10 years, 3 months ago) by hannken
Branch: MAIN
Changes since 1.48: +2 -6 lines
Diff to previous 1.48 (colored) to selected 1.3.6.4 (colored)

It is not the task of sysvbfs_open() to check for unlinked nodes.

Revision 1.46.2.1 / (download) - annotate - [select for diffs], Sun Jun 23 06:18:28 2013 UTC (10 years, 9 months ago) by tls
Branch: tls-maxphys
Changes since 1.46: +11 -3 lines
Diff to previous 1.46 (colored) to selected 1.3.6.4 (colored)

resync from head

Revision 1.48 / (download) - annotate - [select for diffs], Wed May 15 16:44:03 2013 UTC (10 years, 10 months ago) by pooka
Branch: MAIN
CVS Tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2
Branch point for: rmind-smpnet
Changes since 1.47: +10 -2 lines
Diff to previous 1.47 (colored) to selected 1.3.6.4 (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 (11 years 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) to selected 1.3.6.4 (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.38.4.3 / (download) - annotate - [select for diffs], Tue Oct 30 17:22:25 2012 UTC (11 years, 4 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.38.4.2: +3 -3 lines
Diff to previous 1.38.4.2 (colored) to branchpoint 1.38 (colored) to selected 1.3.6.4 (colored)

sync with head

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

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

Revision 1.38.8.3 / (download) - annotate - [select for diffs], Sat Jun 2 11:09:32 2012 UTC (11 years, 9 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.38.8.2: +21 -4 lines
Diff to previous 1.38.8.2 (colored) to branchpoint 1.38 (colored) next main 1.39 (colored) to selected 1.3.6.4 (colored)

sync to latest -current.

Revision 1.38.4.2 / (download) - annotate - [select for diffs], Wed May 23 10:08:09 2012 UTC (11 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.38.4.1: +23 -6 lines
Diff to previous 1.38.4.1 (colored) to branchpoint 1.38 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.45 / (download) - annotate - [select for diffs], Tue May 8 14:28:55 2012 UTC (11 years, 10 months 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) to selected 1.3.6.4 (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.40.2.1 / (download) - annotate - [select for diffs], Mon May 7 03:01:12 2012 UTC (11 years, 10 months ago) by riz
Branch: netbsd-6
CVS Tags: netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Changes since 1.40: +3 -3 lines
Diff to previous 1.40 (colored) next main 1.41 (colored) to selected 1.3.6.4 (colored)

Pull up following revision(s) (requested by chs in ticket #204):
	sys/fs/sysvbfs/sysvbfs_vnops.c: revision 1.44
	sys/ufs/ffs/ffs_vfsops.c: revision 1.277
	sys/fs/v7fs/v7fs_vnops.c: revision 1.11
	sys/ufs/chfs/chfs_vnops.c: revision 1.7
	sys/ufs/ext2fs/ext2fs_readwrite.c: revision 1.61
	sys/miscfs/genfs/genfs_io.c: revision 1.54
	sys/kern/vfs_wapbl.c: revision 1.52
	sys/uvm/uvm_pager.h: revision 1.43
	sys/ufs/ffs/ffs_vnops.c: revision 1.121
	sys/kern/vfs_subr.c: revision 1.434
	sys/fs/msdosfs/msdosfs_vnops.c: revision 1.83
	sys/fs/ntfs/ntfs_vnops.c: revision 1.51
	sys/fs/udf/udf_subr.c: revision 1.119
	sys/miscfs/specfs/spec_vnops.c: revision 1.135
	sys/ufs/ext2fs/ext2fs_vnops.c: revision 1.103
	sys/fs/udf/udf_vnops.c: revision 1.71
	sys/ufs/ufs/ufs_readwrite.c: revision 1.104
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.
mark all wapbl I/O as BPRIO_TIMECRITICAL.
this is the second part of addressing PR 46325.

Revision 1.44 / (download) - annotate - [select for diffs], Sun Apr 29 22:53:59 2012 UTC (11 years, 11 months ago) by chs
Branch: MAIN
Changes since 1.43: +3 -3 lines
Diff to previous 1.43 (colored) to selected 1.3.6.4 (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.38.4.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:08:20 2012 UTC (11 years, 11 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.38: +77 -25 lines
Diff to previous 1.38 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.38.8.2 / (download) - annotate - [select for diffs], Thu Apr 5 21:33:37 2012 UTC (11 years, 11 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.38.8.1: +47 -21 lines
Diff to previous 1.38.8.1 (colored) to branchpoint 1.38 (colored) to selected 1.3.6.4 (colored)

sync to latest -current.

Revision 1.43 / (download) - annotate - [select for diffs], Fri Mar 30 18:27:55 2012 UTC (12 years 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) to selected 1.3.6.4 (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 (12 years ago) by christos
Branch: MAIN
Changes since 1.41: +26 -13 lines
Diff to previous 1.41 (colored) to selected 1.3.6.4 (colored)

handle file resizing.

Revision 1.41 / (download) - annotate - [select for diffs], Tue Mar 13 18:40:50 2012 UTC (12 years ago) by elad
Branch: MAIN
Changes since 1.40: +22 -12 lines
Diff to previous 1.40 (colored) to selected 1.3.6.4 (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.38.8.1 / (download) - annotate - [select for diffs], Sat Feb 18 07:35:25 2012 UTC (12 years, 1 month ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.38: +35 -9 lines
Diff to previous 1.38 (colored) to selected 1.3.6.4 (colored)

merge to -current.

Revision 1.40 / (download) - annotate - [select for diffs], Fri Jan 27 21:46:42 2012 UTC (12 years, 2 months 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) to selected 1.3.6.4 (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 (12 years, 3 months ago) by njoly
Branch: MAIN
Changes since 1.38: +9 -3 lines
Diff to previous 1.38 (colored) to selected 1.3.6.4 (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.35.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:09:23 2011 UTC (12 years, 9 months ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.35: +10 -8 lines
Diff to previous 1.35 (colored) next main 1.36 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.26.4.4 / (download) - annotate - [select for diffs], Tue May 31 03:04:59 2011 UTC (12 years, 10 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.26.4.3: +2 -6 lines
Diff to previous 1.26.4.3 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.38 / (download) - annotate - [select for diffs], Thu May 19 03:11:58 2011 UTC (12 years, 10 months 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) to selected 1.3.6.4 (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 (12 years, 11 months ago) by hannken
Branch: MAIN
Changes since 1.36: +4 -7 lines
Diff to previous 1.36 (colored) to selected 1.3.6.4 (colored)

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

Welcome to 5.99.51.

Revision 1.26.4.3 / (download) - annotate - [select for diffs], Sat Mar 5 20:55:09 2011 UTC (13 years ago) by rmind
Branch: rmind-uvmplock
Changes since 1.26.4.2: +12 -16 lines
Diff to previous 1.26.4.2 (colored) to branchpoint 1.26 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.35.4.1 / (download) - annotate - [select for diffs], Tue Feb 8 16:19:58 2011 UTC (13 years, 1 month ago) by bouyer
Branch: bouyer-quota2
Changes since 1.35: +8 -2 lines
Diff to previous 1.35 (colored) next main 1.36 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD

Revision 1.36 / (download) - annotate - [select for diffs], Mon Jan 31 18:48:50 2011 UTC (13 years, 1 month 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) to selected 1.3.6.4 (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 (13 years, 4 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) to selected 1.3.6.4 (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 (13 years, 4 months ago) by dholland
Branch: MAIN
Changes since 1.33: +2 -8 lines
Diff to previous 1.33 (colored) to selected 1.3.6.4 (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.26.2.1 / (download) - annotate - [select for diffs], Tue Aug 17 06:47:21 2010 UTC (13 years, 7 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.26: +53 -15 lines
Diff to previous 1.26 (colored) next main 1.27 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.17.10.5 / (download) - annotate - [select for diffs], Wed Aug 11 22:54:36 2010 UTC (13 years, 7 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.17.10.4: +53 -15 lines
Diff to previous 1.17.10.4 (colored) to branchpoint 1.17 (colored) next main 1.18 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.33 / (download) - annotate - [select for diffs], Sat Jul 17 00:13:42 2010 UTC (13 years, 8 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) to selected 1.3.6.4 (colored)

Fix build with SYSVBFS_VNOPS_DEBUG.

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

Small typo in comment.

Revision 1.26.4.2 / (download) - annotate - [select for diffs], Sat Jul 3 01:19:51 2010 UTC (13 years, 8 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.26.4.1: +3 -3 lines
Diff to previous 1.26.4.1 (colored) to branchpoint 1.26 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.31 / (download) - annotate - [select for diffs], Thu Jun 24 13:03:10 2010 UTC (13 years, 9 months ago) by hannken
Branch: MAIN
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored) to selected 1.3.6.4 (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.26.4.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:56 2010 UTC (13 years, 10 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.26: +48 -11 lines
Diff to previous 1.26 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.30 / (download) - annotate - [select for diffs], Thu May 27 23:40:12 2010 UTC (13 years, 10 months ago) by pooka
Branch: MAIN
Changes since 1.29: +27 -4 lines
Diff to previous 1.29 (colored) to selected 1.3.6.4 (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 (13 years, 10 months ago) by pooka
Branch: MAIN
Changes since 1.28: +8 -2 lines
Diff to previous 1.28 (colored) to selected 1.3.6.4 (colored)

Release pathname buffers after use.

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

fix refcounting

Revision 1.27 / (download) - annotate - [select for diffs], Wed May 26 17:52:35 2010 UTC (13 years, 10 months ago) by pooka
Branch: MAIN
Changes since 1.26: +4 -3 lines
Diff to previous 1.26 (colored) to selected 1.3.6.4 (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.17.10.4 / (download) - annotate - [select for diffs], Thu Mar 11 15:04:14 2010 UTC (14 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.17.10.3: +10 -10 lines
Diff to previous 1.17.10.3 (colored) to branchpoint 1.17 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.26 / (download) - annotate - [select for diffs], Fri Jan 8 11:35:09 2010 UTC (14 years, 2 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) to selected 1.3.6.4 (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 (14 years, 2 months ago) by mbalmer
Branch: MAIN
Changes since 1.24: +9 -9 lines
Diff to previous 1.24 (colored) to selected 1.3.6.4 (colored)

Remove extra semicolons.

Revision 1.21.4.1 / (download) - annotate - [select for diffs], Thu Jul 23 23:32:33 2009 UTC (14 years, 8 months ago) by jym
Branch: jym-xensuspend
Changes since 1.21: +33 -7 lines
Diff to previous 1.21 (colored) next main 1.22 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.17.10.3 / (download) - annotate - [select for diffs], Sat Jul 18 14:53:21 2009 UTC (14 years, 8 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.17.10.2: +33 -7 lines
Diff to previous 1.17.10.2 (colored) to branchpoint 1.17 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.24 / (download) - annotate - [select for diffs], Fri Jul 3 22:38:08 2009 UTC (14 years, 8 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) to selected 1.3.6.4 (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 (14 years, 8 months ago) by elad
Branch: MAIN
Changes since 1.22: +30 -7 lines
Diff to previous 1.22 (colored) to selected 1.3.6.4 (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 (14 years, 9 months ago) by elad
Branch: MAIN
Changes since 1.21: +5 -3 lines
Diff to previous 1.21 (colored) to selected 1.3.6.4 (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.17.10.2 / (download) - annotate - [select for diffs], Mon May 4 08:13:44 2009 UTC (14 years, 10 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.17.10.1: +8 -12 lines
Diff to previous 1.17.10.1 (colored) to branchpoint 1.17 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.19.8.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:19:36 2009 UTC (15 years, 2 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.19: +8 -12 lines
Diff to previous 1.19 (colored) next main 1.20 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.17.6.2 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:17 2009 UTC (15 years, 2 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.17.6.1: +6 -10 lines
Diff to previous 1.17.6.1 (colored) to branchpoint 1.17 (colored) next main 1.18 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.19.6.1 / (download) - annotate - [select for diffs], Sat Dec 13 01:14:59 2008 UTC (15 years, 3 months ago) by haad
Branch: haad-dm
Changes since 1.19: +8 -12 lines
Diff to previous 1.19 (colored) next main 1.20 (colored) to selected 1.3.6.4 (colored)

Update haad-dm branch to haad-dm-base2.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Nov 26 20:17:33 2008 UTC (15 years, 4 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) to selected 1.3.6.4 (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 (15 years, 4 months ago) by pooka
Branch: MAIN
Changes since 1.19: +3 -2 lines
Diff to previous 1.19 (colored) to selected 1.3.6.4 (colored)

more <sys/buf.h> police

Revision 1.17.6.1 / (download) - annotate - [select for diffs], Mon Jun 2 13:24:05 2008 UTC (15 years, 9 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.17: +3 -10 lines
Diff to previous 1.17 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.17.8.1 / (download) - annotate - [select for diffs], Sun May 18 12:35:02 2008 UTC (15 years, 10 months ago) by yamt
Branch: yamt-pf42
Changes since 1.17: +3 -10 lines
Diff to previous 1.17 (colored) next main 1.18 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.17.10.1 / (download) - annotate - [select for diffs], Fri May 16 02:25:21 2008 UTC (15 years, 10 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.17: +3 -10 lines
Diff to previous 1.17 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.19 / (download) - annotate - [select for diffs], Wed Apr 30 14:07:14 2008 UTC (15 years, 11 months 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-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, 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-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, 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) to selected 1.3.6.4 (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 (15 years, 11 months ago) by martin
Branch: MAIN
Changes since 1.17: +2 -9 lines
Diff to previous 1.17 (colored) to selected 1.3.6.4 (colored)

Remove clause 3 and 4 from TNF licenses

Revision 1.14.4.3 / (download) - annotate - [select for diffs], Mon Feb 18 21:06:40 2008 UTC (16 years, 1 month ago) by mjf
Branch: mjf-devfs
Changes since 1.14.4.2: +6 -5 lines
Diff to previous 1.14.4.2 (colored) to branchpoint 1.14 (colored) next main 1.15 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.3.6.8 / (download) - annotate - [select for diffs], Mon Jan 21 09:45:54 2008 UTC (16 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.6.7: +36 -35 lines
Diff to previous 1.3.6.7 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.13.6.2 / (download) - annotate - [select for diffs], Wed Jan 9 01:55:51 2008 UTC (16 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.13.6.1: +39 -47 lines
Diff to previous 1.13.6.1 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored) to selected 1.3.6.4 (colored)

sync with HEAD

Revision 1.15.6.1 / (download) - annotate - [select for diffs], Wed Jan 2 21:55:38 2008 UTC (16 years, 2 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.15: +36 -35 lines
Diff to previous 1.15 (colored) next main 1.16 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD

Revision 1.17 / (download) - annotate - [select for diffs], Wed Jan 2 11:48:46 2008 UTC (16 years, 2 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) to selected 1.3.6.4 (colored)

Merge vmlocking2 to head.

Revision 1.14.4.2 / (download) - annotate - [select for diffs], Thu Dec 27 00:45:49 2007 UTC (16 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.14.4.1: +32 -32 lines
Diff to previous 1.14.4.1 (colored) to branchpoint 1.14 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.15.2.3 / (download) - annotate - [select for diffs], Wed Dec 26 21:39:34 2007 UTC (16 years, 3 months ago) by ad
Branch: vmlocking2
Changes since 1.15.2.2: +32 -32 lines
Diff to previous 1.15.2.2 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored) to selected 1.3.6.4 (colored)

Sync with head.

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

__FUNCTION__ -> __func__

Revision 1.14.4.1 / (download) - annotate - [select for diffs], Sat Dec 8 18:20:21 2007 UTC (16 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.14: +6 -15 lines
Diff to previous 1.14 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.15.2.2 / (download) - annotate - [select for diffs], Sat Dec 8 17:57:39 2007 UTC (16 years, 3 months ago) by ad
Branch: vmlocking2
Changes since 1.15.2.1: +4 -4 lines
Diff to previous 1.15.2.1 (colored) to branchpoint 1.15 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.3.6.7 / (download) - annotate - [select for diffs], Fri Dec 7 17:32:10 2007 UTC (16 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.6.6: +6 -15 lines
Diff to previous 1.3.6.6 (colored) to branchpoint 1.3 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.15.2.1 / (download) - annotate - [select for diffs], Tue Dec 4 13:03:09 2007 UTC (16 years, 3 months ago) by ad
Branch: vmlocking2
Changes since 1.15: +6 -5 lines
Diff to previous 1.15 (colored) to selected 1.3.6.4 (colored)

Pull the vmlocking changes into a new branch.

Revision 1.13.4.2 / (download) - annotate - [select for diffs], Tue Nov 27 19:37:53 2007 UTC (16 years, 4 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.13.4.1: +6 -15 lines
Diff to previous 1.13.4.1 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD. amd64 Xen support needs testing.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Nov 26 19:01:54 2007 UTC (16 years, 4 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) to selected 1.3.6.4 (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.13.6.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:31:20 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.13: +16 -11 lines
Diff to previous 1.13 (colored) to selected 1.3.6.4 (colored)

sync with HEAD

Revision 1.3.6.6 / (download) - annotate - [select for diffs], Sat Oct 27 11:35:14 2007 UTC (16 years, 5 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.6.5: +16 -11 lines
Diff to previous 1.3.6.5 (colored) to branchpoint 1.3 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.11.4.5 / (download) - annotate - [select for diffs], Tue Oct 9 13:44:21 2007 UTC (16 years, 5 months ago) by ad
Branch: vmlocking
Changes since 1.11.4.4: +16 -11 lines
Diff to previous 1.11.4.4 (colored) to branchpoint 1.11 (colored) next main 1.12 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.13.8.1 / (download) - annotate - [select for diffs], Sat Oct 6 15:29:50 2007 UTC (16 years, 5 months ago) by yamt
Branch: yamt-x86pmap
Changes since 1.13: +16 -11 lines
Diff to previous 1.13 (colored) next main 1.14 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.13.4.1 / (download) - annotate - [select for diffs], Tue Oct 2 18:28:55 2007 UTC (16 years, 5 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.13: +16 -11 lines
Diff to previous 1.13 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.14 / (download) - annotate - [select for diffs], Mon Sep 24 00:42:14 2007 UTC (16 years, 6 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) to selected 1.3.6.4 (colored)

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

Revision 1.11.4.4 / (download) - annotate - [select for diffs], Sun Sep 16 19:04:31 2007 UTC (16 years, 6 months ago) by ad
Branch: vmlocking
Changes since 1.11.4.3: +4 -5 lines
Diff to previous 1.11.4.3 (colored) to branchpoint 1.11 (colored) to selected 1.3.6.4 (colored)

Checkpoint work in progress on the vnode lifecycle and reference counting
stuff. This makes it work properly without kernel_lock and fixes a few
quite old bugs. See vfs_subr.c 1.283.2.17 for details.

Revision 1.3.6.5 / (download) - annotate - [select for diffs], Mon Sep 3 14:40:35 2007 UTC (16 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.6.4: +3 -4 lines
Diff to previous 1.3.6.4 (colored) to branchpoint 1.3 (colored)

sync with head.

Revision 1.11.4.3 / (download) - annotate - [select for diffs], Sun Aug 19 19:24:52 2007 UTC (16 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.11.4.2: +5 -4 lines
Diff to previous 1.11.4.2 (colored) to branchpoint 1.11 (colored) to selected 1.3.6.4 (colored)

- Back out the biodone() changes.
- Eliminate B_ERROR (from HEAD).

Revision 1.12.2.1 / (download) - annotate - [select for diffs], Wed Aug 15 13:49:01 2007 UTC (16 years, 7 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.12: +2 -3 lines
Diff to previous 1.12 (colored) next main 1.13 (colored) to selected 1.3.6.4 (colored)

Sync with HEAD.

Revision 1.13.10.2 / (download) - annotate - [select for diffs], Sun Jul 29 13:31:11 2007 UTC (16 years, 8 months ago) by ad
Branch: matt-mips64
Changes since 1.13.10.1: +802 -0 lines
Diff to previous 1.13.10.1 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored) to selected 1.3.6.4 (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.13.10.1, Sun Jul 29 13:31:10 2007 UTC (16 years, 8 months ago) by ad
Branch: matt-mips64
Changes since 1.13: +0 -802 lines
FILE REMOVED

file sysvbfs_vnops.c was added on branch matt-mips64 on 2007-07-29 13:31:11 +0000

Revision 1.13 / (download) - annotate - [select for diffs], Sun Jul 29 13:31:10 2007 UTC (16 years, 8 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) to selected 1.3.6.4 (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.11.4.2 / (download) - annotate - [select for diffs], Sun Jul 15 15:52:52 2007 UTC (16 years, 8 months ago) by ad
Branch: vmlocking
Changes since 1.11.4.1: +6 -8 lines
Diff to previous 1.11.4.1 (colored) to branchpoint 1.11 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.11.4.1 / (download) - annotate - [select for diffs], Sun Jul 15 13:27:34 2007 UTC (16 years, 8 months ago) by ad
Branch: vmlocking
Changes since 1.11: +3 -3 lines
Diff to previous 1.11 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.11.6.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:09:34 2007 UTC (16 years, 8 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.11: +3 -3 lines
Diff to previous 1.11 (colored) next main 1.12 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.12 / (download) - annotate - [select for diffs], Sat Jun 30 09:37:57 2007 UTC (16 years, 9 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) to selected 1.3.6.4 (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.8.2.1 / (download) - annotate - [select for diffs], Tue Feb 27 16:54:14 2007 UTC (17 years, 1 month ago) by yamt
Branch: yamt-idlelwp
Changes since 1.8: +15 -14 lines
Diff to previous 1.8 (colored) next main 1.9 (colored) to selected 1.3.6.4 (colored)

- sync with head.
- move sched_changepri back to kern_synch.c as it doesn't know PPQ anymore.

Revision 1.3.6.4 / (download) - annotate - [selected], Mon Feb 26 09:10:59 2007 UTC (17 years, 1 month ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.6.3: +15 -15 lines
Diff to previous 1.3.6.3 (colored) to branchpoint 1.3 (colored)

sync with head.

Revision 1.11 / (download) - annotate - [select for diffs], Thu Feb 22 06:37:00 2007 UTC (17 years, 1 month 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) to selected 1.3.6.4 (colored)

TRUE -> true, FALSE -> false

Revision 1.10 / (download) - annotate - [select for diffs], Wed Feb 21 23:00:03 2007 UTC (17 years, 1 month ago) by thorpej
Branch: MAIN
Changes since 1.9: +4 -4 lines
Diff to previous 1.9 (colored) to selected 1.3.6.4 (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 (17 years, 1 month ago) by ad
Branch: MAIN
Changes since 1.8: +3 -2 lines
Diff to previous 1.8 (colored) to selected 1.3.6.4 (colored)

Call genfs_node_destroy() where appropriate.

Revision 1.5.8.1 / (download) - annotate - [select for diffs], Sat Feb 17 23:27:46 2007 UTC (17 years, 1 month ago) by tron
Branch: netbsd-4
CVS Tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0, matt-nb4-arm-base, matt-nb4-arm
Changes since 1.5: +6 -23 lines
Diff to previous 1.5 (colored) next main 1.6 (colored) to selected 1.3.6.4 (colored)

Apply patch (requested by chs in ticket #422):
- Fix various deadlock problems with nullfs and unionfs.
- Speed up path lookups by upto 25%.

Revision 1.5.4.2 / (download) - annotate - [select for diffs], Thu Feb 1 08:48:33 2007 UTC (17 years, 1 month ago) by ad
Branch: newlock2
Changes since 1.5.4.1: +2 -3 lines
Diff to previous 1.5.4.1 (colored) to branchpoint 1.5 (colored) next main 1.6 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.8 / (download) - annotate - [select for diffs], Mon Jan 29 01:52:44 2007 UTC (17 years, 2 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) to selected 1.3.6.4 (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.5.4.1 / (download) - annotate - [select for diffs], Fri Jan 12 01:04:05 2007 UTC (17 years, 2 months ago) by ad
Branch: newlock2
Changes since 1.5: +7 -24 lines
Diff to previous 1.5 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.3.6.3 / (download) - annotate - [select for diffs], Sat Dec 30 20:50:01 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.6.2: +13 -30 lines
Diff to previous 1.3.6.2 (colored) to branchpoint 1.3 (colored) to selected 1.3.6.4 (colored)

sync with head.

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

Spell "algorithm" correctly. From Zafer Aydogan.

Revision 1.5.6.1 / (download) - annotate - [select for diffs], Sun Dec 10 07:18:42 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.5: +6 -23 lines
Diff to previous 1.5 (colored) next main 1.6 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.6 / (download) - annotate - [select for diffs], Sat Dec 9 16:11:51 2006 UTC (17 years, 3 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) to selected 1.3.6.4 (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.1.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:57:06 2006 UTC (17 years, 6 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.1: +21 -20 lines
Diff to previous 1.1 (colored) next main 1.2 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.1.8.2 / (download) - annotate - [select for diffs], Fri Aug 11 15:45:34 2006 UTC (17 years, 7 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.1.8.1: +8 -8 lines
Diff to previous 1.1.8.1 (colored) to branchpoint 1.1 (colored) next main 1.2 (colored) to selected 1.3.6.4 (colored)

sync with head

Revision 1.3.4.1 / (download) - annotate - [select for diffs], Thu Jul 13 17:49:50 2006 UTC (17 years, 8 months ago) by gdamore
Branch: gdamore-uart
Changes since 1.3: +8 -8 lines
Diff to previous 1.3 (colored) next main 1.4 (colored) to selected 1.3.6.4 (colored)

Merge from HEAD.

Revision 1.5 / (download) - annotate - [select for diffs], Sat Jul 1 10:12:36 2006 UTC (17 years, 9 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) to selected 1.3.6.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 (17 years, 9 months ago) by martin
Branch: MAIN
Changes since 1.3: +12 -8 lines
Diff to previous 1.3 (colored) to selected 1.3.6.4 (colored)

Make it compile post time-counter merge

Revision 1.3.6.2 / (download) - annotate - [select for diffs], Wed Jun 21 15:09:30 2006 UTC (17 years, 9 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.6.1: +820 -0 lines
Diff to previous 1.3.6.1 (colored) to branchpoint 1.3 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.1.6.1 / (download) - annotate - [select for diffs], Thu Jun 1 22:38:05 2006 UTC (17 years, 10 months ago) by kardel
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.1: +15 -14 lines
Diff to previous 1.1 (colored) next main 1.2 (colored) to selected 1.3.6.4 (colored)

Sync with head.

Revision 1.1.12.1 / (download) - annotate - [select for diffs], Wed May 24 15:50:40 2006 UTC (17 years, 10 months ago) by tron
Branch: peter-altq
Changes since 1.1: +13 -12 lines
Diff to previous 1.1 (colored) next main 1.2 (colored) to selected 1.3.6.4 (colored)

Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.

Revision 1.1.8.1 / (download) - annotate - [select for diffs], Wed May 24 10:58:40 2006 UTC (17 years, 10 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.1: +15 -14 lines
Diff to previous 1.1 (colored) to selected 1.3.6.4 (colored)

sync with head.

Revision 1.3.6.1, Mon May 15 12:51:21 2006 UTC (17 years, 10 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3: +0 -820 lines
FILE REMOVED

file sysvbfs_vnops.c was added on branch yamt-lazymbuf on 2006-06-21 15:09:30 +0000

Revision 1.3 / (download) - annotate - [select for diffs], Mon May 15 12:51:21 2006 UTC (17 years, 10 months 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) to selected 1.3.6.4 (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 (17 years, 10 months ago) by elad
Branch: MAIN
Changes since 1.1: +10 -10 lines
Diff to previous 1.1 (colored) to selected 1.3.6.4 (colored)

integrate kauth.

Revision 1.1.10.1 / (download) - annotate - [select for diffs], Wed Mar 8 01:31:33 2006 UTC (18 years ago) by elad
Branch: elad-kernelauth
Changes since 1.1: +12 -12 lines
Diff to previous 1.1 (colored) next main 1.2 (colored) to selected 1.3.6.4 (colored)

Adapt to kernel authorization KPI.

Revision 1.1 / (download) - annotate - [select for diffs], Thu Dec 29 14:53:45 2005 UTC (18 years, 3 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
Diff to selected 1.3.6.4 (colored)

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>