The NetBSD Project

CVS log for src/sys/sys/vnode_if.h

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.111.4.1 / (download) - annotate - [select for diffs], Wed Jun 21 16:52:28 2023 UTC (9 months, 1 week ago) by martin
Branch: netbsd-10
CVS Tags: netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1
Changes since 1.111: +2 -2 lines
Diff to previous 1.111 (colored) next main 1.112 (colored) to selected 1.65 (colored)

Regen (ticket #197)

Revision 1.112 / (download) - annotate - [select for diffs], Thu Jun 15 09:15:13 2023 UTC (9 months, 1 week ago) by hannken
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, HEAD
Changes since 1.111: +2 -2 lines
Diff to previous 1.111 (colored) to selected 1.65 (colored)

Regen.

Revision 1.111 / (download) - annotate - [select for diffs], Mon Jul 18 04:32:35 2022 UTC (20 months, 1 week ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-10-base, bouyer-sunxi-drm-base, bouyer-sunxi-drm
Branch point for: netbsd-10
Changes since 1.110: +1 -1 lines
Diff to previous 1.110 (colored) to selected 1.65 (colored)

Regen for:

Make kqueue event status for vnodes shareable, and for stacked file systems
like nullfs, make the upper vnode share that status with the lower vnode.

And, lo, NetBSD 9.99.99.

Fixes PR kern/56713.

Revision 1.110 / (download) - annotate - [select for diffs], Tue May 3 13:55:29 2022 UTC (22 months, 3 weeks ago) by hannken
Branch: MAIN
Changes since 1.109: +1 -1 lines
Diff to previous 1.109 (colored) to selected 1.65 (colored)

Regen.

Revision 1.109 / (download) - annotate - [select for diffs], Tue May 3 08:35:11 2022 UTC (22 months, 3 weeks ago) by hannken
Branch: MAIN
Changes since 1.108: +2 -2 lines
Diff to previous 1.108 (colored) to selected 1.65 (colored)

Regen.

Revision 1.108 / (download) - annotate - [select for diffs], Wed Oct 20 03:13:14 2021 UTC (2 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.107: +4 -3 lines
Diff to previous 1.107 (colored) to selected 1.65 (colored)

Regen for:

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.105.6.1 / (download) - annotate - [select for diffs], Sun Aug 1 22:42:44 2021 UTC (2 years, 7 months ago) by thorpej
Branch: thorpej-i2c-spi-conf
Changes since 1.105: +66 -56 lines
Diff to previous 1.105 (colored) next main 1.106 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.107 / (download) - annotate - [select for diffs], Fri Jul 2 16:57:15 2021 UTC (2 years, 8 months ago) by dholland
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-futex2-base, thorpej-futex2, thorpej-cfargs2-base, thorpej-cfargs2
Changes since 1.106: +1 -1 lines
Diff to previous 1.106 (colored) to selected 1.65 (colored)

Regen.

Revision 1.106 / (download) - annotate - [select for diffs], Tue Jun 29 22:37:11 2021 UTC (2 years, 8 months ago) by dholland
Branch: MAIN
Changes since 1.105: +65 -55 lines
Diff to previous 1.105 (colored) to selected 1.65 (colored)

Regen.

Revision 1.105 / (download) - annotate - [select for diffs], Sat May 16 18:31:53 2020 UTC (3 years, 10 months ago) by christos
Branch: MAIN
CVS Tags: thorpej-futex-base, thorpej-futex, thorpej-cfargs-base, thorpej-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Branch point for: thorpej-i2c-spi-conf
Changes since 1.104: +88 -45 lines
Diff to previous 1.104 (colored) to selected 1.65 (colored)

Add ACL support for FFS. From FreeBSD.

Revision 1.102.6.1 / (download) - annotate - [select for diffs], Wed Apr 8 14:09:03 2020 UTC (3 years, 11 months ago) by martin
Branch: phil-wifi
Changes since 1.102: +2 -2 lines
Diff to previous 1.102 (colored) next main 1.103 (colored) to selected 1.65 (colored)

Merge changes from current as of 20200406

Revision 1.103.2.2 / (download) - annotate - [select for diffs], Sat Feb 29 20:21:10 2020 UTC (4 years ago) by ad
Branch: ad-namecache
Changes since 1.103.2.1: +1 -1 lines
Diff to previous 1.103.2.1 (colored) to branchpoint 1.103 (colored) next main 1.104 (colored) to selected 1.65 (colored)

Sync with head.

Revision 1.104 / (download) - annotate - [select for diffs], Sun Feb 23 22:15:18 2020 UTC (4 years, 1 month ago) by ad
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, is-mlppp-base, is-mlppp, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh, ad-namecache-base3
Changes since 1.103: +1 -1 lines
Diff to previous 1.103 (colored) to selected 1.65 (colored)

Regen.

Revision 1.103.2.1 / (download) - annotate - [select for diffs], Sat Jan 18 17:14:35 2020 UTC (4 years, 2 months ago) by ad
Branch: ad-namecache
Changes since 1.103: +1 -1 lines
Diff to previous 1.103 (colored) to selected 1.65 (colored)

Regen.

Revision 1.103 / (download) - annotate - [select for diffs], Sun Dec 1 13:58:53 2019 UTC (4 years, 3 months ago) by ad
Branch: MAIN
CVS Tags: ad-namecache-base2, ad-namecache-base1, ad-namecache-base
Branch point for: ad-namecache
Changes since 1.102: +2 -2 lines
Diff to previous 1.102 (colored) to selected 1.65 (colored)

Regen for VOP_LOCK & LK_UPGRADE/LK_DOWNGRADE.

Revision 1.83.12.2 / (download) - annotate - [select for diffs], Sun Dec 3 11:39:21 2017 UTC (6 years, 3 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.83.12.1: +7 -7 lines
Diff to previous 1.83.12.1 (colored) to branchpoint 1.83 (colored) next main 1.84 (colored) to selected 1.65 (colored)

update from HEAD

Revision 1.88.4.2 / (download) - annotate - [select for diffs], Mon Aug 28 17:53:16 2017 UTC (6 years, 7 months ago) by skrll
Branch: nick-nhusb
Changes since 1.88.4.1: +7 -7 lines
Diff to previous 1.88.4.1 (colored) to branchpoint 1.88 (colored) next main 1.89 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.99.2.2 / (download) - annotate - [select for diffs], Tue Jul 25 01:29:56 2017 UTC (6 years, 8 months ago) by snj
Branch: netbsd-8
CVS Tags: netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, matt-nb8-mediatek-base, matt-nb8-mediatek
Changes since 1.99.2.1: +3 -3 lines
Diff to previous 1.99.2.1 (colored) to branchpoint 1.99 (colored) next main 1.100 (colored) to selected 1.65 (colored)

regen for ticket 130

Revision 1.102 / (download) - annotate - [select for diffs], Wed Jul 12 09:32:00 2017 UTC (6 years, 8 months ago) by hannken
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, isaki-audio2-base, isaki-audio2
Branch point for: phil-wifi
Changes since 1.101: +1 -1 lines
Diff to previous 1.101 (colored) to selected 1.65 (colored)

Regen.

Revision 1.99.2.1 / (download) - annotate - [select for diffs], Sun Jun 4 20:35:01 2017 UTC (6 years, 9 months ago) by bouyer
Branch: netbsd-8
Changes since 1.99: +3 -3 lines
Diff to previous 1.99 (colored) to selected 1.65 (colored)

pullup the following revisions, requested by hannken in ticket #2:
	src/share/man/man9/fstrans.9			1.25
	src/sys/kern/vfs_mount.c			1.66
	src/sys/kern/vfs_subr.c				1.468
	src/sys/kern/vfs_trans.c			1.46
	src/sys/kern/vfs_vnode.c			1.94, 1.95, 1.96
	src/sys/kern/vnode_if.c				1.105, 1.106
	src/sys/kern/vnode_if.sh			1.65, 1.66
	src/sys/kern/vnode_if.src			1.76
	src/sys/miscfs/genfs/genfs_io.c			1.69
	src/sys/miscfs/genfs/genfs_vnops.c		1.196, 1.197
	src/sys/miscfs/genfs/layer_extern.h		1.40
	src/sys/miscfs/genfs/layer_vfsops.c		1.51
	src/sys/miscfs/genfs/layer_vnops.c		1.67
	src/sys/miscfs/nullfs/null_vnops.c		1.42
	src/sys/miscfs/overlay/overlay_vnops.c		1.24
	src/sys/miscfs/umapfs/umap_vnops.c		1.60
	src/sys/rump/include/rump/rumpvnode_if.h	1.29, 1.30
	src/sys/rump/librump/rumpkern/emul.c		1.182
	src/sys/rump/librump/rumpvfs/rumpvnode_if.c	1.29, 1.30
	src/sys/sys/fstrans.h				1.11
	src/sys/sys/vnode.h				1.278
	src/sys/sys/vnode_if.h				1.100, 1.101
	src/sys/sys/vnode_impl.h			1.14, 1.15
	src/sys/ufs/lfs/lfs_pages.c			1.12

Vnode state, lock and fstrans cleanup:
- Rename vnode state "VS_ACTIVE" to "VS_LOADED" and add synthetic
  state "VS_ACTIVE" to assert a loaded vnode with usecount > 0.

- Redo FSTRANS in vnode_if.c and use it for VOP_LOCK and VOP_UNLOCK.

- Cleanup the genfs lock operations.

- Make "struct vnode_impl" member "vi_lock" a krwlock_t again.

- Remove the lock type argument from fstrans_start and
  fstrans_start_nowait,
  remove now unused FSTRANS state "FSTRANS_SUSPENDING".

Revision 1.101 / (download) - annotate - [select for diffs], Sun Jun 4 08:05:42 2017 UTC (6 years, 9 months ago) by hannken
Branch: MAIN
Changes since 1.100: +1 -1 lines
Diff to previous 1.100 (colored) to selected 1.65 (colored)

Operations fstrans_start() and fstrans_start_nowait() now always
use FSTRANS_SHARED as lock type so remove the lock type argument.

File system state FSTRANS_SUSPENDING is now unused so remove it.

Regen vnode_if files.

Ride 8.99.1 less than a hour ago.

Revision 1.100 / (download) - annotate - [select for diffs], Sun Jun 4 08:00:27 2017 UTC (6 years, 9 months ago) by hannken
Branch: MAIN
Changes since 1.99: +2 -2 lines
Diff to previous 1.99 (colored) to selected 1.65 (colored)

Regen.

Revision 1.99 / (download) - annotate - [select for diffs], Fri May 26 14:21:55 2017 UTC (6 years, 10 months ago) by riastradh
Branch: MAIN
CVS Tags: netbsd-8-base
Branch point for: netbsd-8
Changes since 1.98: +2 -2 lines
Diff to previous 1.98 (colored) to selected 1.65 (colored)

regen

Revision 1.98 / (download) - annotate - [select for diffs], Wed Apr 26 03:04:24 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.97: +3 -3 lines
Diff to previous 1.97 (colored) to selected 1.65 (colored)

regen

Revision 1.91.2.2 / (download) - annotate - [select for diffs], Wed Apr 26 02:53:31 2017 UTC (6 years, 11 months ago) by pgoyette
Branch: pgoyette-localcount
Changes since 1.91.2.1: +4 -4 lines
Diff to previous 1.91.2.1 (colored) to branchpoint 1.91 (colored) next main 1.92 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.91.4.1 / (download) - annotate - [select for diffs], Fri Apr 21 16:54:08 2017 UTC (6 years, 11 months ago) by bouyer
Branch: bouyer-socketcan
Changes since 1.91: +4 -4 lines
Diff to previous 1.91 (colored) next main 1.92 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.97 / (download) - annotate - [select for diffs], Sun Apr 16 17:18:54 2017 UTC (6 years, 11 months ago) by riastradh
Branch: MAIN
CVS Tags: pgoyette-localcount-20170426, bouyer-socketcan-base1
Changes since 1.96: +1 -1 lines
Diff to previous 1.96 (colored) to selected 1.65 (colored)

regen to confirm no functional change

Revision 1.96 / (download) - annotate - [select for diffs], Sun Apr 16 16:49:25 2017 UTC (6 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.95: +1 -1 lines
Diff to previous 1.95 (colored) to selected 1.65 (colored)

regen

Revision 1.95 / (download) - annotate - [select for diffs], Sat Apr 15 23:21:46 2017 UTC (6 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.94: +1 -1 lines
Diff to previous 1.94 (colored) to selected 1.65 (colored)

regen to confirm no functional change

Revision 1.94 / (download) - annotate - [select for diffs], Tue Apr 11 14:30:33 2017 UTC (6 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.93: +1 -1 lines
Diff to previous 1.93 (colored) to selected 1.65 (colored)

regen to confirm no functional change

Revision 1.93 / (download) - annotate - [select for diffs], Tue Apr 11 14:26:13 2017 UTC (6 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.92: +2 -2 lines
Diff to previous 1.92 (colored) to selected 1.65 (colored)

regen

Revision 1.91.2.1 / (download) - annotate - [select for diffs], Mon Mar 20 06:57:53 2017 UTC (7 years ago) by pgoyette
Branch: pgoyette-localcount
Changes since 1.91: +3 -3 lines
Diff to previous 1.91 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.92 / (download) - annotate - [select for diffs], Wed Feb 22 09:47:18 2017 UTC (7 years, 1 month ago) by hannken
Branch: MAIN
CVS Tags: pgoyette-localcount-20170320, jdolecek-ncq-base, jdolecek-ncq
Changes since 1.91: +2 -2 lines
Diff to previous 1.91 (colored) to selected 1.65 (colored)

Regen.

Revision 1.91 / (download) - annotate - [select for diffs], Tue Jan 26 23:30:10 2016 UTC (8 years, 2 months ago) by pooka
Branch: MAIN
CVS Tags: pgoyette-localcount-base, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, localcount-20160914, bouyer-socketcan-base
Branch point for: pgoyette-localcount, bouyer-socketcan
Changes since 1.90: +0 -0 lines
Diff to previous 1.90 (colored) to selected 1.65 (colored)

regen vnode interfaces

Revision 1.88.4.1 / (download) - annotate - [select for diffs], Sat Jun 6 14:40:30 2015 UTC (8 years, 9 months ago) by skrll
Branch: nick-nhusb
Changes since 1.88: +3 -3 lines
Diff to previous 1.88 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.90 / (download) - annotate - [select for diffs], Mon Apr 20 23:11:27 2015 UTC (8 years, 11 months ago) by riastradh
Branch: MAIN
CVS Tags: nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606
Changes since 1.89: +1 -1 lines
Diff to previous 1.89 (colored) to selected 1.65 (colored)

regen for good measure (no functional change)

Revision 1.89 / (download) - annotate - [select for diffs], Mon Apr 20 23:03:09 2015 UTC (8 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.88: +2 -2 lines
Diff to previous 1.88 (colored) to selected 1.65 (colored)

Make VOP_LINK return directory still locked and referenced.

Ride 7.99.10 bump.

Revision 1.83.12.1 / (download) - annotate - [select for diffs], Wed Aug 20 00:04:44 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.83: +64 -44 lines
Diff to previous 1.83 (colored) to selected 1.65 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.87.2.1 / (download) - annotate - [select for diffs], Sun Aug 10 06:56:55 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-earlyentropy
Changes since 1.87: +59 -39 lines
Diff to previous 1.87 (colored) next main 1.88 (colored) to selected 1.65 (colored)

Rebase.

Revision 1.88 / (download) - annotate - [select for diffs], Fri Jul 25 08:18:50 2014 UTC (9 years, 8 months ago) by dholland
Branch: MAIN
CVS Tags: tls-maxphys-base, tls-earlyentropy-base, nick-nhusb-base-20150406, 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.87: +58 -38 lines
Diff to previous 1.87 (colored) to selected 1.65 (colored)

Regen for VOP_FALLOCATE/VOP_FDISCARD.

Revision 1.83.2.1 / (download) - annotate - [select for diffs], Thu May 22 11:41:18 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.83: +8 -8 lines
Diff to previous 1.83 (colored) next main 1.84 (colored) to selected 1.65 (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.83.16.2 / (download) - annotate - [select for diffs], Sun May 18 17:46:21 2014 UTC (9 years, 10 months ago) by rmind
Branch: rmind-smpnet
Changes since 1.83.16.1: +8 -8 lines
Diff to previous 1.83.16.1 (colored) to branchpoint 1.83 (colored) next main 1.84 (colored) to selected 1.65 (colored)

sync with head

Revision 1.87 / (download) - annotate - [select for diffs], Fri Feb 7 15:29:23 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.86: +2 -2 lines
Diff to previous 1.86 (colored) to selected 1.65 (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.86 / (download) - annotate - [select for diffs], Thu Jan 23 10:13:57 2014 UTC (10 years, 2 months ago) by hannken
Branch: MAIN
Changes since 1.85: +5 -5 lines
Diff to previous 1.85 (colored) to selected 1.65 (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.85 / (download) - annotate - [select for diffs], Fri Jan 17 10:55:03 2014 UTC (10 years, 2 months ago) by hannken
Branch: MAIN
Changes since 1.84: +6 -6 lines
Diff to previous 1.84 (colored) to selected 1.65 (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.83.16.1 / (download) - annotate - [select for diffs], Wed Aug 28 23:59:38 2013 UTC (10 years, 7 months ago) by rmind
Branch: rmind-smpnet
Changes since 1.83: +2 -2 lines
Diff to previous 1.83 (colored) to selected 1.65 (colored)

sync with head

Revision 1.83.24.1 / (download) - annotate - [select for diffs], Tue Jul 23 21:07:37 2013 UTC (10 years, 8 months ago) by riastradh
Branch: riastradh-drm2
Changes since 1.83: +3 -3 lines
Diff to previous 1.83 (colored) next main 1.84 (colored) to selected 1.65 (colored)

sync with HEAD

Revision 1.84 / (download) - annotate - [select for diffs], Wed Jul 17 21:21:34 2013 UTC (10 years, 8 months ago) by pooka
Branch: MAIN
CVS Tags: riastradh-drm2-base2, riastradh-drm2-base1
Changes since 1.83: +2 -2 lines
Diff to previous 1.83 (colored) to selected 1.65 (colored)

regen

Revision 1.83 / (download) - annotate - [select for diffs], Mon Aug 8 12:17:27 2011 UTC (12 years, 7 months ago) by manu
Branch: MAIN
CVS Tags: yamt-pagecache-tag8, yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, riastradh-drm2-base, netbsd-6-base, 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, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, khorben-n900, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base7, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2, jmcneill-usbmp-base10, jmcneill-usbmp-base, jmcneill-usbmp, jmcneill-audiomp3-base, jmcneill-audiomp3, agc-symver-base, agc-symver
Branch point for: yamt-pagecache, tls-maxphys, rmind-smpnet, riastradh-drm2
Changes since 1.82: +0 -0 lines
Diff to previous 1.82 (colored) to selected 1.65 (colored)

regen

Revision 1.72.20.1 / (download) - annotate - [select for diffs], Sun Jul 17 15:36:04 2011 UTC (12 years, 8 months ago) by riz
Branch: netbsd-5
CVS Tags: 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
Changes since 1.72: +4 -2 lines
Diff to previous 1.72 (colored) next main 1.73 (colored) to selected 1.65 (colored)

Pull up following revision(s) (requested by manu in ticket #1645):
lib/libc/sys/Makefile.inc                       1.207 via patch
lib/libc/sys/extattr_get_file.2                 patch
lib/libpuffs/dispatcher.c                       1.34,1.36 via patch
lib/libpuffs/puffs.c                            1.107 via patch
lib/libpuffs/puffs.h                            1.115,1.118 via patch
sys/fs/puffs/puffs_msgif.h                      1.71,1.76 via patch
sys/fs/puffs/puffs_vfsops.c                     1.88 via patch
sys/fs/puffs/puffs_vnops.c                      1.145,1.154 via patch
sys/kern/vfs_xattr.c                            1.24-1.27 via patch
sys/kern/vnode_if.c                             1.87 via patch
sys/sys/Makefile                                1.133 via patch
sys/sys/extattr.h                               1.6 via patch
sys/sys/vnode_if.h                              1.81 via patch
sys/ufs/ffs/ffs_vnops.c                         patch
sys/ufs/ufs/ufs_extattr.c                       1.31,1.34 via patch

* support extended attributes
* bump major due to structure growth
* add some spare space
* remove ABI sillyness
Support extended attributes.
Fix multiple non compliances in our Linux-like extattr API, and make it
public so that it can be used.
Improve a bit listxattr(2). It attemps to list both system and user
extended attributes, and it faled if calling user did not have privilege
for reading system EA. Now we just lise user EA and skip system EA in
reading them is not allowed.
Fix bug introduced in previous commuit: Do not vrele() a vnode we did not
obtained.
Improve UFS1 extended attributes usability
- autocreate attribute backing file for new attributes
- autoload attributes when issuing extattrctl start
- when autoloading attributes, do not display garbage warning when looking
up entries that got ENOENT
Add a flag to VOP_LISTEXTATTR(9) so that the vnode interface can tell the
filesystem in which format extended attribute shall be listed.
There are currently two formats:
- NUL-terminated strings, used for listxattr(2), this is the default.
- one byte length-pprefixed, non NUL-terminated strings, used for
  extattr_list_file(2), which is obtanined by setting the
  EXTATTR_LIST_PREFIXLEN flag to VOP_LISTEXTATTR(9)
This approach avoid the need for converting the list back and forth, except
in libperfuse, since FUSE uses NUL-terminated strings, and the kernel may
have requested EXTATTR_LIST_PREFIXLEN.

Revision 1.82 / (download) - annotate - [select for diffs], Mon Jul 11 08:27:39 2011 UTC (12 years, 8 months ago) by hannken
Branch: MAIN
Changes since 1.81: +7 -10 lines
Diff to previous 1.81 (colored) to selected 1.65 (colored)

Change VOP_BWRITE() to take a vnode as its first argument like all other
VOPs do.  Layered file systems no longer have to modify bp->b_vp and run
into trouble when an async VOP_BWRITE() uses the wrong vnode.

- change all occurences of VOP_BWRITE(bp) to VOP_BWRITE(bp->b_vp, bp).
- remove layer_bwrite().
- welcome to 5.99.55

Adresses PR kern/38762 panic: vwakeup: neg numoutput

No objections from tech-kern@.

Revision 1.81 / (download) - annotate - [select for diffs], Mon Jul 4 08:07:31 2011 UTC (12 years, 8 months ago) by manu
Branch: MAIN
Changes since 1.80: +4 -2 lines
Diff to previous 1.80 (colored) to selected 1.65 (colored)

Add a flag to VOP_LISTEXTATTR(9) so that the vnode interface can tell the
filesystem in which format extended attribute shall be listed.

There are currently two formats:
- NUL-terminated strings, used for listxattr(2), this is the default.
- one byte length-pprefixed, non NUL-terminated strings, used for
  extattr_list_file(2), which is obtanined by setting the
  EXTATTR_LIST_PREFIXLEN flag to VOP_LISTEXTATTR(9)

This approach avoid the need for converting the list back and forth, except
in libperfuse, since FUSE uses NUL-terminated strings, and the kernel may
have requested EXTATTR_LIST_PREFIXLEN.

Revision 1.79.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:10:14 2011 UTC (12 years, 9 months ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.79: +2 -2 lines
Diff to previous 1.79 (colored) next main 1.80 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.75.4.3 / (download) - annotate - [select for diffs], Thu Apr 21 01:42:19 2011 UTC (12 years, 11 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.75.4.2: +2 -2 lines
Diff to previous 1.75.4.2 (colored) to branchpoint 1.75 (colored) next main 1.76 (colored) to selected 1.65 (colored)

sync with head

Revision 1.80 / (download) - annotate - [select for diffs], Sun Mar 6 17:08:38 2011 UTC (13 years ago) by bouyer
Branch: MAIN
CVS Tags: rmind-uvmplock-nbase, rmind-uvmplock-base, cherry-xenmp-base, cherry-xenmp
Changes since 1.79: +1 -1 lines
Diff to previous 1.79 (colored) to selected 1.65 (colored)

merge the bouyer-quota2 branch. This adds a new on-disk format
to store disk quota usage and limits, integrated with ffs
metadata. Usage is checked by fsck_ffs (no more quotacheck)
and is covered by the WAPBL journal. Enabled with kernel
option QUOTA2 (added where QUOTA was enabled in kernel config files),
turned on with tunefs(8) on a per-filesystem
basis. mount_mfs(8) can also turn quotas on.

See http://mail-index.netbsd.org/tech-kern/2011/02/19/msg010025.html
for details.

Revision 1.79.4.1 / (download) - annotate - [select for diffs], Thu Jan 20 14:25:01 2011 UTC (13 years, 2 months ago) by bouyer
Branch: bouyer-quota2
Changes since 1.79: +1 -1 lines
Diff to previous 1.79 (colored) next main 1.80 (colored) to selected 1.65 (colored)

Snapshot of work in progress on a modernised disk quota system:
- new quotactl syscall (versionned for backward compat), which takes
  as parameter a path to a mount point, and a prop_dictionary
  (in plistref format) describing commands and arguments.
  For each command, status and data are returned as a prop_dictionary.
  quota commands features will be added to take advantage of this,
  exporting quota data or getting quota commands as plists.

- new on disk-format storage (all 64bit wide), integrated to metadata for
  ffs (and playing nicely with wapbl).
  Quotas are enabled on a ffs filesystem via superblock flags.
  tunefs(8) can enable or disable quotas.
  On a quota-enabled filesystem, fsck_ffs(8) will track per-uid/gid
  block and inode usages, and will check and update quotas in Pass 6.
  quota usage and limits are stored in unliked files (one for users,
  one for groups)l fsck_ffs(8) will create the files if needed, or
  free them if needed. This means that after enabling or disabling
  quotas on a filesystem; a fsck_ffs(8) run is required.
  quotacheck(8) is not needed any more, on a unclean shutdown
  fsck or journal replay will take care of fixing quotas.
  newfs(8) can create a ready-to-mount quota-enabled filesystem
  (superblock flags are set and quota inodes are created).
  Other new features or semantic changes:
  - default quota datas, applied to users or groups which don't already
    have a quota entry
  - per-user/group grace time (instead of a filesystem global one)
  - 0 really means "nothing allowed at all", not "no limit".
    If you want "no limit", set the limit to UQUAD_MAX (tools will
    understand "unlimited" and "-")

  A quota file is structured as follow:
  it starts with a header, containing a few per-filesystem values,
  and the default quota limits.
  Quota entries are linked together as a simple list, each entry has a
  pointer (as an offset withing the file) to the next.
  The header has a pointer to a list of free quota entries, and
  a hash table of in-use entries. The size of the hash table depends
  on the filesystem block size (header+hash table should fit in the
  first block). The file is not sparse and is a multiple of
  filesystem block size (when the free quota entry list is empty a new
  filesystem block is allocated). quota entries to not cross
  filesystem block boundaries.

  In memory, the kernel keeps a cache of recently used quota entries
  as a reference to the block number, and offset withing the block.
  The quota entry itself is keept in the buf cache.

fsck_ffs(8), tunefs(8) and newfs(8) supports are completed (with
related atf tests :)
The kernel can update disk usage and report it via quotactl(2).

Todo: enforce quotas limits (limits are not checked by kernel yet)
      update repquota, edquota and rpc.rquotad to the new world
      implement compat_50_quotactl ioctl.
      update quotactl(2) man page

fsck_ffs required fixes so that allocating new blocks or inodes will
properly update the superblock and cg sumaries. This was not an issue up
to now because superblock and cg sumaries check happened last, but now
allocations or frees can happen in pass 6.

Revision 1.75.2.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:48:09 2010 UTC (13 years, 7 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.75.2.1: +3 -4 lines
Diff to previous 1.75.2.1 (colored) to branchpoint 1.75 (colored) next main 1.76 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.72.10.3 / (download) - annotate - [select for diffs], Wed Aug 11 22:55:12 2010 UTC (13 years, 7 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.72.10.2: +7 -9 lines
Diff to previous 1.72.10.2 (colored) to branchpoint 1.72 (colored) next main 1.73 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.75.4.2 / (download) - annotate - [select for diffs], Sat Jul 3 01:20:04 2010 UTC (13 years, 8 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.75.4.1: +4 -5 lines
Diff to previous 1.75.4.1 (colored) to branchpoint 1.75 (colored) to selected 1.65 (colored)

sync with head

Revision 1.79 / (download) - annotate - [select for diffs], Thu Jun 24 13:03:18 2010 UTC (13 years, 9 months ago) by hannken
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base7, uebayasi-xip-base6, uebayasi-xip-base5, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2, matt-mips64-premerge-20101231, jruoho-x86intr-base, bouyer-quota2-nbase, bouyer-quota2-base
Branch point for: jruoho-x86intr, bouyer-quota2
Changes since 1.78: +3 -4 lines
Diff to previous 1.78 (colored) to selected 1.65 (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.75.4.1 / (download) - annotate - [select for diffs], Sun May 30 05:18:08 2010 UTC (13 years, 10 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.75: +5 -6 lines
Diff to previous 1.75 (colored) to selected 1.65 (colored)

sync with head

Revision 1.75.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:44:34 2010 UTC (13 years, 11 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.75: +4 -5 lines
Diff to previous 1.75 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.78 / (download) - annotate - [select for diffs], Wed Apr 14 14:00:04 2010 UTC (13 years, 11 months ago) by pooka
Branch: MAIN
CVS Tags: uebayasi-xip-base1
Changes since 1.77: +3 -2 lines
Diff to previous 1.77 (colored) to selected 1.65 (colored)

regen: rump vnodeif went on a diet

Revision 1.77 / (download) - annotate - [select for diffs], Wed Apr 14 12:21:05 2010 UTC (13 years, 11 months ago) by pooka
Branch: MAIN
Changes since 1.76: +3 -5 lines
Diff to previous 1.76 (colored) to selected 1.65 (colored)

regenefactor for comment and whitespace changes

Revision 1.76 / (download) - annotate - [select for diffs], Sat Apr 10 19:44:02 2010 UTC (13 years, 11 months ago) by pooka
Branch: MAIN
Changes since 1.75: +1 -1 lines
Diff to previous 1.75 (colored) to selected 1.65 (colored)

regen: remove unused vdesc_transports

Revision 1.72.10.2 / (download) - annotate - [select for diffs], Thu Mar 11 15:04:43 2010 UTC (14 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.72.10.1: +2 -6 lines
Diff to previous 1.72.10.1 (colored) to branchpoint 1.72 (colored) to selected 1.65 (colored)

sync with head

Revision 1.75 / (download) - annotate - [select for diffs], Tue Sep 29 11:54:52 2009 UTC (14 years, 6 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9, uebayasi-xip-base, matt-premerge-20091211, jym-xensuspend-nbase
Branch point for: uebayasi-xip, rmind-uvmplock
Changes since 1.74: +1 -5 lines
Diff to previous 1.74 (colored) to selected 1.65 (colored)

regen: remove VNODE_LOCKDEBUG

Revision 1.72.10.1 / (download) - annotate - [select for diffs], Mon May 4 08:14:37 2009 UTC (14 years, 10 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.72: +4 -4 lines
Diff to previous 1.72 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.72.18.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:20:31 2009 UTC (15 years, 2 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.72: +4 -4 lines
Diff to previous 1.72 (colored) next main 1.73 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.72.6.1 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:41 2009 UTC (15 years, 2 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.72: +3 -3 lines
Diff to previous 1.72 (colored) next main 1.73 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.72.16.1 / (download) - annotate - [select for diffs], Sat Dec 13 01:15:36 2008 UTC (15 years, 3 months ago) by haad
Branch: haad-dm
Changes since 1.72: +4 -4 lines
Diff to previous 1.72 (colored) next main 1.73 (colored) to selected 1.65 (colored)

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

Revision 1.74 / (download) - annotate - [select for diffs], Mon Nov 17 08:59:33 2008 UTC (15 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, 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, jymxensuspend-base, jym-xensuspend-base, jym-xensuspend, haad-nbase2, haad-dm-base2, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Changes since 1.73: +1 -1 lines
Diff to previous 1.73 (colored) to selected 1.65 (colored)

reregen to get those most important rcsids right

Revision 1.73 / (download) - annotate - [select for diffs], Mon Nov 17 08:56:02 2008 UTC (15 years, 4 months ago) by pooka
Branch: MAIN
Changes since 1.72: +3 -3 lines
Diff to previous 1.72 (colored) to selected 1.65 (colored)

regen

Revision 1.66.6.4 / (download) - annotate - [select for diffs], Sun Mar 23 02:05:11 2008 UTC (16 years ago) by matt
Branch: matt-armv6
Changes since 1.66.6.3: +12 -22 lines
Diff to previous 1.66.6.3 (colored) to branchpoint 1.66 (colored) next main 1.67 (colored) to selected 1.65 (colored)

sync with HEAD

Revision 1.67.4.3 / (download) - annotate - [select for diffs], Mon Feb 18 21:07:24 2008 UTC (16 years, 1 month ago) by mjf
Branch: mjf-devfs
Changes since 1.67.4.2: +19 -24 lines
Diff to previous 1.67.4.2 (colored) to branchpoint 1.67 (colored) next main 1.68 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.50.4.7 / (download) - annotate - [select for diffs], Mon Feb 4 09:25:01 2008 UTC (16 years, 1 month ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.50.4.6: +12 -22 lines
Diff to previous 1.50.4.6 (colored) to branchpoint 1.50 (colored) next main 1.51 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.72 / (download) - annotate - [select for diffs], Fri Jan 25 14:32:46 2008 UTC (16 years, 2 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, yamt-nfs-mp-base2, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, 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, nick-net80211-sync-base, nick-net80211-sync, netbsd-5-base, 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, mjf-devfs-base, 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, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-nbase, hpcarm-cleanup-base, haad-dm-base1, ad-socklock-base1
Branch point for: yamt-nfs-mp, nick-hppapmap, netbsd-5, mjf-devfs2, haad-dm
Changes since 1.71: +11 -21 lines
Diff to previous 1.71 (colored) to selected 1.65 (colored)

Regen.

Revision 1.50.4.6 / (download) - annotate - [select for diffs], Mon Jan 21 09:48:03 2008 UTC (16 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.50.4.5: +9 -4 lines
Diff to previous 1.50.4.5 (colored) to branchpoint 1.50 (colored) to selected 1.65 (colored)

sync with head

Revision 1.66.6.3 / (download) - annotate - [select for diffs], Wed Jan 9 01:58:22 2008 UTC (16 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.66.6.2: +27 -43 lines
Diff to previous 1.66.6.2 (colored) to branchpoint 1.66 (colored) to selected 1.65 (colored)

sync with HEAD

Revision 1.70.6.1 / (download) - annotate - [select for diffs], Wed Jan 2 21:58:13 2008 UTC (16 years, 2 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.70: +8 -3 lines
Diff to previous 1.70 (colored) next main 1.71 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.71 / (download) - annotate - [select for diffs], Wed Jan 2 11:51:16 2008 UTC (16 years, 2 months ago) by ad
Branch: MAIN
CVS Tags: matt-armv6-base, bouyer-xeni386-nbase, bouyer-xeni386-base
Changes since 1.70: +8 -3 lines
Diff to previous 1.70 (colored) to selected 1.65 (colored)

Regen.

Revision 1.70.2.2 / (download) - annotate - [select for diffs], Fri Dec 28 21:43:14 2007 UTC (16 years, 3 months ago) by ad
Branch: vmlocking2
Changes since 1.70.2.1: +5 -1 lines
Diff to previous 1.70.2.1 (colored) to branchpoint 1.70 (colored) next main 1.71 (colored) to selected 1.65 (colored)

Make rump build.

Revision 1.67.4.2 / (download) - annotate - [select for diffs], Sat Dec 8 18:21:37 2007 UTC (16 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.67.4.1: +22 -43 lines
Diff to previous 1.67.4.1 (colored) to branchpoint 1.67 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.50.4.5 / (download) - annotate - [select for diffs], Fri Dec 7 17:34:59 2007 UTC (16 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.50.4.4: +22 -43 lines
Diff to previous 1.50.4.4 (colored) to branchpoint 1.50 (colored) to selected 1.65 (colored)

sync with head

Revision 1.70.2.1 / (download) - annotate - [select for diffs], Tue Dec 4 13:03:40 2007 UTC (16 years, 3 months ago) by ad
Branch: vmlocking2
Changes since 1.70: +2 -1 lines
Diff to previous 1.70 (colored) to selected 1.65 (colored)

Pull the vmlocking changes into a new branch.

Revision 1.66.4.2 / (download) - annotate - [select for diffs], Tue Nov 27 19:39:17 2007 UTC (16 years, 4 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.66.4.1: +22 -43 lines
Diff to previous 1.66.4.1 (colored) to branchpoint 1.66 (colored) next main 1.67 (colored) to selected 1.65 (colored)

Sync with HEAD. amd64 Xen support needs testing.

Revision 1.70 / (download) - annotate - [select for diffs], Mon Nov 26 19:03:31 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-base3, 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.69: +2 -2 lines
Diff to previous 1.69 (colored) to selected 1.65 (colored)

regen: remove struct lwp as a parameter to VOPs

Revision 1.69 / (download) - annotate - [select for diffs], Mon Nov 26 19:02:25 2007 UTC (16 years, 4 months ago) by pooka
Branch: MAIN
Changes since 1.68: +19 -40 lines
Diff to previous 1.68 (colored) to selected 1.65 (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.67.4.1 / (download) - annotate - [select for diffs], Mon Nov 19 00:49:35 2007 UTC (16 years, 4 months ago) by mjf
Branch: mjf-devfs
Changes since 1.67: +2 -2 lines
Diff to previous 1.67 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.50.4.4 / (download) - annotate - [select for diffs], Thu Nov 15 11:45:36 2007 UTC (16 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.50.4.3: +2 -2 lines
Diff to previous 1.50.4.3 (colored) to branchpoint 1.50 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.67.2.1 / (download) - annotate - [select for diffs], Tue Nov 13 16:03:28 2007 UTC (16 years, 4 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.67: +1 -1 lines
Diff to previous 1.67 (colored) next main 1.68 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.66.4.1 / (download) - annotate - [select for diffs], Sun Nov 11 16:48:55 2007 UTC (16 years, 4 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.66: +2 -2 lines
Diff to previous 1.66 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.66.6.2 / (download) - annotate - [select for diffs], Thu Nov 8 11:00:23 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.66.6.1: +2 -2 lines
Diff to previous 1.66.6.1 (colored) to branchpoint 1.66 (colored) to selected 1.65 (colored)

sync with -HEAD

Revision 1.66.6.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:35:04 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.66: +1 -1 lines
Diff to previous 1.66 (colored) to selected 1.65 (colored)

sync with HEAD

Revision 1.68 / (download) - annotate - [select for diffs], Tue Nov 6 22:00:00 2007 UTC (16 years, 4 months ago) by ad
Branch: MAIN
CVS Tags: bouyer-xenamd64-base2, bouyer-xenamd64-base
Changes since 1.67: +1 -1 lines
Diff to previous 1.67 (colored) to selected 1.65 (colored)

Regen.

Revision 1.67 / (download) - annotate - [select for diffs], Wed Oct 10 20:42:32 2007 UTC (16 years, 5 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, vmlocking-base, jmcneill-base
Branch point for: mjf-devfs, bouyer-xenamd64
Changes since 1.66: +0 -0 lines
Diff to previous 1.66 (colored) to selected 1.65 (colored)

Merge from vmlocking:

- Split vnode::v_flag into three fields, depending on field locking.
- simple_lock -> kmutex in a few places.
- Fix some simple locking problems.

Revision 1.63.8.3 / (download) - annotate - [select for diffs], Sun Sep 16 19:04:40 2007 UTC (16 years, 6 months ago) by ad
Branch: vmlocking
Changes since 1.63.8.2: +4 -4 lines
Diff to previous 1.63.8.2 (colored) to branchpoint 1.63 (colored) next main 1.64 (colored) to selected 1.65 (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.50.4.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:46:44 2007 UTC (16 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.50.4.2: +5 -5 lines
Diff to previous 1.50.4.2 (colored) to branchpoint 1.50 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.63.8.2 / (download) - annotate - [select for diffs], Mon Aug 20 21:28:22 2007 UTC (16 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.63.8.1: +3 -3 lines
Diff to previous 1.63.8.1 (colored) to branchpoint 1.63 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.64.4.1 / (download) - annotate - [select for diffs], Wed Aug 15 13:51:06 2007 UTC (16 years, 7 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.64: +5 -5 lines
Diff to previous 1.64 (colored) next main 1.65 (colored)

Sync with HEAD.

Revision 1.66.10.2 / (download) - annotate - [select for diffs], Fri Jul 27 08:27:39 2007 UTC (16 years, 8 months ago) by pooka
Branch: matt-mips64
Changes since 1.66.10.1: +590 -0 lines
Diff to previous 1.66.10.1 (colored) to branchpoint 1.66 (colored) next main 1.67 (colored) to selected 1.65 (colored)

regen: VOP_MMAP fflags -> prot

Revision 1.66.10.1, Fri Jul 27 08:27:38 2007 UTC (16 years, 8 months ago) by pooka
Branch: matt-mips64
Changes since 1.66: +0 -590 lines
FILE REMOVED

file vnode_if.h was added on branch matt-mips64 on 2007-07-27 08:27:39 +0000

Revision 1.66 / (download) - annotate - [select for diffs], Fri Jul 27 08:27:38 2007 UTC (16 years, 8 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, nick-csl-alignment-base5, matt-mips64-base, hpcarm-cleanup
Branch point for: matt-mips64, matt-armv6, jmcneill-pm
Changes since 1.65: +3 -3 lines
Diff to previous 1.65 (colored)

regen: VOP_MMAP fflags -> prot

Revision 1.65 / (download) - annotate - [selected], Sun Jul 22 21:27:49 2007 UTC (16 years, 8 months ago) by pooka
Branch: MAIN
Changes since 1.64: +2 -2 lines
Diff to previous 1.64 (colored)

regen: assert that vnode creating operations set the size

Revision 1.63.10.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:12:40 2007 UTC (16 years, 8 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored) next main 1.64 (colored) to selected 1.65 (colored)

Sync with head.

Revision 1.63.8.1 / (download) - annotate - [select for diffs], Sun Jun 17 21:32:03 2007 UTC (16 years, 9 months ago) by ad
Branch: vmlocking
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored) to selected 1.65 (colored)

- Increase the number of thread priorities from 128 to 256. How the space
  is set up is to be revisited.
- Implement soft interrupts as kernel threads. A generic implementation
  is provided, with hooks for fast-path MD code that can run the interrupt
  threads over the top of other threads executing in the kernel.
- Split vnode::v_flag into three fields, depending on how the flag is
  locked (by the interlock, by the vnode lock, by the file system).
- Miscellaneous locking fixes and improvements.

Revision 1.63.4.1 / (download) - annotate - [select for diffs], Sun Apr 15 16:04:06 2007 UTC (16 years, 11 months ago) by yamt
Branch: yamt-idlelwp
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored) next main 1.64 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.64 / (download) - annotate - [select for diffs], Mon Apr 9 15:00:43 2007 UTC (16 years, 11 months ago) by gdt
Branch: MAIN
CVS Tags: yamt-idlelwp-base8, thorpej-atomic-base, thorpej-atomic, nick-csl-alignment-base, mjf-ufs-trans-base
Branch point for: nick-csl-alignment
Changes since 1.63: +1 -1 lines
Diff to previous 1.63 (colored) to selected 1.65 (colored)

regen
(changes in RCS Ids only)

Revision 1.62.4.1 / (download) - annotate - [select for diffs], Fri Jan 12 01:04:24 2007 UTC (17 years, 2 months ago) by ad
Branch: newlock2
Changes since 1.62: +61 -12 lines
Diff to previous 1.62 (colored) next main 1.63 (colored) to selected 1.65 (colored)

Sync with head.

Revision 1.50.4.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:50:56 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.50.4.1: +62 -13 lines
Diff to previous 1.50.4.1 (colored) to branchpoint 1.50 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.62.6.1 / (download) - annotate - [select for diffs], Sun Dec 10 07:19:29 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.62: +61 -12 lines
Diff to previous 1.62 (colored) next main 1.63 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.63 / (download) - annotate - [select for diffs], Thu Nov 30 21:07:36 2006 UTC (17 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, reinoud-bufcleanup, post-newlock2-merge, newlock2-nbase, newlock2-base, netbsd-4-base, 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, netbsd-4, matt-nb4-arm-base, matt-nb4-arm, ad-audiomp-base, ad-audiomp
Branch point for: yamt-idlelwp, vmlocking, mjf-ufs-trans
Changes since 1.62: +60 -11 lines
Diff to previous 1.62 (colored) to selected 1.65 (colored)

regen for VOP_FOO_DESCOFFSET change in vnode_if.sh

Revision 1.59.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:59:42 2006 UTC (17 years, 6 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.59: +46 -48 lines
Diff to previous 1.59 (colored) next main 1.60 (colored) to selected 1.65 (colored)

sync with head

Revision 1.59.8.2 / (download) - annotate - [select for diffs], Fri Aug 11 15:47:26 2006 UTC (17 years, 7 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.59.8.1: +3 -3 lines
Diff to previous 1.59.8.1 (colored) to branchpoint 1.59 (colored) next main 1.60 (colored) to selected 1.65 (colored)

sync with head

Revision 1.61.4.1 / (download) - annotate - [select for diffs], Thu Jul 13 17:50:06 2006 UTC (17 years, 8 months ago) by gdamore
Branch: gdamore-uart
Changes since 1.61: +3 -3 lines
Diff to previous 1.61 (colored) next main 1.62 (colored) to selected 1.65 (colored)

Merge from HEAD.

Revision 1.62 / (download) - annotate - [select for diffs], Thu Jul 13 12:00:26 2006 UTC (17 years, 8 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, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-splraiseipl, newlock2
Changes since 1.61: +2 -2 lines
Diff to previous 1.61 (colored) to selected 1.65 (colored)

Fix alignement problems for fhandle_t, exposed by gcc4.1.

While touching all vptofh/fhtovp functions, get rid of VFS_MAXFIDSIZ,
version the getfh(2) syscall and explicitly pass the size available in
the filehandle from userland.

Discussed on tech-kern, with lots of help from yamt (thanks!).

Revision 1.50.4.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:12:04 2006 UTC (17 years, 9 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.50: +94 -1820 lines
Diff to previous 1.50 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.59.6.1 / (download) - annotate - [select for diffs], Thu Jun 1 22:39:27 2006 UTC (17 years, 10 months ago) by kardel
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.59: +46 -48 lines
Diff to previous 1.59 (colored) next main 1.60 (colored) to selected 1.65 (colored)

Sync with head.

Revision 1.59.12.1 / (download) - annotate - [select for diffs], Wed May 24 15:50:47 2006 UTC (17 years, 10 months ago) by tron
Branch: peter-altq
Changes since 1.59: +45 -47 lines
Diff to previous 1.59 (colored) next main 1.60 (colored) to selected 1.65 (colored)

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

Revision 1.59.8.1 / (download) - annotate - [select for diffs], Wed May 24 10:59:21 2006 UTC (17 years, 10 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.59: +46 -48 lines
Diff to previous 1.59 (colored) to selected 1.65 (colored)

sync with head.

Revision 1.61 / (download) - annotate - [select for diffs], Sun May 14 21:38:18 2006 UTC (17 years, 10 months ago) by elad
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: gdamore-uart
Changes since 1.60: +45 -47 lines
Diff to previous 1.60 (colored) to selected 1.65 (colored)

integrate kauth.

Revision 1.60 / (download) - annotate - [select for diffs], Thu May 4 16:49:54 2006 UTC (17 years, 10 months ago) by perseant
Branch: MAIN
CVS Tags: elad-kernelauth-base
Changes since 1.59: +1 -1 lines
Diff to previous 1.59 (colored) to selected 1.65 (colored)

Regen after making VOP_FCNTL take an unlocked vnode.

Revision 1.59.10.1 / (download) - annotate - [select for diffs], Wed Mar 8 00:57:31 2006 UTC (18 years ago) by elad
Branch: elad-kernelauth
Changes since 1.59: +45 -47 lines
Diff to previous 1.59 (colored) next main 1.60 (colored) to selected 1.65 (colored)

Regen for kernel authorization KPI.

Revision 1.59 / (download) - annotate - [select for diffs], Fri Dec 30 11:19:26 2005 UTC (18 years, 3 months ago) by yamt
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
Branch point for: yamt-pdpolicy, simonb-timecounters, rpaulo-netinet-merge-pcb, peter-altq, elad-kernelauth
Changes since 1.58: +4 -5 lines
Diff to previous 1.58 (colored) to selected 1.65 (colored)

regen.

Revision 1.58 / (download) - annotate - [select for diffs], Sun Dec 11 12:25:21 2005 UTC (18 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.57: +39 -39 lines
Diff to previous 1.57 (colored) to selected 1.65 (colored)

merge ktrace-lwp.

Revision 1.43.2.9 / (download) - annotate - [select for diffs], Sun Dec 11 10:29:36 2005 UTC (18 years, 3 months ago) by christos
Branch: ktrace-lwp
Changes since 1.43.2.8: +51 -1486 lines
Diff to previous 1.43.2.8 (colored) next main 1.44 (colored) to selected 1.65 (colored)

Sync with head.

Revision 1.57 / (download) - annotate - [select for diffs], Wed Dec 7 00:46:23 2005 UTC (18 years, 3 months ago) by thorpej
Branch: MAIN
CVS Tags: ktrace-lwp-base
Changes since 1.56: +1 -1 lines
Diff to previous 1.56 (colored) to selected 1.65 (colored)

Regen: Generate ANSI function decls.

Revision 1.56 / (download) - annotate - [select for diffs], Wed Dec 7 00:42:26 2005 UTC (18 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.55: +48 -1484 lines
Diff to previous 1.55 (colored) to selected 1.65 (colored)

Regen: VNODE_OP_NOINLINE is gone.

Revision 1.55 / (download) - annotate - [select for diffs], Tue Nov 29 23:02:22 2005 UTC (18 years, 4 months ago) by yamt
Branch: MAIN
Changes since 1.54: +1 -1 lines
Diff to previous 1.54 (colored) to selected 1.65 (colored)

regen to revert the previous.

Revision 1.54 / (download) - annotate - [select for diffs], Tue Nov 29 22:52:03 2005 UTC (18 years, 4 months ago) by yamt
Branch: MAIN
Changes since 1.53: +1 -1 lines
Diff to previous 1.53 (colored) to selected 1.65 (colored)

merge yamt-readahead branch.

Revision 1.53.2.2 / (download) - annotate - [select for diffs], Fri Nov 18 08:44:55 2005 UTC (18 years, 4 months ago) by yamt
Branch: yamt-readahead
CVS Tags: yamt-readahead-pervnode
Changes since 1.53.2.1: +2 -6 lines
Diff to previous 1.53.2.1 (colored) to branchpoint 1.53 (colored) next main 1.54 (colored) to selected 1.65 (colored)

- associate read-ahead context to vnode, rather than file.
- revert VOP_READ prototype.

Revision 1.53.2.1 / (download) - annotate - [select for diffs], Tue Nov 15 03:41:23 2005 UTC (18 years, 4 months ago) by yamt
Branch: yamt-readahead
CVS Tags: yamt-readahead-perfile
Changes since 1.53: +7 -3 lines
Diff to previous 1.53 (colored) to selected 1.65 (colored)

regen.

Revision 1.43.2.8 / (download) - annotate - [select for diffs], Thu Nov 10 14:12:13 2005 UTC (18 years, 4 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.43.2.7: +3 -290 lines
Diff to previous 1.43.2.7 (colored) to selected 1.65 (colored)

Sync with HEAD. Here we go again...

Revision 1.53 / (download) - annotate - [select for diffs], Wed Nov 2 12:41:50 2005 UTC (18 years, 4 months ago) by yamt
Branch: MAIN
CVS Tags: yamt-readahead-base3, yamt-readahead-base2, yamt-readahead-base
Branch point for: yamt-readahead
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored) to selected 1.65 (colored)

regen.

Revision 1.52 / (download) - annotate - [select for diffs], Wed Nov 2 12:38:59 2005 UTC (18 years, 4 months ago) by yamt
Branch: MAIN
Changes since 1.51: +3 -290 lines
Diff to previous 1.51 (colored) to selected 1.65 (colored)

merge yamt-vop branch.  remove following VOPs.

	VOP_BLKATOFF
	VOP_VALLOC
	VOP_BALLOC
	VOP_REALLOCBLKS
	VOP_VFREE
	VOP_TRUNCATE
	VOP_UPDATE

Revision 1.51.2.1 / (download) - annotate - [select for diffs], Thu Oct 20 01:35:24 2005 UTC (18 years, 5 months ago) by yamt
Branch: yamt-vop
Changes since 1.51: +2 -289 lines
Diff to previous 1.51 (colored) next main 1.52 (colored) to selected 1.65 (colored)

regen.

Revision 1.51 / (download) - annotate - [select for diffs], Sat Oct 8 06:15:30 2005 UTC (18 years, 5 months ago) by isaki
Branch: MAIN
CVS Tags: yamt-vop-base3, yamt-vop-base2, yamt-vop-base, thorpej-vnode-attr-base, thorpej-vnode-attr
Branch point for: yamt-vop
Changes since 1.50: +1 -1 lines
Diff to previous 1.50 (colored) to selected 1.65 (colored)

regen.

Revision 1.49.2.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:38 2005 UTC (18 years, 11 months ago) by kent
Branch: kent-audio2
Changes since 1.49: +4 -4 lines
Diff to previous 1.49 (colored) next main 1.50 (colored) to selected 1.65 (colored)

sync with -current

Revision 1.49.4.1 / (download) - annotate - [select for diffs], Sat Mar 19 08:36:52 2005 UTC (19 years ago) by yamt
Branch: yamt-km
Changes since 1.49: +4 -4 lines
Diff to previous 1.49 (colored) next main 1.50 (colored) to selected 1.65 (colored)

sync with head.  xen and whitespace.  xen part is not finished.

Revision 1.43.2.7 / (download) - annotate - [select for diffs], Fri Mar 4 16:54:24 2005 UTC (19 years ago) by skrll
Branch: ktrace-lwp
Changes since 1.43.2.6: +4 -4 lines
Diff to previous 1.43.2.6 (colored) to selected 1.65 (colored)

Sync with HEAD.

Hi Perry!

Revision 1.50 / (download) - annotate - [select for diffs], Sat Feb 26 22:15:27 2005 UTC (19 years, 1 month ago) by perry
Branch: MAIN
CVS Tags: yamt-km-base4, yamt-km-base3, netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0, netbsd-3, kent-audio2-base
Branch point for: yamt-lazymbuf
Changes since 1.49: +3 -3 lines
Diff to previous 1.49 (colored) to selected 1.65 (colored)

regen

Revision 1.43.2.6 / (download) - annotate - [select for diffs], Mon Jan 17 19:33:10 2005 UTC (19 years, 2 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.43.2.5: +275 -5 lines
Diff to previous 1.43.2.5 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.49 / (download) - annotate - [select for diffs], Sun Jan 2 17:46:41 2005 UTC (19 years, 2 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-km-base2, yamt-km-base, kent-audio1-beforemerge
Branch point for: yamt-km, kent-audio2
Changes since 1.48: +273 -2 lines
Diff to previous 1.48 (colored) to selected 1.65 (colored)

Regen for extended attribute VOPs.

Revision 1.43.2.5 / (download) - annotate - [select for diffs], Fri Sep 24 10:53:43 2004 UTC (19 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.43.2.4: +358 -4 lines
Diff to previous 1.43.2.4 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.43.2.4 / (download) - annotate - [select for diffs], Tue Sep 21 13:38:51 2004 UTC (19 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.43.2.3: +71 -72 lines
Diff to previous 1.43.2.3 (colored) to selected 1.65 (colored)

Fix the sync with head I botched.

Revision 1.48 / (download) - annotate - [select for diffs], Tue Sep 21 03:11:53 2004 UTC (19 years, 6 months ago) by thorpej
Branch: MAIN
CVS Tags: kent-audio1-base, kent-audio1
Changes since 1.47: +356 -3 lines
Diff to previous 1.47 (colored) to selected 1.65 (colored)

Regenerate for VNODE_LOCKDEBUG changes.

Revision 1.43.2.3 / (download) - annotate - [select for diffs], Sat Sep 18 14:56:31 2004 UTC (19 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.43.2.2: +73 -72 lines
Diff to previous 1.43.2.2 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.47 / (download) - annotate - [select for diffs], Fri Sep 10 09:38:17 2004 UTC (19 years, 6 months ago) by yamt
Branch: MAIN
Changes since 1.46: +1 -1 lines
Diff to previous 1.46 (colored) to selected 1.65 (colored)

regen.

Revision 1.43.2.2 / (download) - annotate - [select for diffs], Tue Aug 3 10:56:34 2004 UTC (19 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.43.2.1: +31 -32 lines
Diff to previous 1.43.2.1 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.46 / (download) - annotate - [select for diffs], Thu May 27 12:50:35 2004 UTC (19 years, 10 months ago) by yamt
Branch: MAIN
Changes since 1.45: +1 -1 lines
Diff to previous 1.45 (colored) to selected 1.65 (colored)

regen.

Revision 1.45 / (download) - annotate - [select for diffs], Sun Jan 25 18:06:49 2004 UTC (20 years, 2 months ago) by hannken
Branch: MAIN
CVS Tags: netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2
Changes since 1.44: +30 -27 lines
Diff to previous 1.44 (colored) to selected 1.65 (colored)

Make VOP_STRATEGY(bp) a real VOP as discussed on tech-kern.

VOP_STRATEGY(bp) is replaced by one of two new functions:

- VOP_STRATEGY(vp, bp)  Call the strategy routine of vp for bp.
- DEV_STRATEGY(bp)      Call the d_strategy routine of bp->b_dev for bp.

DEV_STRATEGY(bp) is used only for block-to-block device situations.

Revision 1.44 / (download) - annotate - [select for diffs], Thu Aug 7 16:34:23 2003 UTC (20 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.43: +2 -6 lines
Diff to previous 1.43 (colored) to selected 1.65 (colored)

Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22364, verified by myself.

Revision 1.43.2.1 / (download) - annotate - [select for diffs], Wed Jul 2 15:27:19 2003 UTC (20 years, 9 months ago) by darrenr
Branch: ktrace-lwp
Changes since 1.43: +71 -72 lines
Diff to previous 1.43 (colored) to selected 1.65 (colored)

Apply the aborted ktrace-lwp changes to a specific branch.  This is just for
others to review, I'm concerned that patch fuziness may have resulted in some
errant code being generated but I'll look at that later by comparing the diff
from the base to the branch with the file I attempt to apply to it.  This will,
at the very least, put the changes in a better context for others to review
them and attempt to tinker with removing passing of 'struct lwp' through
the kernel.

Revision 1.43 / (download) - annotate - [select for diffs], Sun Jun 29 22:32:31 2003 UTC (20 years, 9 months ago) by fvdl
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.42: +71 -70 lines
Diff to previous 1.42 (colored) to selected 1.65 (colored)

Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.

Revision 1.42 / (download) - annotate - [select for diffs], Sat Jun 28 14:22:23 2003 UTC (20 years, 9 months ago) by darrenr
Branch: MAIN
Changes since 1.41: +71 -72 lines
Diff to previous 1.41 (colored) to selected 1.65 (colored)

Pass lwp pointers throughtout the kernel, as required, so that the lwpid can
be inserted into ktrace records.  The general change has been to replace
"struct proc *" with "struct lwp *" in various function prototypes, pass
the lwp through and use l_proc to get the process pointer when needed.

Bump the kernel rev up to 1.6V

Revision 1.41 / (download) - annotate - [select for diffs], Thu Apr 10 20:38:12 2003 UTC (20 years, 11 months ago) by jdolecek
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored) to selected 1.65 (colored)

regen:
'tvp' in vop_rename needs to be vput(), not vrele()d, so adjust the
definition here to match current reality
okayed by Bill Studenmund

Revision 1.40 / (download) - annotate - [select for diffs], Fri Mar 21 23:11:28 2003 UTC (21 years ago) by dsl
Branch: MAIN
Changes since 1.39: +10 -10 lines
Diff to previous 1.39 (colored) to selected 1.65 (colored)

Use 'void *' instead of 'caddr_t' in prototypes of VOP_IOCTL, VOP_FCNTL
and VOP_ADVLOCK, delete casts from callers (and some to copyin/out).

Revision 1.33.2.4 / (download) - annotate - [select for diffs], Mon Nov 11 22:16:45 2002 UTC (21 years, 4 months ago) by nathanw
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.33.2.3: +30 -3 lines
Diff to previous 1.33.2.3 (colored) to branchpoint 1.33 (colored) next main 1.34 (colored) to selected 1.65 (colored)

Catch up to -current

Revision 1.39 / (download) - annotate - [select for diffs], Wed Oct 23 09:16:48 2002 UTC (21 years, 5 months ago) by jdolecek
Branch: MAIN
CVS Tags: nathanw_sa_before_merge, nathanw_sa_base, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, fvdl_fs64_base
Changes since 1.38: +29 -2 lines
Diff to previous 1.38 (colored) to selected 1.65 (colored)

regen: kqueue branch merge, addition of VOP_KQFILTER()

Revision 1.36.2.2 / (download) - annotate - [select for diffs], Thu Jan 10 20:04:54 2002 UTC (22 years, 2 months ago) by thorpej
Branch: kqueue
Changes since 1.36.2.1: +11 -80 lines
Diff to previous 1.36.2.1 (colored) to branchpoint 1.36 (colored) next main 1.37 (colored) to selected 1.65 (colored)

Sync kqueue branch with -current.

Revision 1.33.2.3 / (download) - annotate - [select for diffs], Wed Nov 14 19:18:52 2001 UTC (22 years, 4 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.33.2.2: +2 -2 lines
Diff to previous 1.33.2.2 (colored) to branchpoint 1.33 (colored) to selected 1.65 (colored)

Catch up to -current.

Revision 1.37.2.1 / (download) - annotate - [select for diffs], Mon Nov 12 21:19:42 2001 UTC (22 years, 4 months ago) by thorpej
Branch: thorpej-mips-cache
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored) next main 1.38 (colored) to selected 1.65 (colored)

Sync the thorpej-mips-cache branch with -current.

Revision 1.38 / (download) - annotate - [select for diffs], Mon Nov 12 14:48:47 2001 UTC (22 years, 4 months ago) by lukem
Branch: MAIN
CVS Tags: thorpej-mips-cache-base, newlock-base, newlock, netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6, kqueue-beforemerge, kqueue-base, ifpoll-base, gehenna-devsw-base, gehenna-devsw, eeh-devprop-base, eeh-devprop
Changes since 1.37: +1 -1 lines
Diff to previous 1.37 (colored) to selected 1.65 (colored)

regen

Revision 1.36.4.3 / (download) - annotate - [select for diffs], Mon Oct 1 12:48:17 2001 UTC (22 years, 6 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.36.4.2: +10 -79 lines
Diff to previous 1.36.4.2 (colored) to branchpoint 1.36 (colored) next main 1.37 (colored) to selected 1.65 (colored)

Catch up with -current.

Revision 1.36.4.2 / (download) - annotate - [select for diffs], Wed Sep 26 15:28:26 2001 UTC (22 years, 6 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.36.4.1: +1 -1 lines
Diff to previous 1.36.4.1 (colored) to branchpoint 1.36 (colored) to selected 1.65 (colored)

* add a VCLONED vnode flag that indicates a vnode representing a cloned
  device.
* rename REVOKEALL to REVOKEALIAS, and add a REVOKECLONE flag, to pass
  to VOP_REVOKE
* the revoke system call will revoke all aliases, as before, but not the
  clones
* vdevgone is called when detaching a device, so make it use REVOKECLONE
  to get rid of all clones as well
* clean up all uses of VOP_OPEN wrt. locking.
* add a few VOPS to spec_vnops that need to do something when it's a
  clone vnode (access and getattr)
* add a copy of the vnode vattr structure of the original 'master' vnode
  to the specinfo of a cloned vnode. could possibly redirect getattr to
  the 'master' vnode, but this has issues with revoke
* add a vdev_reassignvp function that disassociates a vnode from its
  original device, and reassociates it with the specified dev_t. to be
  used by cloning devices only, in case a new minor is allocated.
* change all direct references in drivers to v_devcookie and v_rdev
  to vdev_privdata(vp) and vdev_rdev(vp). for diagnostic purposes
  when debugging race conditions that still exist wrt. locking and
  revoking vnodes.
* make the locking state of a vnode consistent when passed to
  d_open and d_close (unlocked). locked would be better, but has
  some deadlock issues

Revision 1.33.2.2 / (download) - annotate - [select for diffs], Fri Sep 21 22:37:02 2001 UTC (22 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.33.2.1: +11 -80 lines
Diff to previous 1.33.2.1 (colored) to branchpoint 1.33 (colored) to selected 1.65 (colored)

Catch up to -current.

Revision 1.36.4.1 / (download) - annotate - [select for diffs], Tue Sep 18 19:14:01 2001 UTC (22 years, 6 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.36: +7 -3 lines
Diff to previous 1.36 (colored) to selected 1.65 (colored)

Various changes to make cloning devices possible:

	* Add an extra argument (struct vnode **) to VOP_OPEN. If it is
	  not NULL, specfs will create a cloned (aliased) vnode during
	  the call, and return it there. The caller should release and
	  unlock the original vnode if a new vnode was returned. The
	  new vnode is returned locked.

	* Add a flag field to the cdevsw and bdevsw structures.
	  DF_CLONING indicates that it wants a new vnode for each
	  open (XXX is there a better way? devprop?)

	* If a device is cloning, always call the close entry
	  point for a VOP_CLOSE.


Also, rewrite cons.c to do the right thing with vnodes. Use VOPs
rather then direct device entry calls. Suggested by mycroft@

Light to moderate testing done an i386 system (arch doesn't matter
though, these are MI changes).

Revision 1.37 / (download) - annotate - [select for diffs], Sat Sep 15 20:37:36 2001 UTC (22 years, 6 months ago) by chs
Branch: MAIN
CVS Tags: thorpej-devvp-base3, thorpej-devvp-base2, post-chs-ubcperf
Branch point for: thorpej-mips-cache
Changes since 1.36: +10 -79 lines
Diff to previous 1.36 (colored) to selected 1.65 (colored)

regen

Revision 1.36.2.1 / (download) - annotate - [select for diffs], Tue Jul 10 13:50:30 2001 UTC (22 years, 8 months ago) by lukem
Branch: kqueue
Changes since 1.36: +29 -2 lines
Diff to previous 1.36 (colored) to selected 1.65 (colored)

regen for vop_kqfilter

Revision 1.33.2.1 / (download) - annotate - [select for diffs], Thu Jun 21 20:10:01 2001 UTC (22 years, 9 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.33: +10 -10 lines
Diff to previous 1.33 (colored) to selected 1.65 (colored)

Catch up to -current.

Revision 1.36 / (download) - annotate - [select for diffs], Sat May 26 21:34:04 2001 UTC (22 years, 10 months ago) by chs
Branch: MAIN
CVS Tags: thorpej-devvp-base, pre-chs-ubcperf
Branch point for: thorpej-devvp, kqueue
Changes since 1.35: +4 -4 lines
Diff to previous 1.35 (colored) to selected 1.65 (colored)

regen.

Revision 1.35 / (download) - annotate - [select for diffs], Sat May 26 21:27:20 2001 UTC (22 years, 10 months ago) by chs
Branch: MAIN
Changes since 1.34: +7 -7 lines
Diff to previous 1.34 (colored) to selected 1.65 (colored)

replace vm_page_t with struct vm_page *.

Revision 1.34 / (download) - annotate - [select for diffs], Mon May 7 08:48:07 2001 UTC (22 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.33: +1 -1 lines
Diff to previous 1.33 (colored) to selected 1.65 (colored)

regen from vnode_if.sh rev 1.29

Revision 1.18.2.4 / (download) - annotate - [select for diffs], Sun Feb 11 19:17:39 2001 UTC (23 years, 1 month ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.2.3: +105 -103 lines
Diff to previous 1.18.2.3 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.33 / (download) - annotate - [select for diffs], Mon Jan 22 09:53:31 2001 UTC (23 years, 2 months ago) by jdolecek
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base
Branch point for: nathanw_sa
Changes since 1.32: +104 -102 lines
Diff to previous 1.32 (colored) to selected 1.65 (colored)

regen: *_desc are generated correctly, new VNODE_OPS_COUNT,
structures constified

Revision 1.32 / (download) - annotate - [select for diffs], Fri Jan 19 12:24:09 2001 UTC (23 years, 2 months ago) by martin
Branch: MAIN
Changes since 1.31: +102 -102 lines
Diff to previous 1.31 (colored) to selected 1.65 (colored)

Regen after de-const-ing.

Revision 1.31 / (download) - annotate - [select for diffs], Thu Jan 18 20:28:24 2001 UTC (23 years, 2 months ago) by jdolecek
Branch: MAIN
Changes since 1.30: +101 -101 lines
Diff to previous 1.30 (colored) to selected 1.65 (colored)

constify

Revision 1.18.2.3 / (download) - annotate - [select for diffs], Fri Jan 5 17:37:00 2001 UTC (23 years, 2 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.2.2: +2 -2 lines
Diff to previous 1.18.2.2 (colored) to branchpoint 1.18 (colored) to selected 1.65 (colored)

Sync with HEAD

Revision 1.30 / (download) - annotate - [select for diffs], Fri Dec 22 20:07:23 2000 UTC (23 years, 3 months ago) by fvdl
Branch: MAIN
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored) to selected 1.65 (colored)

Regen.

Revision 1.29 / (download) - annotate - [select for diffs], Fri Dec 22 15:10:38 2000 UTC (23 years, 3 months ago) by mrg
Branch: MAIN
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.65 (colored)

regen

Revision 1.28 / (download) - annotate - [select for diffs], Fri Dec 22 14:59:40 2000 UTC (23 years, 3 months ago) by mrg
Branch: MAIN
Changes since 1.27: +1 -1 lines
Diff to previous 1.27 (colored) to selected 1.65 (colored)

regen

Revision 1.27 / (download) - annotate - [select for diffs], Fri Dec 22 14:58:39 2000 UTC (23 years, 3 months ago) by mrg
Branch: MAIN
Changes since 1.26: +1 -1 lines
Diff to previous 1.26 (colored) to selected 1.65 (colored)

avoid redefinition of VNODE_OP_NOINLINE

Revision 1.22.4.1 / (download) - annotate - [select for diffs], Thu Dec 14 23:56:27 2000 UTC (23 years, 3 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001
Changes since 1.22: +9 -3 lines
Diff to previous 1.22 (colored) next main 1.23 (colored) to selected 1.65 (colored)

Pull up regenerated files (requested by fvdl):
  Improve NFS performance, possibly with as much as 100% in
  throughput.  Please note: this implies a kernel interface change,
  VOP_FSYNC gains two arguments.

Revision 1.18.2.2 / (download) - annotate - [select for diffs], Fri Dec 8 09:19:44 2000 UTC (23 years, 3 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.2.1: +150 -2 lines
Diff to previous 1.18.2.1 (colored) to branchpoint 1.18 (colored) to selected 1.65 (colored)

Sync with HEAD.

Revision 1.26 / (download) - annotate - [select for diffs], Mon Nov 27 09:04:59 2000 UTC (23 years, 4 months ago) by chs
Branch: MAIN
Changes since 1.25: +149 -1 lines
Diff to previous 1.25 (colored) to selected 1.65 (colored)

regen.

Revision 1.18.2.1 / (download) - annotate - [select for diffs], Mon Nov 20 18:11:40 2000 UTC (23 years, 4 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18: +521 -98 lines
Diff to previous 1.18 (colored) to selected 1.65 (colored)

Update thorpej_scsipi to -current as of a month ago

Revision 1.25 / (download) - annotate - [select for diffs], Tue Sep 19 21:58:21 2000 UTC (23 years, 6 months ago) by fvdl
Branch: MAIN
Changes since 1.24: +10 -3 lines
Diff to previous 1.24 (colored) to selected 1.65 (colored)

Regen.

Revision 1.24 / (download) - annotate - [select for diffs], Wed Sep 13 16:09:53 2000 UTC (23 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.23: +10 -1 lines
Diff to previous 1.23 (colored) to selected 1.65 (colored)

Regen: VNODE_OP_NOINLINE vs. LKM.

Revision 1.23 / (download) - annotate - [select for diffs], Wed Sep 13 15:51:20 2000 UTC (23 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.22: +470 -94 lines
Diff to previous 1.22 (colored) to selected 1.65 (colored)

Regen for VNODE_OP_NOINLINE.

Revision 1.22 / (download) - annotate - [select for diffs], Sat May 13 23:43:12 2000 UTC (23 years, 10 months ago) by perseant
Branch: MAIN
CVS Tags: netbsd-1-5-base, netbsd-1-5-RELEASE, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2, minoura-xpg4dl-base, minoura-xpg4dl
Branch point for: netbsd-1-5
Changes since 1.21: +4 -4 lines
Diff to previous 1.21 (colored) to selected 1.65 (colored)

Change the sementics of the last parameter from a boolean ("waitfor") to
a set of flags ("flags").  Two flags are defined, UPDATE_WAIT and
UPDATE_DIROP.

Under the old semantics, VOP_UPDATE would block if waitfor were set,
under the assumption that directory operations should be done
synchronously.  At least LFS and FFS+softdep do not make this
assumption; FFS+softdep got around the problem by enclosing all relevant
calls to VOP_UPDATE in a "if(!DOINGSOFTDEP(vp))", while LFS simply
ignored waitfor, one of the reasons why NFS-serving an LFS filesystem
did not work properly.

Under the new semantics, the UPDATE_DIROP flag is a hint to the
fs-specific update routine that the call comes from a dirop routine, and
should be wait for, or not, accordingly.

Closes PR#8996.

Revision 1.18.8.1 / (download) - annotate - [select for diffs], Mon Dec 27 18:36:36 1999 UTC (24 years, 3 months ago) by wrstuden
Branch: wrstuden-devbsize
Changes since 1.18: +33 -2 lines
Diff to previous 1.18 (colored) next main 1.19 (colored) to selected 1.65 (colored)

Pull up to last week's -current.

Revision 1.21 / (download) - annotate - [select for diffs], Tue Dec 7 23:58:27 1999 UTC (24 years, 3 months ago) by thorpej
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, chs-ubc2-newbase
Changes since 1.20: +1 -32 lines
Diff to previous 1.20 (colored) to selected 1.65 (colored)

Regen.

Revision 1.20 / (download) - annotate - [select for diffs], Tue Dec 7 21:07:40 1999 UTC (24 years, 3 months ago) by wrstuden
Branch: MAIN
Changes since 1.19: +33 -2 lines
Diff to previous 1.19 (colored) to selected 1.65 (colored)

Regen.

Revision 1.19 / (download) - annotate - [select for diffs], Mon Nov 15 18:49:13 1999 UTC (24 years, 4 months ago) by fvdl
Branch: MAIN
Changes since 1.18: +33 -2 lines
Diff to previous 1.18 (colored) to selected 1.65 (colored)

Add Kirk McKusick's soft updates code to the trunk. Not enabled by
default, as the copyright on the main file (ffs_softdep.c) is such
that is has been put into gnusrc. options SOFTDEP will pull this
in. This code also contains the trickle syncer.

Bump version number to 1.4O

Revision 1.18.4.1 / (download) - annotate - [select for diffs], Tue Oct 19 12:50:31 1999 UTC (24 years, 5 months ago) by fvdl
Branch: fvdl-softdep
Changes since 1.18: +32 -1 lines
Diff to previous 1.18 (colored) next main 1.19 (colored) to selected 1.65 (colored)

Bring in Kirk McKusick's FFS softdep code on a branch.

Revision 1.15.4.7 / (download) - annotate - [select for diffs], Tue Aug 31 21:03:45 1999 UTC (24 years, 7 months ago) by perseant
Branch: chs-ubc2
Changes since 1.15.4.6: +5 -5 lines
Diff to previous 1.15.4.6 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored) to selected 1.65 (colored)

Rudimentary support for LFS under UBC:

- LFS-specific VOP_BALLOC and VOP_PUTPAGES vnode ops.

- getblk VREG panic #ifdef'd out (can be reinstated when Ifile is
  internalized and Ifile can be made another type from VREG)

- interface to VOP_PUTPAGES changed to pass all pager flags, not
  just sync.  FS putpages routines must know about the pager flags.

- new LFS magic disk address, -2 ("unwritten"), meaning accounted for
  but not assigned to a fixed disk location (since LFS does these two
  things separately, and the previous accounting method using buffer
  headers no longer will work).  Changed references to (foo == (daddr_t)-1)
  to (foo < 0).  Since disk drivers reject all addresses < 0, this should
  not present a problem for other FSs.

Revision 1.15.4.6 / (download) - annotate - [select for diffs], Mon Aug 9 00:05:54 1999 UTC (24 years, 7 months ago) by chs
Branch: chs-ubc2
Changes since 1.15.4.5: +4 -4 lines
Diff to previous 1.15.4.5 (colored) to branchpoint 1.15 (colored) to selected 1.65 (colored)

create a new type "voff_t" for uvm_object offsets
and define it to be "off_t".  also, remove pgo_asyncget().

Revision 1.18 / (download) - annotate - [select for diffs], Tue Aug 3 18:20:23 1999 UTC (24 years, 8 months ago) by wrstuden
Branch: MAIN
CVS Tags: fvdl-softdep-base, comdex-fall-1999-base, comdex-fall-1999
Branch point for: wrstuden-devbsize, thorpej_scsipi, fvdl-softdep
Changes since 1.17: +32 -1 lines
Diff to previous 1.17 (colored) to selected 1.65 (colored)

Regen for revision: 1.19 of vnode_if.src.

Revision 1.15.4.5 / (download) - annotate - [select for diffs], Mon Aug 2 22:18:54 1999 UTC (24 years, 8 months ago) by thorpej
Branch: chs-ubc2
Changes since 1.15.4.4: +2 -2 lines
Diff to previous 1.15.4.4 (colored) to branchpoint 1.15 (colored) to selected 1.65 (colored)

Regen.

Revision 1.15.4.4 / (download) - annotate - [select for diffs], Sat Jul 31 18:40:02 1999 UTC (24 years, 8 months ago) by chs
Branch: chs-ubc2
Changes since 1.15.4.3: +7 -10 lines
Diff to previous 1.15.4.3 (colored) to branchpoint 1.15 (colored) to selected 1.65 (colored)

VOP_BALLOC() now allocates a range instead of just one block.

Revision 1.17 / (download) - annotate - [select for diffs], Wed Jul 7 23:33:51 1999 UTC (24 years, 8 months ago) by wrstuden
Branch: MAIN
CVS Tags: chs-ubc2-base
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored) to selected 1.65 (colored)

Regen to reflect WILLPUT & WILLUNLOCK syntax.

Revision 1.15.4.3 / (download) - annotate - [select for diffs], Sun Jul 4 01:42:27 1999 UTC (24 years, 9 months ago) by chs
Branch: chs-ubc2
Changes since 1.15.4.2: +32 -1 lines
Diff to previous 1.15.4.2 (colored) to branchpoint 1.15 (colored) to selected 1.65 (colored)

add VOP_BALLOC().

Revision 1.15.4.2 / (download) - annotate - [select for diffs], Thu Jul 1 23:50:37 1999 UTC (24 years, 9 months ago) by thorpej
Branch: chs-ubc2
Changes since 1.15.4.1: +2 -2 lines
Diff to previous 1.15.4.1 (colored) to branchpoint 1.15 (colored) to selected 1.65 (colored)

Sync w/ -current.

Revision 1.16 / (download) - annotate - [select for diffs], Mon Jun 21 02:30:53 1999 UTC (24 years, 9 months ago) by sommerfeld
Branch: MAIN
Changes since 1.15: +1 -1 lines
Diff to previous 1.15 (colored) to selected 1.65 (colored)

regen (no actual change, but comments in the master file changed)

Revision 1.15.4.1 / (download) - annotate - [select for diffs], Mon Jun 7 04:25:33 1999 UTC (24 years, 9 months ago) by chs
Branch: chs-ubc2
Changes since 1.15: +66 -1 lines
Diff to previous 1.15 (colored) to selected 1.65 (colored)

merge everything from chs-ubc branch.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Mar 22 17:13:35 1999 UTC (25 years ago) by sommerfe
Branch: MAIN
CVS Tags: netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH003, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001, netbsd-1-4, kame_14_19990705, kame_14_19990628, kame_141_19991130, kame
Branch point for: chs-ubc2
Changes since 1.14: +1 -1 lines
Diff to previous 1.14 (colored) to selected 1.65 (colored)

Regen files based on changes to syscalls.master, vnode_if.src (latter
was changes to comments only, but..)
Build vfs_getcwd.c as standard part of kernel.
Add implementation of fchroot(), since two emulations already had it.
Call vn_isunder() in fchdir(), chroot(), and fchroot() to make it harder
to escape chroot().

Revision 1.14.2.1 / (download) - annotate - [select for diffs], Mon Nov 9 06:06:35 1998 UTC (25 years, 4 months ago) by chs
Branch: chs-ubc
Changes since 1.14: +65 -0 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.65 (colored)

initial snapshot.  lots left to do.

Revision 1.14 / (download) - annotate - [select for diffs], Sun Sep 13 14:45:22 1998 UTC (25 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: kenh-if-detach-base, kenh-if-detach, chs-ubc-base
Branch point for: chs-ubc
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored) to selected 1.65 (colored)

Regen

Revision 1.13.2.2 / (download) - annotate - [select for diffs], Thu Jul 30 00:46:46 1998 UTC (25 years, 8 months ago) by mycroft
Branch: eeh-paddr_t
Changes since 1.13.2.1: +1082 -0 lines
Diff to previous 1.13.2.1 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored) to selected 1.65 (colored)

Regen.

Revision 1.13.2.1, Thu Jul 30 00:46:45 1998 UTC (25 years, 8 months ago) by mycroft
Branch: eeh-paddr_t
Changes since 1.13: +0 -1082 lines
FILE REMOVED

file vnode_if.h was added on branch eeh-paddr_t on 1998-07-30 00:46:46 +0000

Revision 1.13 / (download) - annotate - [select for diffs], Thu Jul 30 00:46:45 1998 UTC (25 years, 8 months ago) by mycroft
Branch: MAIN
CVS Tags: eeh-paddr_t-base
Branch point for: eeh-paddr_t
Changes since 1.12: +48 -45 lines
Diff to previous 1.12 (colored) to selected 1.65 (colored)

Regen.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Jun 5 19:41:21 1998 UTC (25 years, 9 months ago) by kleink
Branch: MAIN
Changes since 1.11: +5 -5 lines
Diff to previous 1.11 (colored) to selected 1.65 (colored)

Regen:  fsync argument change.

Revision 1.11 / (download) - annotate - [select for diffs], Sun Mar 1 02:30:14 1998 UTC (26 years, 1 month ago) by fvdl
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.65 (colored)

Regen.

Revision 1.10 / (download) - annotate - [select for diffs], Sun Mar 1 02:24:16 1998 UTC (26 years, 1 month ago) by fvdl
Branch: MAIN
Changes since 1.9: +49 -14 lines
Diff to previous 1.9 (colored) to selected 1.65 (colored)

Merge with Lite2 + local changes

Revision 1.9 / (download) - annotate - [select for diffs], Fri Jan 9 06:43:27 1998 UTC (26 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.8: +3 -1 lines
Diff to previous 1.8 (colored) to selected 1.65 (colored)

Regen.

Revision 1.8 / (download) - annotate - [select for diffs], Thu Jan 8 01:07:45 1998 UTC (26 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.7: +1 -3 lines
Diff to previous 1.7 (colored) to selected 1.65 (colored)

Regen: Back out RCS ID related changes.

Revision 1.7 / (download) - annotate - [select for diffs], Mon Jan 5 19:15:53 1998 UTC (26 years, 2 months ago) by perry
Branch: MAIN
Changes since 1.6: +3 -1 lines
Diff to previous 1.6 (colored) to selected 1.65 (colored)

regened with RCSIDs in place

Revision 1.5.2.1 / (download) - annotate - [select for diffs], Tue Oct 14 16:03:55 1997 UTC (26 years, 5 months ago) by thorpej
Branch: marc-pcmcia
Changes since 1.5: +4 -4 lines
Diff to previous 1.5 (colored) next main 1.6 (colored) to selected 1.65 (colored)

Update marc-pcmcia branch from trunk.

Revision 1.6 / (download) - annotate - [select for diffs], Fri Oct 10 02:08:31 1997 UTC (26 years, 5 months ago) by fvdl
Branch: MAIN
CVS Tags: netbsd-1-3-base, netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001, netbsd-1-3-BETA, netbsd-1-3, marc-pcmcia-base
Changes since 1.5: +4 -4 lines
Diff to previous 1.5 (colored) to selected 1.65 (colored)

Regen.

Revision 1.5 / (download) - annotate - [select for diffs], Mon Jul 7 20:19:55 1997 UTC (26 years, 8 months ago) by cgd
Branch: MAIN
CVS Tags: thorpej-signal-base, thorpej-signal, marc-pcmcia-bp
Branch point for: marc-pcmcia
Changes since 1.4: +48 -44 lines
Diff to previous 1.4 (colored) to selected 1.65 (colored)

update for new vnode_if.sh

Revision 1.4 / (download) - annotate - [select for diffs], Wed Jan 22 06:55:45 1997 UTC (27 years, 2 months ago) by mikel
Branch: MAIN
CVS Tags: mrg-vm-swap, is-newarp-before-merge, is-newarp-base, is-newarp, bouyer-scsipi
Changes since 1.3: +6 -1 lines
Diff to previous 1.3 (colored) to selected 1.65 (colored)

regen

Revision 1.3 / (download) - annotate - [select for diffs], Sat Sep 7 12:56:54 1996 UTC (27 years, 6 months ago) by mycroft
Branch: MAIN
CVS Tags: thorpej-setroot
Changes since 1.2: +11 -18 lines
Diff to previous 1.2 (colored) to selected 1.65 (colored)

Regen.

Revision 1.2 / (download) - annotate - [select for diffs], Sat May 11 18:31:01 1996 UTC (27 years, 10 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-2-base, netbsd-1-2-RELEASE, netbsd-1-2-PATCH001, netbsd-1-2-BETA, netbsd-1-2
Changes since 1.1: +7 -7 lines
Diff to previous 1.1 (colored) to selected 1.65 (colored)

Regen.

Revision 1.1 / (download) - annotate - [select for diffs], Thu Feb 29 21:01:12 1996 UTC (28 years, 1 month ago) by cgd
Branch: MAIN
Diff to selected 1.65 (colored)

Do not build vnode_if.[ch] for each kernel.  Build them once, like the
various syscall sources/headers, and just compile them.  From PR 2142, OK'd
by mycroft.  (These are now generated files.)

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>