CVS log for src/sys/kern/vnode_if.c
Up to [cvs.NetBSD.org] / src / sys / kern
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.118.4.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 16:52:28 2023 UTC (22 months ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-1-RELEASE,
netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1
Diff to: previous 1.118: preferred, colored; next MAIN 1.119: preferred, colored
Changes since revision 1.118: +4 -5
lines
Regen (ticket #197)
Revision 1.119: download - view: text, markup, annotated - select for diffs
Thu Jun 15 09:15:13 2023 UTC (22 months, 1 week ago) by hannken
Branches: MAIN
CVS tags: thorpej-ifq-base,
thorpej-ifq,
thorpej-altq-separation-base,
thorpej-altq-separation,
perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
HEAD
Diff to: previous 1.118: preferred, colored
Changes since revision 1.118: +4 -5
lines
Regen.
Revision 1.118: download - view: text, markup, annotated - select for diffs
Mon Jul 18 04:32:35 2022 UTC (2 years, 9 months ago) by thorpej
Branches: MAIN
CVS tags: netbsd-10-base,
bouyer-sunxi-drm-base,
bouyer-sunxi-drm
Branch point for: netbsd-10
Diff to: previous 1.117: preferred, colored
Changes since revision 1.117: +3 -3
lines
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.117: download - view: text, markup, annotated - select for diffs
Tue May 3 13:55:29 2022 UTC (2 years, 11 months ago) by hannken
Branches: MAIN
Diff to: previous 1.116: preferred, colored
Changes since revision 1.116: +7 -1
lines
Regen.
Revision 1.116: download - view: text, markup, annotated - select for diffs
Tue May 3 08:35:11 2022 UTC (2 years, 11 months ago) by hannken
Branches: MAIN
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +78 -4
lines
Regen.
Revision 1.115: download - view: text, markup, annotated - select for diffs
Wed Oct 20 03:13:14 2021 UTC (3 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +217 -6
lines
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.112.6.1: download - view: text, markup, annotated - select for diffs
Sun Aug 1 22:42:39 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-i2c-spi-conf
Diff to: previous 1.112: preferred, colored; next MAIN 1.113: preferred, colored
Changes since revision 1.112: +39 -4
lines
Sync with HEAD.
Revision 1.114: download - view: text, markup, annotated - select for diffs
Fri Jul 2 16:57:15 2021 UTC (3 years, 9 months ago) by dholland
Branches: 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
Diff to: previous 1.113: preferred, colored
Changes since revision 1.113: +3 -3
lines
Regen.
Revision 1.113: download - view: text, markup, annotated - select for diffs
Tue Jun 29 22:37:11 2021 UTC (3 years, 9 months ago) by dholland
Branches: MAIN
Diff to: previous 1.112: preferred, colored
Changes since revision 1.112: +39 -4
lines
Regen.
Revision 1.107.10.2: download - view: text, markup, annotated - select for diffs
Tue May 19 16:24:38 2020 UTC (4 years, 11 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-4-RELEASE,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE
Diff to: previous 1.107.10.1: preferred, colored; branchpoint 1.107: preferred, colored; next MAIN 1.108: preferred, colored
Changes since revision 1.107.10.1: +4 -4
lines
Pull up following revision(s) (requested by hannken in ticket #917):
sys/kern/vnode_if.src: revision 1.80
sys/kern/vnode_if.c: revision 1.112
VOP_STRATEGY() may still deadlock with devices.
Change FSTRANS from LAZY to NO.
Regen.
Revision 1.112: download - view: text, markup, annotated - select for diffs
Mon May 18 08:30:06 2020 UTC (4 years, 11 months ago) by hannken
Branches: 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
Diff to: previous 1.111: preferred, colored
Changes since revision 1.111: +4 -4
lines
Regen.
Revision 1.111: download - view: text, markup, annotated - select for diffs
Sat May 16 18:31:50 2020 UTC (4 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.110: preferred, colored
Changes since revision 1.110: +148 -2
lines
Add ACL support for FFS. From FreeBSD.
Revision 1.107.6.2: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:05:04 2020 UTC (5 years ago) by martin
Branches: phil-wifi
Diff to: previous 1.107.6.1: preferred, colored; branchpoint 1.107: preferred, colored; next MAIN 1.108: preferred, colored
Changes since revision 1.107.6.1: +7 -5
lines
Mostly merge changes from HEAD upto 20200411
Revision 1.107.6.1: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:08:52 2020 UTC (5 years ago) by martin
Branches: phil-wifi
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +4 -4
lines
Merge changes from current as of 20200406
Revision 1.109.2.2: download - view: text, markup, annotated - select for diffs
Sat Feb 29 20:21:03 2020 UTC (5 years, 1 month ago) by ad
Branches: ad-namecache
Diff to: previous 1.109.2.1: preferred, colored; branchpoint 1.109: preferred, colored; next MAIN 1.110: preferred, colored
Changes since revision 1.109.2.1: +3 -3
lines
Sync with head.
Revision 1.110: download - view: text, markup, annotated - select for diffs
Sun Feb 23 22:15:19 2020 UTC (5 years, 1 month ago) by ad
Branches: 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
Diff to: previous 1.109: preferred, colored
Changes since revision 1.109: +2 -2
lines
Regen.
Revision 1.109.2.1: download - view: text, markup, annotated - select for diffs
Sat Jan 18 17:14:13 2020 UTC (5 years, 3 months ago) by ad
Branches: ad-namecache
Diff to: previous 1.109: preferred, colored
Changes since revision 1.109: +2 -2
lines
Regen.
Revision 1.109: download - view: text, markup, annotated - select for diffs
Sun Dec 1 13:58:52 2019 UTC (5 years, 4 months ago) by ad
Branches: MAIN
CVS tags: ad-namecache-base2,
ad-namecache-base1,
ad-namecache-base
Branch point for: ad-namecache
Diff to: previous 1.108: preferred, colored
Changes since revision 1.108: +6 -6
lines
Regen for VOP_LOCK & LK_UPGRADE/LK_DOWNGRADE.
Revision 1.107.10.1: download - view: text, markup, annotated - select for diffs
Tue Oct 15 18:13:55 2019 UTC (5 years, 6 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +9 -7
lines
Regen (for ticket #307)
Revision 1.104.2.3: download - view: text, markup, annotated - select for diffs
Mon Oct 14 19:20:14 2019 UTC (5 years, 6 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE,
netbsd-8-2-RELEASE
Diff to: previous 1.104.2.2: preferred, colored; branchpoint 1.104: preferred, colored; next MAIN 1.105: preferred, colored
Changes since revision 1.104.2.2: +9 -7
lines
regen (for ticket #1405)
Revision 1.108: download - view: text, markup, annotated - select for diffs
Fri Oct 11 08:05:19 2019 UTC (5 years, 6 months ago) by hannken
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +9 -7
lines
Regen.
Revision 1.88.12.2: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:38:45 2017 UTC (7 years, 4 months ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.88.12.1: preferred, colored; branchpoint 1.88: preferred, colored; next MAIN 1.89: preferred, colored
Changes since revision 1.88.12.1: +319 -169
lines
update from HEAD
Revision 1.93.4.2: download - view: text, markup, annotated - select for diffs
Mon Aug 28 17:53:08 2017 UTC (7 years, 7 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.93.4.1: preferred, colored; branchpoint 1.93: preferred, colored; next MAIN 1.94: preferred, colored
Changes since revision 1.93.4.1: +316 -166
lines
Sync with HEAD
Revision 1.104.2.2: download - view: text, markup, annotated - select for diffs
Tue Jul 25 01:29:56 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-8
CVS tags: 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
Diff to: previous 1.104.2.1: preferred, colored; branchpoint 1.104: preferred, colored
Changes since revision 1.104.2.1: +6 -6
lines
regen for ticket 130
Revision 1.107: download - view: text, markup, annotated - select for diffs
Wed Jul 12 09:31:59 2017 UTC (7 years, 9 months ago) by hannken
Branches: MAIN
CVS tags: tls-maxphys-base-20171202,
phil-wifi-base,
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,
isaki-audio2-base,
isaki-audio2
Branch point for: phil-wifi,
netbsd-9
Diff to: previous 1.106: preferred, colored
Changes since revision 1.106: +3 -3
lines
Regen.
Revision 1.104.2.1: download - view: text, markup, annotated - select for diffs
Sun Jun 4 20:35:01 2017 UTC (7 years, 10 months ago) by bouyer
Branches: netbsd-8
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +300 -184
lines
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.106: download - view: text, markup, annotated - select for diffs
Sun Jun 4 08:05:42 2017 UTC (7 years, 10 months ago) by hannken
Branches: MAIN
Diff to: previous 1.105: preferred, colored
Changes since revision 1.105: +3 -3
lines
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.105: download - view: text, markup, annotated - select for diffs
Sun Jun 4 08:00:27 2017 UTC (7 years, 10 months ago) by hannken
Branches: MAIN
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +298 -182
lines
Regen.
Revision 1.104: download - view: text, markup, annotated - select for diffs
Fri May 26 14:21:54 2017 UTC (7 years, 10 months ago) by riastradh
Branches: MAIN
CVS tags: netbsd-8-base
Branch point for: netbsd-8
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +3 -3
lines
regen
Revision 1.103: download - view: text, markup, annotated - select for diffs
Wed Apr 26 03:04:24 2017 UTC (7 years, 11 months ago) by riastradh
Branches: MAIN
CVS tags: prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +11 -11
lines
regen
Revision 1.96.2.2: download - view: text, markup, annotated - select for diffs
Wed Apr 26 02:53:27 2017 UTC (7 years, 11 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.96.2.1: preferred, colored; branchpoint 1.96: preferred, colored; next MAIN 1.97: preferred, colored
Changes since revision 1.96.2.1: +7 -7
lines
Sync with HEAD
Revision 1.96.4.1: download - view: text, markup, annotated - select for diffs
Fri Apr 21 16:54:03 2017 UTC (8 years ago) by bouyer
Branches: bouyer-socketcan
Diff to: previous 1.96: preferred, colored; next MAIN 1.97: preferred, colored
Changes since revision 1.96: +41 -7
lines
Sync with HEAD
Revision 1.102: download - view: text, markup, annotated - select for diffs
Sun Apr 16 17:18:55 2017 UTC (8 years ago) by riastradh
Branches: MAIN
CVS tags: pgoyette-localcount-20170426,
bouyer-socketcan-base1
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +1 -1
lines
regen to confirm no functional change
Revision 1.101: download - view: text, markup, annotated - select for diffs
Sun Apr 16 16:49:26 2017 UTC (8 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +1 -1
lines
regen
Revision 1.100: download - view: text, markup, annotated - select for diffs
Sat Apr 15 23:21:46 2017 UTC (8 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +1 -1
lines
regen to confirm no functional change
Revision 1.99: download - view: text, markup, annotated - select for diffs
Tue Apr 11 14:30:33 2017 UTC (8 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +1 -1
lines
regen to confirm no functional change
Revision 1.98: download - view: text, markup, annotated - select for diffs
Tue Apr 11 14:26:13 2017 UTC (8 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +4 -4
lines
regen
Revision 1.96.2.1: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:57:48 2017 UTC (8 years, 1 month ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +38 -4
lines
Sync with HEAD
Revision 1.97: download - view: text, markup, annotated - select for diffs
Wed Feb 22 09:47:18 2017 UTC (8 years, 2 months ago) by hannken
Branches: MAIN
CVS tags: pgoyette-localcount-20170320,
jdolecek-ncq-base,
jdolecek-ncq
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +36 -2
lines
Regen.
Revision 1.96: download - view: text, markup, annotated - select for diffs
Tue Jan 26 23:30:10 2016 UTC (9 years, 2 months ago) by pooka
Branches: 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
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +0 -0
lines
regen vnode interfaces
Revision 1.93.4.1: download - view: text, markup, annotated - select for diffs
Sat Jun 6 14:40:22 2015 UTC (9 years, 10 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +8 -8
lines
Sync with HEAD
Revision 1.95: download - view: text, markup, annotated - select for diffs
Mon Apr 20 23:11:27 2015 UTC (10 years ago) by riastradh
Branches: MAIN
CVS tags: nick-nhusb-base-20151226,
nick-nhusb-base-20150921,
nick-nhusb-base-20150606
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +1 -1
lines
regen for good measure (no functional change)
Revision 1.94: download - view: text, markup, annotated - select for diffs
Mon Apr 20 23:03:08 2015 UTC (10 years ago) by riastradh
Branches: MAIN
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +6 -6
lines
Make VOP_LINK return directory still locked and referenced.
Ride 7.99.10 bump.
Revision 1.88.12.1: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:04:29 2014 UTC (10 years, 8 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +92 -26
lines
Rebase to HEAD as of a few days ago.
Revision 1.92.2.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 06:55:58 2014 UTC (10 years, 8 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.92: preferred, colored; next MAIN 1.93: preferred, colored
Changes since revision 1.92: +69 -3
lines
Rebase.
Revision 1.93: download - view: text, markup, annotated - select for diffs
Fri Jul 25 08:18:50 2014 UTC (10 years, 9 months ago) by dholland
Branches: 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
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +67 -1
lines
Regen for VOP_FALLOCATE/VOP_FDISCARD.
Revision 1.88.2.1: download - view: text, markup, annotated - select for diffs
Thu May 22 11:41:04 2014 UTC (10 years, 11 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.88: preferred, colored; next MAIN 1.89: preferred, colored
Changes since revision 1.88: +28 -28
lines
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.88.16.2: download - view: text, markup, annotated - select for diffs
Sun May 18 17:46:08 2014 UTC (10 years, 11 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.88.16.1: preferred, colored; branchpoint 1.88: preferred, colored; next MAIN 1.89: preferred, colored
Changes since revision 1.88.16.1: +28 -28
lines
sync with head
Revision 1.92: download - view: text, markup, annotated - select for diffs
Fri Feb 7 15:29:22 2014 UTC (11 years, 2 months ago) by hannken
Branches: 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
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +5 -5
lines
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.91: download - view: text, markup, annotated - select for diffs
Thu Jan 23 10:13:57 2014 UTC (11 years, 3 months ago) by hannken
Branches: MAIN
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +17 -17
lines
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.90: download - view: text, markup, annotated - select for diffs
Fri Jan 17 10:55:02 2014 UTC (11 years, 3 months ago) by hannken
Branches: MAIN
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +22 -22
lines
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.88.16.1: download - view: text, markup, annotated - select for diffs
Wed Aug 28 23:59:35 2013 UTC (11 years, 7 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +2 -2
lines
sync with head
Revision 1.88.24.1: download - view: text, markup, annotated - select for diffs
Tue Jul 23 21:07:36 2013 UTC (11 years, 9 months ago) by riastradh
Branches: riastradh-drm2
Diff to: previous 1.88: preferred, colored; next MAIN 1.89: preferred, colored
Changes since revision 1.88: +4 -4
lines
sync with HEAD
Revision 1.89: download - view: text, markup, annotated - select for diffs
Wed Jul 17 21:21:34 2013 UTC (11 years, 9 months ago) by pooka
Branches: MAIN
CVS tags: riastradh-drm2-base2,
riastradh-drm2-base1
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +2 -2
lines
regen
Revision 1.78.4.1: download - view: text, markup, annotated - select for diffs
Sun Jul 17 15:36:04 2011 UTC (13 years, 9 months ago) by riz
Branches: 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
Diff to: previous 1.78: preferred, colored; next MAIN 1.79: preferred, colored
Changes since revision 1.78: +4 -2
lines
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.88: download - view: text, markup, annotated - select for diffs
Mon Jul 11 08:27:38 2011 UTC (13 years, 9 months ago) by hannken
Branches: 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
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +11 -12
lines
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.87: download - view: text, markup, annotated - select for diffs
Mon Jul 4 08:07:31 2011 UTC (13 years, 9 months ago) by manu
Branches: MAIN
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +4 -2
lines
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.85.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 6 09:09:42 2011 UTC (13 years, 10 months ago) by jruoho
Branches: jruoho-x86intr
Diff to: previous 1.85: preferred, colored; next MAIN 1.86: preferred, colored
Changes since revision 1.85: +3 -3
lines
Sync with HEAD.
Revision 1.81.4.3: download - view: text, markup, annotated - select for diffs
Thu Apr 21 01:42:12 2011 UTC (14 years ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.81.4.2: preferred, colored; branchpoint 1.81: preferred, colored; next MAIN 1.82: preferred, colored
Changes since revision 1.81.4.2: +3 -3
lines
sync with head
Revision 1.86: download - view: text, markup, annotated - select for diffs
Sun Mar 6 17:08:36 2011 UTC (14 years, 1 month ago) by bouyer
Branches: MAIN
CVS tags: rmind-uvmplock-nbase,
rmind-uvmplock-base,
cherry-xenmp-base,
cherry-xenmp
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +1 -1
lines
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.85.4.1: download - view: text, markup, annotated - select for diffs
Thu Jan 20 14:24:58 2011 UTC (14 years, 3 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.85: preferred, colored; next MAIN 1.86: preferred, colored
Changes since revision 1.85: +1 -1
lines
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.81.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 17 06:47:35 2010 UTC (14 years, 8 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.81.2.1: preferred, colored; branchpoint 1.81: preferred, colored; next MAIN 1.82: preferred, colored
Changes since revision 1.81.2.1: +3 -5
lines
Sync with HEAD.
Revision 1.76.10.3: download - view: text, markup, annotated - select for diffs
Wed Aug 11 22:54:45 2010 UTC (14 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.76.10.2: preferred, colored; branchpoint 1.76: preferred, colored; next MAIN 1.77: preferred, colored
Changes since revision 1.76.10.2: +5 -58
lines
sync with head.
Revision 1.81.4.2: download - view: text, markup, annotated - select for diffs
Sat Jul 3 01:19:56 2010 UTC (14 years, 9 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.81.4.1: preferred, colored; branchpoint 1.81: preferred, colored
Changes since revision 1.81.4.1: +5 -7
lines
sync with head
Revision 1.85: download - view: text, markup, annotated - select for diffs
Thu Jun 24 13:03:12 2010 UTC (14 years, 10 months ago) by hannken
Branches: MAIN
CVS tags: yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
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
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +3 -5
lines
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.81.4.1: download - view: text, markup, annotated - select for diffs
Sun May 30 05:17:59 2010 UTC (14 years, 10 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +3 -54
lines
sync with head
Revision 1.81.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 30 14:44:14 2010 UTC (14 years, 11 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +1 -52
lines
Sync with HEAD.
Revision 1.84: download - view: text, markup, annotated - select for diffs
Wed Apr 14 14:00:04 2010 UTC (15 years ago) by pooka
Branches: MAIN
CVS tags: uebayasi-xip-base1
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +0 -0
lines
regen: rump vnodeif went on a diet
Revision 1.83: download - view: text, markup, annotated - select for diffs
Wed Apr 14 12:21:04 2010 UTC (15 years ago) by pooka
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +1 -4
lines
regenefactor for comment and whitespace changes
Revision 1.82: download - view: text, markup, annotated - select for diffs
Sat Apr 10 19:44:02 2010 UTC (15 years ago) by pooka
Branches: MAIN
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +1 -49
lines
regen: remove unused vdesc_transports
Revision 1.76.10.2: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:04:21 2010 UTC (15 years, 1 month ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.76.10.1: preferred, colored; branchpoint 1.76: preferred, colored
Changes since revision 1.76.10.1: +6 -343
lines
sync with head
Revision 1.81: download - view: text, markup, annotated - select for diffs
Tue Sep 29 11:54:52 2009 UTC (15 years, 6 months ago) by pooka
Branches: MAIN
CVS tags: yamt-nfs-mp-base9,
uebayasi-xip-base,
matt-premerge-20091211,
jym-xensuspend-nbase
Branch point for: uebayasi-xip,
rmind-uvmplock
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +4 -341
lines
regen: remove VNODE_LOCKDEBUG
Revision 1.76.10.1: download - view: text, markup, annotated - select for diffs
Mon May 4 08:13:50 2009 UTC (15 years, 11 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +4 -5
lines
sync with head.
Revision 1.78.2.1: download - view: text, markup, annotated - select for diffs
Mon Jan 19 13:19:40 2009 UTC (16 years, 3 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.78: preferred, colored; next MAIN 1.79: preferred, colored
Changes since revision 1.78: +4 -5
lines
Sync with HEAD.
Revision 1.76.6.2: download - view: text, markup, annotated - select for diffs
Sat Jan 17 13:29:21 2009 UTC (16 years, 3 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.76.6.1: preferred, colored; branchpoint 1.76: preferred, colored; next MAIN 1.77: preferred, colored
Changes since revision 1.76.6.1: +4 -5
lines
Sync with HEAD.
Revision 1.76.16.2: download - view: text, markup, annotated - select for diffs
Sat Dec 13 01:15:10 2008 UTC (16 years, 4 months ago) by haad
Branches: haad-dm
Diff to: previous 1.76.16.1: preferred, colored; branchpoint 1.76: preferred, colored; next MAIN 1.77: preferred, colored
Changes since revision 1.76.16.1: +4 -5
lines
Update haad-dm branch to haad-dm-base2.
Revision 1.80: download - view: text, markup, annotated - select for diffs
Mon Nov 17 08:59:33 2008 UTC (16 years, 5 months ago) by pooka
Branches: 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
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +1 -1
lines
reregen to get those most important rcsids right
Revision 1.79: download - view: text, markup, annotated - select for diffs
Mon Nov 17 08:56:02 2008 UTC (16 years, 5 months ago) by pooka
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +4 -5
lines
regen
Revision 1.76.16.1: download - view: text, markup, annotated - select for diffs
Sun Oct 19 22:17:29 2008 UTC (16 years, 6 months ago) by haad
Branches: haad-dm
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +2 -2
lines
Sync with HEAD.
Revision 1.78: download - view: text, markup, annotated - select for diffs
Thu Jul 31 08:42:01 2008 UTC (16 years, 8 months ago) by simonb
Branches: MAIN
CVS tags: wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
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,
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,
haad-dm-base1
Branch point for: nick-hppapmap,
netbsd-5
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +2 -3
lines
Remove needless white-space change that crept in through wapbl branch
merge.
Revision 1.77: download - view: text, markup, annotated - select for diffs
Thu Jul 31 05:38:05 2008 UTC (16 years, 8 months ago) by simonb
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +3 -2
lines
Merge the simonb-wapbl branch. From the original branch commit:
Add Wasabi System's WAPBL (Write Ahead Physical Block Logging)
journaling code. Originally written by Darrin B. Jewell while
at Wasabi and updated to -current by Antti Kantee, Andy Doran,
Greg Oster and Simon Burge.
OK'd by core@, releng@.
Revision 1.76.6.1: download - view: text, markup, annotated - select for diffs
Wed Jul 2 19:08:20 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +3 -2
lines
Sync with HEAD.
Revision 1.76.14.1: download - view: text, markup, annotated - select for diffs
Tue Jun 10 14:51:22 2008 UTC (16 years, 10 months ago) by simonb
Branches: simonb-wapbl
Diff to: previous 1.76: preferred, colored; next MAIN 1.77: preferred, colored
Changes since revision 1.76: +3 -2
lines
Initial commit of Wasabi System's WAPBL (Write Ahead Physical Block
Logging) journaling code. Originally written by Darrin B. Jewell
while at Wasabi and updated to -current by Antti Kantee, Andy Doran,
Greg Oster and Simon Burge.
Still a number of issues - look in doc/BRANCHES for "simonb-wapbl"
for more info.
Revision 1.70.6.4: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:05:02 2008 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
Diff to: previous 1.70.6.3: preferred, colored; branchpoint 1.70: preferred, colored; next MAIN 1.71: preferred, colored
Changes since revision 1.70.6.3: +3 -39
lines
sync with HEAD
Revision 1.71.4.3: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:06:48 2008 UTC (17 years, 2 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.71.4.2: preferred, colored; branchpoint 1.71: preferred, colored; next MAIN 1.72: preferred, colored
Changes since revision 1.71.4.2: +7 -41
lines
Sync with HEAD.
Revision 1.53.4.8: download - view: text, markup, annotated - select for diffs
Mon Feb 4 09:24:25 2008 UTC (17 years, 2 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.53.4.7: preferred, colored; branchpoint 1.53: preferred, colored; next MAIN 1.54: preferred, colored
Changes since revision 1.53.4.7: +3 -39
lines
sync with head.
Revision 1.76: download - view: text, markup, annotated - select for diffs
Fri Jan 25 14:32:46 2008 UTC (17 years, 3 months ago) by ad
Branches: 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-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
simonb-wapbl-nbase,
simonb-wapbl-base,
nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-nbase,
hpcarm-cleanup-base,
ad-socklock-base1
Branch point for: yamt-nfs-mp,
simonb-wapbl,
mjf-devfs2,
haad-dm
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +1 -37
lines
Regen.
Revision 1.53.4.7: download - view: text, markup, annotated - select for diffs
Mon Jan 21 09:46:34 2008 UTC (17 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.53.4.6: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.4.6: +7 -5
lines
sync with head
Revision 1.70.6.3: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:56:33 2008 UTC (17 years, 3 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.70.6.2: preferred, colored; branchpoint 1.70: preferred, colored
Changes since revision 1.70.6.2: +23 -108
lines
sync with HEAD
Revision 1.74.6.1: download - view: text, markup, annotated - select for diffs
Wed Jan 2 21:56:27 2008 UTC (17 years, 3 months ago) by bouyer
Branches: bouyer-xeni386
CVS tags: bouyer-xeni386-merge1
Diff to: previous 1.74: preferred, colored; next MAIN 1.75: preferred, colored
Changes since revision 1.74: +5 -3
lines
Sync with HEAD
Revision 1.75: download - view: text, markup, annotated - select for diffs
Wed Jan 2 11:51:17 2008 UTC (17 years, 3 months ago) by ad
Branches: MAIN
CVS tags: matt-armv6-base,
bouyer-xeni386-nbase,
bouyer-xeni386-base
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +5 -3
lines
Regen.
Revision 1.74.2.2: download - view: text, markup, annotated - select for diffs
Fri Dec 28 21:43:09 2007 UTC (17 years, 3 months ago) by ad
Branches: vmlocking2
Diff to: previous 1.74.2.1: preferred, colored; branchpoint 1.74: preferred, colored; next MAIN 1.75: preferred, colored
Changes since revision 1.74.2.1: +1 -1
lines
Make rump build.
Revision 1.71.4.2: download - view: text, markup, annotated - select for diffs
Sat Dec 8 18:20:46 2007 UTC (17 years, 4 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.71.4.1: preferred, colored; branchpoint 1.71: preferred, colored
Changes since revision 1.71.4.1: +22 -109
lines
Sync with HEAD.
Revision 1.53.4.6: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:33:26 2007 UTC (17 years, 4 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.53.4.5: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.4.5: +22 -109
lines
sync with head
Revision 1.74.2.1: download - view: text, markup, annotated - select for diffs
Tue Dec 4 13:03:23 2007 UTC (17 years, 4 months ago) by ad
Branches: vmlocking2
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +3 -1
lines
Pull the vmlocking changes into a new branch.
Revision 1.70.4.3: download - view: text, markup, annotated - select for diffs
Tue Nov 27 19:38:20 2007 UTC (17 years, 4 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.70.4.2: preferred, colored; branchpoint 1.70: preferred, colored; next MAIN 1.71: preferred, colored
Changes since revision 1.70.4.2: +22 -109
lines
Sync with HEAD. amd64 Xen support needs testing.
Revision 1.74: download - view: text, markup, annotated - select for diffs
Mon Nov 26 19:03:30 2007 UTC (17 years, 4 months ago) by pooka
Branches: 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
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +2 -2
lines
regen: remove struct lwp as a parameter to VOPs
Revision 1.73: download - view: text, markup, annotated - select for diffs
Mon Nov 26 19:02:10 2007 UTC (17 years, 4 months ago) by pooka
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +18 -105
lines
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.71.4.1: download - view: text, markup, annotated - select for diffs
Mon Nov 19 00:49:00 2007 UTC (17 years, 5 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +346 -204
lines
Sync with HEAD.
Revision 1.53.4.5: download - view: text, markup, annotated - select for diffs
Thu Nov 15 11:44:58 2007 UTC (17 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.53.4.4: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.4.4: +346 -204
lines
sync with head.
Revision 1.71.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 13 16:02:41 2007 UTC (17 years, 5 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.71: preferred, colored; next MAIN 1.72: preferred, colored
Changes since revision 1.71: +344 -202
lines
Sync with HEAD
Revision 1.70.4.2: download - view: text, markup, annotated - select for diffs
Sun Nov 11 16:48:20 2007 UTC (17 years, 5 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.70.4.1: preferred, colored; branchpoint 1.70: preferred, colored
Changes since revision 1.70.4.1: +346 -204
lines
Sync with HEAD.
Revision 1.70.6.2: download - view: text, markup, annotated - select for diffs
Thu Nov 8 11:00:11 2007 UTC (17 years, 5 months ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.70.6.1: preferred, colored; branchpoint 1.70: preferred, colored
Changes since revision 1.70.6.1: +346 -204
lines
sync with -HEAD
Revision 1.70.6.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:32:52 2007 UTC (17 years, 5 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +42 -42
lines
sync with HEAD
Revision 1.72: download - view: text, markup, annotated - select for diffs
Tue Nov 6 22:00:00 2007 UTC (17 years, 5 months ago) by ad
Branches: MAIN
CVS tags: bouyer-xenamd64-base2,
bouyer-xenamd64-base
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +344 -202
lines
Regen.
Revision 1.53.4.4: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:35:43 2007 UTC (17 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.53.4.3: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.4.3: +42 -42
lines
sync with head.
Revision 1.70.4.1: download - view: text, markup, annotated - select for diffs
Fri Oct 26 15:48:48 2007 UTC (17 years, 6 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +42 -42
lines
Sync with HEAD.
Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.
Revision 1.70.8.1: download - view: text, markup, annotated - select for diffs
Sun Oct 14 11:48:51 2007 UTC (17 years, 6 months ago) by yamt
Branches: yamt-x86pmap
Diff to: previous 1.70: preferred, colored; next MAIN 1.71: preferred, colored
Changes since revision 1.70: +42 -42
lines
sync with head.
Revision 1.71: download - view: text, markup, annotated - select for diffs
Wed Oct 10 20:42:28 2007 UTC (17 years, 6 months ago) by ad
Branches: MAIN
CVS tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
vmlocking-base,
jmcneill-base
Branch point for: mjf-devfs,
bouyer-xenamd64
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +40 -40
lines
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.67.8.7: download - view: text, markup, annotated - select for diffs
Sun Sep 16 19:04:32 2007 UTC (17 years, 7 months ago) by ad
Branches: vmlocking
Diff to: previous 1.67.8.6: preferred, colored; branchpoint 1.67: preferred, colored; next MAIN 1.68: preferred, colored
Changes since revision 1.67.8.6: +4 -4
lines
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.53.4.3: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:41:25 2007 UTC (17 years, 7 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.53.4.2: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.4.2: +223 -54
lines
sync with head.
Revision 1.67.8.6: download - view: text, markup, annotated - select for diffs
Tue Aug 21 18:05:41 2007 UTC (17 years, 8 months ago) by ad
Branches: vmlocking
Diff to: previous 1.67.8.5: preferred, colored; branchpoint 1.67: preferred, colored
Changes since revision 1.67.8.5: +194 -98
lines
Add a per-mount flag that specifies whether the underlying file system code
is MP safe, and populate a per-vnode flag from this at vnode creation time.
If the file system is MP safe, do not acquire kernel_lock in the VOP wrappers.
Revision 1.67.8.5: download - view: text, markup, annotated - select for diffs
Mon Aug 20 21:27:46 2007 UTC (17 years, 8 months ago) by ad
Branches: vmlocking
Diff to: previous 1.67.8.4: preferred, colored; branchpoint 1.67: preferred, colored
Changes since revision 1.67.8.4: +70 -53
lines
Sync with HEAD.
Revision 1.68.4.1: download - view: text, markup, annotated - select for diffs
Wed Aug 15 13:49:25 2007 UTC (17 years, 8 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.68: preferred, colored; next MAIN 1.69: preferred, colored
Changes since revision 1.68: +223 -54
lines
Sync with HEAD.
Revision 1.70.10.2: download - view: text, markup, annotated - select for diffs
Fri Jul 27 08:27:39 2007 UTC (17 years, 9 months ago) by pooka
Branches: matt-mips64
Diff to: previous 1.70.10.1: preferred, colored; branchpoint 1.70: preferred, colored; next MAIN 1.71: preferred, colored
Changes since revision 1.70.10.1: +2061 -0
lines
regen: VOP_MMAP fflags -> prot
Revision 1.70.10.1
Fri Jul 27 08:27:38 2007 UTC (17 years, 9 months ago) by pooka
Branches: matt-mips64
FILE REMOVED
Changes since revision 1.70: +0 -2061
lines
file vnode_if.c was added on branch matt-mips64 on 2007-07-27 08:27:39 +0000
Revision 1.70: download - view: text, markup, annotated - select for diffs
Fri Jul 27 08:27:38 2007 UTC (17 years, 9 months ago) by pooka
Branches: MAIN
CVS tags: yamt-x86pmap-base2,
yamt-x86pmap-base,
nick-csl-alignment-base5,
matt-mips64-base,
hpcarm-cleanup
Branch point for: yamt-x86pmap,
matt-mips64,
matt-armv6,
jmcneill-pm
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +3 -3
lines
regen: VOP_MMAP fflags -> prot
Revision 1.69: download - view: text, markup, annotated - select for diffs
Sun Jul 22 21:27:49 2007 UTC (17 years, 9 months ago) by pooka
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +219 -50
lines
regen: assert that vnode creating operations set the size
Revision 1.67.8.4: download - view: text, markup, annotated - select for diffs
Sun Jul 15 15:51:10 2007 UTC (17 years, 9 months ago) by ad
Branches: vmlocking
Diff to: previous 1.67.8.3: preferred, colored; branchpoint 1.67: preferred, colored
Changes since revision 1.67.8.3: +4 -2
lines
Revert unintentionally committed change.
Revision 1.67.8.3: download - view: text, markup, annotated - select for diffs
Sun Jul 15 13:27:48 2007 UTC (17 years, 9 months ago) by ad
Branches: vmlocking
Diff to: previous 1.67.8.2: preferred, colored; branchpoint 1.67: preferred, colored
Changes since revision 1.67.8.2: +7 -2
lines
Sync with head.
Revision 1.67.10.1: download - view: text, markup, annotated - select for diffs
Wed Jul 11 20:10:26 2007 UTC (17 years, 9 months ago) by mjf
Branches: mjf-ufs-trans
Diff to: previous 1.67: preferred, colored; next MAIN 1.68: preferred, colored
Changes since revision 1.67: +3 -3
lines
Sync with head.
Revision 1.67.8.2: download - view: text, markup, annotated - select for diffs
Sun Jun 17 21:31:36 2007 UTC (17 years, 10 months ago) by ad
Branches: vmlocking
Diff to: previous 1.67.8.1: preferred, colored; branchpoint 1.67: preferred, colored
Changes since revision 1.67.8.1: +43 -42
lines
- 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.67.4.1: download - view: text, markup, annotated - select for diffs
Sun Apr 15 16:03:54 2007 UTC (18 years ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.67: preferred, colored; next MAIN 1.68: preferred, colored
Changes since revision 1.67: +3 -3
lines
sync with head.
Revision 1.68: download - view: text, markup, annotated - select for diffs
Mon Apr 9 15:00:42 2007 UTC (18 years ago) by gdt
Branches: 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
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +1 -1
lines
regen
(changes in RCS Ids only)
Revision 1.67.8.1: download - view: text, markup, annotated - select for diffs
Wed Mar 21 20:09:39 2007 UTC (18 years, 1 month ago) by ad
Branches: vmlocking
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +243 -53
lines
Acquire the kernel lock in the VOP_* wrappers and the socket ops.
Revision 1.66.4.1: download - view: text, markup, annotated - select for diffs
Fri Jan 12 01:04:08 2007 UTC (18 years, 3 months ago) by ad
Branches: newlock2
Diff to: previous 1.66: preferred, colored; next MAIN 1.67: preferred, colored
Changes since revision 1.66: +51 -51
lines
Sync with head.
Revision 1.53.4.2: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:50:07 2006 UTC (18 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.53.4.1: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.4.1: +52 -52
lines
sync with head.
Revision 1.66.6.1: download - view: text, markup, annotated - select for diffs
Sun Dec 10 07:18:46 2006 UTC (18 years, 4 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.66: preferred, colored; next MAIN 1.67: preferred, colored
Changes since revision 1.66: +51 -51
lines
sync with head.
Revision 1.67: download - view: text, markup, annotated - select for diffs
Thu Nov 30 21:07:36 2006 UTC (18 years, 4 months ago) by pooka
Branches: 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
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +49 -49
lines
regen for VOP_FOO_DESCOFFSET change in vnode_if.sh
Revision 1.63.4.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:57:17 2006 UTC (18 years, 7 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63: +28 -28
lines
sync with head
Revision 1.63.8.2: download - view: text, markup, annotated - select for diffs
Fri Aug 11 15:45:47 2006 UTC (18 years, 8 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.63.8.1: preferred, colored; branchpoint 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63.8.1: +4 -4
lines
sync with head
Revision 1.65.4.1: download - view: text, markup, annotated - select for diffs
Thu Jul 13 17:49:51 2006 UTC (18 years, 9 months ago) by gdamore
Branches: gdamore-uart
Diff to: previous 1.65: preferred, colored; next MAIN 1.66: preferred, colored
Changes since revision 1.65: +4 -4
lines
Merge from HEAD.
Revision 1.66: download - view: text, markup, annotated - select for diffs
Thu Jul 13 12:00:25 2006 UTC (18 years, 9 months ago) by martin
Branches: 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
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +2 -2
lines
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.53.4.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 15:09:39 2006 UTC (18 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +238 -687
lines
sync with head.
Revision 1.63.6.1: download - view: text, markup, annotated - select for diffs
Thu Jun 1 22:38:11 2006 UTC (18 years, 10 months ago) by kardel
Branches: simonb-timecounters
CVS tags: simonb-timcounters-final
Diff to: previous 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63: +28 -28
lines
Sync with head.
Revision 1.63.12.1: download - view: text, markup, annotated - select for diffs
Wed May 24 15:50:42 2006 UTC (18 years, 11 months ago) by tron
Branches: peter-altq
Diff to: previous 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63: +26 -26
lines
Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
Revision 1.63.8.1: download - view: text, markup, annotated - select for diffs
Wed May 24 10:58:42 2006 UTC (18 years, 11 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +28 -28
lines
sync with head.
Revision 1.65: download - view: text, markup, annotated - select for diffs
Sun May 14 21:15:12 2006 UTC (18 years, 11 months ago) by elad
Branches: 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
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +23 -23
lines
integrate kauth.
Revision 1.63.10.2: download - view: text, markup, annotated - select for diffs
Thu May 11 23:30:15 2006 UTC (18 years, 11 months ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.63.10.1: preferred, colored; branchpoint 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63.10.1: +5 -5
lines
sync with head
Revision 1.64: download - view: text, markup, annotated - select for diffs
Thu May 4 16:49:54 2006 UTC (18 years, 11 months ago) by perseant
Branches: MAIN
CVS tags: elad-kernelauth-base
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +4 -4
lines
Regen after making VOP_FCNTL take an unlocked vnode.
Revision 1.63.10.1: download - view: text, markup, annotated - select for diffs
Wed Mar 8 00:57:31 2006 UTC (19 years, 1 month ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +23 -23
lines
Regen for kernel authorization KPI.
Revision 1.63: download - view: text, markup, annotated - select for diffs
Fri Dec 30 11:19:26 2005 UTC (19 years, 3 months ago) by yamt
Branches: 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
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +1 -7
lines
regen.
Revision 1.62: download - view: text, markup, annotated - select for diffs
Sun Dec 11 13:02:20 2005 UTC (19 years, 4 months ago) by skrll
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +4 -4
lines
Get correct Ids after ktrace-lwp merge.
Revision 1.61: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:24:30 2005 UTC (19 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +59 -59
lines
merge ktrace-lwp.
Revision 1.44.2.9: download - view: text, markup, annotated - select for diffs
Sun Dec 11 10:29:12 2005 UTC (19 years, 4 months ago) by christos
Branches: ktrace-lwp
Diff to: previous 1.44.2.8: preferred, colored; next MAIN 1.45: preferred, colored
Changes since revision 1.44.2.8: +186 -335
lines
Sync with head.
Revision 1.60: download - view: text, markup, annotated - select for diffs
Wed Dec 7 00:46:23 2005 UTC (19 years, 4 months ago) by thorpej
Branches: MAIN
CVS tags: ktrace-lwp-base
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +184 -232
lines
Regen: Generate ANSI function decls.
Revision 1.59: download - view: text, markup, annotated - select for diffs
Wed Dec 7 00:42:26 2005 UTC (19 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +0 -101
lines
Regen: VNODE_OP_NOINLINE is gone.
Revision 1.58: download - view: text, markup, annotated - select for diffs
Tue Nov 29 23:02:22 2005 UTC (19 years, 4 months ago) by yamt
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +1 -1
lines
regen to revert the previous.
Revision 1.57: download - view: text, markup, annotated - select for diffs
Tue Nov 29 22:52:02 2005 UTC (19 years, 4 months ago) by yamt
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +1 -1
lines
merge yamt-readahead branch.
Revision 1.56.2.2: download - view: text, markup, annotated - select for diffs
Fri Nov 18 08:44:54 2005 UTC (19 years, 5 months ago) by yamt
Branches: yamt-readahead
CVS tags: yamt-readahead-pervnode
Diff to: previous 1.56.2.1: preferred, colored; branchpoint 1.56: preferred, colored; next MAIN 1.57: preferred, colored
Changes since revision 1.56.2.1: +1 -3
lines
- associate read-ahead context to vnode, rather than file.
- revert VOP_READ prototype.
Revision 1.56.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 15 03:41:23 2005 UTC (19 years, 5 months ago) by yamt
Branches: yamt-readahead
CVS tags: yamt-readahead-perfile
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +4 -2
lines
regen.
Revision 1.44.2.8: download - view: text, markup, annotated - select for diffs
Thu Nov 10 14:09:46 2005 UTC (19 years, 5 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.44.2.7: preferred, colored
Changes since revision 1.44.2.7: +13 -307
lines
Sync with HEAD. Here we go again...
Revision 1.56: download - view: text, markup, annotated - select for diffs
Wed Nov 2 12:41:50 2005 UTC (19 years, 5 months ago) by yamt
Branches: MAIN
CVS tags: yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base
Branch point for: yamt-readahead
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +3 -3
lines
regen.
Revision 1.55: download - view: text, markup, annotated - select for diffs
Wed Nov 2 12:38:59 2005 UTC (19 years, 5 months ago) by yamt
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +13 -307
lines
merge yamt-vop branch. remove following VOPs.
VOP_BLKATOFF
VOP_VALLOC
VOP_BALLOC
VOP_REALLOCBLKS
VOP_VFREE
VOP_TRUNCATE
VOP_UPDATE
Revision 1.54.2.1: download - view: text, markup, annotated - select for diffs
Thu Oct 20 01:35:24 2005 UTC (19 years, 6 months ago) by yamt
Branches: yamt-vop
Diff to: previous 1.54: preferred, colored; next MAIN 1.55: preferred, colored
Changes since revision 1.54: +11 -305
lines
regen.
Revision 1.54: download - view: text, markup, annotated - select for diffs
Sat Oct 8 06:15:30 2005 UTC (19 years, 6 months ago) by isaki
Branches: MAIN
CVS tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
thorpej-vnode-attr-base,
thorpej-vnode-attr
Branch point for: yamt-vop
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +1 -1
lines
regen.
Revision 1.51.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 29 11:29:25 2005 UTC (19 years, 11 months ago) by kent
Branches: kent-audio2
Diff to: previous 1.51: preferred, colored; next MAIN 1.52: preferred, colored
Changes since revision 1.51: +5 -5
lines
sync with -current
Revision 1.51.4.1: download - view: text, markup, annotated - select for diffs
Sat Mar 19 08:36:12 2005 UTC (20 years, 1 month ago) by yamt
Branches: yamt-km
Diff to: previous 1.51: preferred, colored; next MAIN 1.52: preferred, colored
Changes since revision 1.51: +5 -5
lines
sync with head. xen and whitespace. xen part is not finished.
Revision 1.44.2.7: download - view: text, markup, annotated - select for diffs
Fri Mar 4 16:52:03 2005 UTC (20 years, 1 month ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.44.2.6: preferred, colored
Changes since revision 1.44.2.6: +5 -5
lines
Sync with HEAD.
Hi Perry!
Revision 1.53: download - view: text, markup, annotated - select for diffs
Sat Feb 26 22:15:10 2005 UTC (20 years, 1 month ago) by perry
Branches: 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
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +2 -2
lines
regen
Revision 1.52: download - view: text, markup, annotated - select for diffs
Sat Feb 26 22:10:31 2005 UTC (20 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +3 -3
lines
regen
Revision 1.44.2.6: download - view: text, markup, annotated - select for diffs
Mon Jan 17 19:32:26 2005 UTC (20 years, 3 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.44.2.5: preferred, colored
Changes since revision 1.44.2.5: +270 -4
lines
Sync with HEAD.
Revision 1.51: download - view: text, markup, annotated - select for diffs
Sun Jan 2 17:46:41 2005 UTC (20 years, 3 months ago) by thorpej
Branches: MAIN
CVS tags: yamt-km-base2,
yamt-km-base,
kent-audio1-beforemerge
Branch point for: yamt-km,
kent-audio2
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +267 -1
lines
Regen for extended attribute VOPs.
Revision 1.44.2.5: download - view: text, markup, annotated - select for diffs
Fri Sep 24 10:53:43 2004 UTC (20 years, 7 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.44.2.4: preferred, colored
Changes since revision 1.44.2.4: +355 -4
lines
Sync with HEAD.
Revision 1.44.2.4: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:35:19 2004 UTC (20 years, 7 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.44.2.3: preferred, colored
Changes since revision 1.44.2.3: +58 -58
lines
Fix the sync with head I botched.
Revision 1.50: download - view: text, markup, annotated - select for diffs
Tue Sep 21 03:11:53 2004 UTC (20 years, 7 months ago) by thorpej
Branches: MAIN
CVS tags: kent-audio1-base,
kent-audio1
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +353 -2
lines
Regenerate for VNODE_LOCKDEBUG changes.
Revision 1.44.2.3: download - view: text, markup, annotated - select for diffs
Sat Sep 18 14:53:04 2004 UTC (20 years, 7 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.44.2.2: preferred, colored
Changes since revision 1.44.2.2: +59 -59
lines
Sync with HEAD.
Revision 1.49: download - view: text, markup, annotated - select for diffs
Fri Sep 10 09:38:17 2004 UTC (20 years, 7 months ago) by yamt
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +1 -1
lines
regen.
Revision 1.44.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:53:03 2004 UTC (20 years, 8 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.44.2.1: preferred, colored
Changes since revision 1.44.2.1: +68 -69
lines
Sync with HEAD
Revision 1.48: download - view: text, markup, annotated - select for diffs
Thu May 27 12:50:35 2004 UTC (20 years, 11 months ago) by yamt
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +1 -1
lines
regen.
Revision 1.47: download - view: text, markup, annotated - select for diffs
Sun Jan 25 18:06:48 2004 UTC (21 years, 3 months ago) by hannken
Branches: 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
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -2
lines
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.46: download - view: text, markup, annotated - select for diffs
Sun Jan 25 18:02:04 2004 UTC (21 years, 3 months ago) by hannken
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +67 -64
lines
Make VOP_STRATEGY(bp) a real VOP as discussed on tech-kern.
Revision 1.45: download - view: text, markup, annotated - select for diffs
Thu Aug 7 16:32:05 2003 UTC (21 years, 8 months ago) by agc
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +3 -7
lines
Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22364, verified by myself.
Revision 1.44.2.1: download - view: text, markup, annotated - select for diffs
Wed Jul 2 15:26:48 2003 UTC (21 years, 9 months ago) by darrenr
Branches: ktrace-lwp
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +58 -58
lines
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.44: download - view: text, markup, annotated - select for diffs
Sun Jun 29 22:31:36 2003 UTC (21 years, 9 months ago) by fvdl
Branches: MAIN
Branch point for: ktrace-lwp
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +56 -56
lines
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
and need to be examined and discussed more.
Revision 1.43: download - view: text, markup, annotated - select for diffs
Sat Jun 28 14:22:00 2003 UTC (21 years, 9 months ago) by darrenr
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +58 -58
lines
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.42: download - view: text, markup, annotated - select for diffs
Thu Apr 10 20:38:12 2003 UTC (22 years ago) by jdolecek
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +4 -4
lines
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.41: download - view: text, markup, annotated - select for diffs
Fri Mar 21 23:11:27 2003 UTC (22 years, 1 month ago) by dsl
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +5 -5
lines
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.5: download - view: text, markup, annotated - select for diffs
Mon Nov 11 22:14:16 2002 UTC (22 years, 5 months ago) by nathanw
Branches: nathanw_sa
CVS tags: nathanw_sa_end
Diff to: previous 1.33.2.4: preferred, colored; branchpoint 1.33: preferred, colored; next MAIN 1.34: preferred, colored
Changes since revision 1.33.2.4: +65 -35
lines
Catch up to -current
Revision 1.40: download - view: text, markup, annotated - select for diffs
Wed Oct 23 09:16:46 2002 UTC (22 years, 6 months ago) by jdolecek
Branches: 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
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +64 -34
lines
regen: kqueue branch merge, addition of VOP_KQFILTER()
Revision 1.36.2.2: download - view: text, markup, annotated - select for diffs
Thu Jan 10 20:00:23 2002 UTC (23 years, 3 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.36.2.1: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36.2.1: +21 -87
lines
Sync kqueue branch with -current.
Revision 1.33.2.4: download - view: text, markup, annotated - select for diffs
Wed Nov 14 19:16:50 2001 UTC (23 years, 5 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.33.2.3: preferred, colored; branchpoint 1.33: preferred, colored
Changes since revision 1.33.2.3: +6 -2
lines
Catch up to -current.
Revision 1.38.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 12 21:19:03 2001 UTC (23 years, 5 months ago) by thorpej
Branches: thorpej-mips-cache
Diff to: previous 1.38: preferred, colored; next MAIN 1.39: preferred, colored
Changes since revision 1.38: +6 -2
lines
Sync the thorpej-mips-cache branch with -current.
Revision 1.39: download - view: text, markup, annotated - select for diffs
Mon Nov 12 14:50:28 2001 UTC (23 years, 5 months ago) by lukem
Branches: 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
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +5 -1
lines
regen (for RCSID)
Revision 1.37.2.3: download - view: text, markup, annotated - select for diffs
Mon Oct 1 12:47:02 2001 UTC (23 years, 6 months ago) by fvdl
Branches: thorpej-devvp
Diff to: previous 1.37.2.2: preferred, colored; branchpoint 1.37: preferred, colored; next MAIN 1.38: preferred, colored
Changes since revision 1.37.2.2: +14 -84
lines
Catch up with -current.
Revision 1.33.2.3: download - view: text, markup, annotated - select for diffs
Fri Sep 21 22:36:29 2001 UTC (23 years, 7 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.33.2.2: preferred, colored; branchpoint 1.33: preferred, colored
Changes since revision 1.33.2.2: +15 -85
lines
Catch up to -current.
Revision 1.37.2.2: download - view: text, markup, annotated - select for diffs
Tue Sep 18 19:21:19 2001 UTC (23 years, 7 months ago) by fvdl
Branches: thorpej-devvp
Diff to: previous 1.37.2.1: preferred, colored; branchpoint 1.37: preferred, colored
Changes since revision 1.37.2.1: +1 -1
lines
Do that regen thang.
Revision 1.37.2.1: download - view: text, markup, annotated - select for diffs
Tue Sep 18 19:13:55 2001 UTC (23 years, 7 months ago) by fvdl
Branches: thorpej-devvp
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +5 -3
lines
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.38: download - view: text, markup, annotated - select for diffs
Sat Sep 15 20:37:36 2001 UTC (23 years, 7 months ago) by chs
Branches: MAIN
CVS tags: thorpej-devvp-base3,
thorpej-devvp-base2,
post-chs-ubcperf
Branch point for: thorpej-mips-cache
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +14 -84
lines
regen
Revision 1.33.2.2: download - view: text, markup, annotated - select for diffs
Fri Aug 24 00:11:47 2001 UTC (23 years, 8 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.33.2.1: preferred, colored; branchpoint 1.33: preferred, colored
Changes since revision 1.33.2.1: +3 -3
lines
Catch up with -current.
Revision 1.37: download - view: text, markup, annotated - select for diffs
Tue Jul 24 15:39:31 2001 UTC (23 years, 9 months ago) by assar
Branches: MAIN
CVS tags: thorpej-devvp-base,
pre-chs-ubcperf
Branch point for: thorpej-devvp
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -2
lines
change vop_symlink and vop_mknod to return vpp (the created node)
refed, so that the caller can actually use it. update callers and
file systems that implement these vnode operations
Revision 1.36.2.1: download - view: text, markup, annotated - select for diffs
Tue Jul 10 13:50:30 2001 UTC (23 years, 9 months ago) by lukem
Branches: kqueue
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +66 -36
lines
regen for vop_kqfilter
Revision 1.33.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 21 20:07:13 2001 UTC (23 years, 10 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +6 -6
lines
Catch up to -current.
Revision 1.36: download - view: text, markup, annotated - select for diffs
Sat May 26 21:34:04 2001 UTC (23 years, 11 months ago) by chs
Branches: MAIN
Branch point for: kqueue
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +2 -2
lines
regen.
Revision 1.35: download - view: text, markup, annotated - select for diffs
Sat May 26 21:27:18 2001 UTC (23 years, 11 months ago) by chs
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +3 -3
lines
replace vm_page_t with struct vm_page *.
Revision 1.34: download - view: text, markup, annotated - select for diffs
Mon May 7 08:48:07 2001 UTC (23 years, 11 months ago) by lukem
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -2
lines
regen from vnode_if.sh rev 1.29
Revision 1.18.2.4: download - view: text, markup, annotated - select for diffs
Sun Feb 11 19:16:51 2001 UTC (24 years, 2 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.18.2.3: preferred, colored; branchpoint 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18.2.3: +203 -201
lines
Sync with HEAD.
Revision 1.33: download - view: text, markup, annotated - select for diffs
Mon Jan 22 09:53:31 2001 UTC (24 years, 3 months ago) by jdolecek
Branches: MAIN
CVS tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base
Branch point for: nathanw_sa
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +154 -152
lines
regen: *_desc are generated correctly, new VNODE_OPS_COUNT,
structures constified
Revision 1.32: download - view: text, markup, annotated - select for diffs
Fri Jan 19 12:24:09 2001 UTC (24 years, 3 months ago) by martin
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +53 -53
lines
Regen after de-const-ing.
Revision 1.31: download - view: text, markup, annotated - select for diffs
Thu Jan 18 20:28:19 2001 UTC (24 years, 3 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +102 -102
lines
constify
Revision 1.18.2.3: download - view: text, markup, annotated - select for diffs
Fri Jan 5 17:36:42 2001 UTC (24 years, 3 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.18.2.2: preferred, colored; branchpoint 1.18: preferred, colored
Changes since revision 1.18.2.2: +3 -1
lines
Sync with HEAD
Revision 1.30: download - view: text, markup, annotated - select for diffs
Fri Dec 22 20:07:09 2000 UTC (24 years, 4 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +1 -1
lines
Regen.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Fri Dec 22 15:10:38 2000 UTC (24 years, 4 months ago) by mrg
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +4 -2
lines
regen
Revision 1.28: download - view: text, markup, annotated - select for diffs
Fri Dec 22 14:59:40 2000 UTC (24 years, 4 months ago) by mrg
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +2 -2
lines
regen
Revision 1.27: download - view: text, markup, annotated - select for diffs
Fri Dec 22 14:45:50 2000 UTC (24 years, 4 months ago) by mrg
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -2
lines
avoid redefinition of VNODE_OP_NOINLINE
Revision 1.22.4.1: download - view: text, markup, annotated - select for diffs
Thu Dec 14 23:56:27 2000 UTC (24 years, 4 months ago) by he
Branches: netbsd-1-5
CVS tags: netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001
Diff to: previous 1.22: preferred, colored; next MAIN 1.23: preferred, colored
Changes since revision 1.22: +1 -1
lines
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 - view: text, markup, annotated - select for diffs
Fri Dec 8 09:14:03 2000 UTC (24 years, 4 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.18.2.1: preferred, colored; branchpoint 1.18: preferred, colored
Changes since revision 1.18.2.1: +148 -2
lines
Sync with HEAD.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Mon Nov 27 09:04:59 2000 UTC (24 years, 4 months ago) by chs
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +147 -1
lines
regen.
Revision 1.18.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 20 18:09:18 2000 UTC (24 years, 5 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +773 -3
lines
Update thorpej_scsipi to -current as of a month ago
Revision 1.25: download - view: text, markup, annotated - select for diffs
Tue Sep 19 21:58:01 2000 UTC (24 years, 7 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +6 -2
lines
Regen.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Wed Sep 13 16:09:52 2000 UTC (24 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +9 -1
lines
Regen: VNODE_OP_NOINLINE vs. LKM.
Revision 1.23: download - view: text, markup, annotated - select for diffs
Wed Sep 13 15:51:19 2000 UTC (24 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +743 -2
lines
Regen for VNODE_OP_NOINLINE.
Revision 1.22: download - view: text, markup, annotated - select for diffs
Sat May 13 23:43:06 2000 UTC (24 years, 11 months ago) by perseant
Branches: 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
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +0 -0
lines
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 - view: text, markup, annotated - select for diffs
Mon Dec 27 18:35:55 1999 UTC (25 years, 4 months ago) by wrstuden
Branches: wrstuden-devbsize
Diff to: previous 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18: +19 -2
lines
Pull up to last week's -current.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Dec 7 23:58:28 1999 UTC (25 years, 4 months ago) by thorpej
Branches: MAIN
CVS tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
chs-ubc2-newbase
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +1 -18
lines
Regen.
Revision 1.20: download - view: text, markup, annotated - select for diffs
Tue Dec 7 21:07:38 1999 UTC (25 years, 4 months ago) by wrstuden
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +19 -2
lines
Regen.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Nov 15 18:49:10 1999 UTC (25 years, 5 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +19 -2
lines
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 - view: text, markup, annotated - select for diffs
Tue Oct 19 12:50:10 1999 UTC (25 years, 6 months ago) by fvdl
Branches: fvdl-softdep
Diff to: previous 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18: +18 -1
lines
Bring in Kirk McKusick's FFS softdep code on a branch.
Revision 1.15.4.6: download - view: text, markup, annotated - select for diffs
Mon Aug 9 00:05:53 1999 UTC (25 years, 8 months ago) by chs
Branches: chs-ubc2
Diff to: previous 1.15.4.5: preferred, colored; branchpoint 1.15: preferred, colored; next MAIN 1.16: preferred, colored
Changes since revision 1.15.4.5: +1 -1
lines
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 - view: text, markup, annotated - select for diffs
Tue Aug 3 18:20:22 1999 UTC (25 years, 8 months ago) by wrstuden
Branches: MAIN
CVS tags: fvdl-softdep-base,
comdex-fall-1999-base,
comdex-fall-1999
Branch point for: wrstuden-devbsize,
thorpej_scsipi,
fvdl-softdep
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +18 -1
lines
Regen for revision: 1.19 of vnode_if.src.
Revision 1.15.4.5: download - view: text, markup, annotated - select for diffs
Mon Aug 2 22:18:54 1999 UTC (25 years, 8 months ago) by thorpej
Branches: chs-ubc2
Diff to: previous 1.15.4.4: preferred, colored; branchpoint 1.15: preferred, colored
Changes since revision 1.15.4.4: +11 -11
lines
Regen.
Revision 1.15.4.4: download - view: text, markup, annotated - select for diffs
Sat Jul 31 18:40:02 1999 UTC (25 years, 8 months ago) by chs
Branches: chs-ubc2
Diff to: previous 1.15.4.3: preferred, colored; branchpoint 1.15: preferred, colored
Changes since revision 1.15.4.3: +1 -1
lines
VOP_BALLOC() now allocates a range instead of just one block.
Revision 1.17: download - view: text, markup, annotated - select for diffs
Wed Jul 7 23:33:50 1999 UTC (25 years, 9 months ago) by wrstuden
Branches: MAIN
CVS tags: chs-ubc2-base
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +11 -11
lines
Regen to reflect WILLPUT & WILLUNLOCK syntax.
Revision 1.15.4.3: download - view: text, markup, annotated - select for diffs
Sun Jul 4 01:42:26 1999 UTC (25 years, 9 months ago) by chs
Branches: chs-ubc2
Diff to: previous 1.15.4.2: preferred, colored; branchpoint 1.15: preferred, colored
Changes since revision 1.15.4.2: +18 -1
lines
add VOP_BALLOC().
Revision 1.15.4.2: download - view: text, markup, annotated - select for diffs
Thu Jul 1 23:43:23 1999 UTC (25 years, 9 months ago) by thorpej
Branches: chs-ubc2
Diff to: previous 1.15.4.1: preferred, colored; branchpoint 1.15: preferred, colored
Changes since revision 1.15.4.1: +2 -2
lines
Sync w/ -current.
Revision 1.16: download - view: text, markup, annotated - select for diffs
Mon Jun 21 02:30:55 1999 UTC (25 years, 10 months ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -1
lines
regen (no actual change, but comments in the master file changed)
Revision 1.15.4.1: download - view: text, markup, annotated - select for diffs
Mon Jun 7 04:25:31 1999 UTC (25 years, 10 months ago) by chs
Branches: chs-ubc2
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +35 -1
lines
merge everything from chs-ubc branch.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Mon Mar 22 17:13:35 1999 UTC (26 years, 1 month ago) by sommerfe
Branches: 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
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +1 -1
lines
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 - view: text, markup, annotated - select for diffs
Mon Nov 9 06:06:33 1998 UTC (26 years, 5 months ago) by chs
Branches: chs-ubc
Diff to: previous 1.14: preferred, colored; next MAIN 1.15: preferred, colored
Changes since revision 1.14: +34 -0
lines
initial snapshot. lots left to do.
Revision 1.14: download - view: text, markup, annotated - select for diffs
Sun Sep 13 14:45:22 1998 UTC (26 years, 7 months ago) by christos
Branches: MAIN
CVS tags: kenh-if-detach-base,
kenh-if-detach,
chs-ubc-base
Branch point for: chs-ubc
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2
lines
Regen
Revision 1.13.2.2: download - view: text, markup, annotated - select for diffs
Thu Jul 30 00:46:28 1998 UTC (26 years, 8 months ago) by mycroft
Branches: eeh-paddr_t
Diff to: previous 1.13.2.1: preferred, colored; branchpoint 1.13: preferred, colored; next MAIN 1.14: preferred, colored
Changes since revision 1.13.2.1: +824 -0
lines
Regen.
Revision 1.13.2.1
Thu Jul 30 00:46:27 1998 UTC (26 years, 8 months ago) by mycroft
Branches: eeh-paddr_t
FILE REMOVED
Changes since revision 1.13: +0 -824
lines
file vnode_if.c was added on branch eeh-paddr_t on 1998-07-30 00:46:28 +0000
Revision 1.13: download - view: text, markup, annotated - select for diffs
Thu Jul 30 00:46:27 1998 UTC (26 years, 8 months ago) by mycroft
Branches: MAIN
CVS tags: eeh-paddr_t-base
Branch point for: eeh-paddr_t
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +1 -1
lines
Regen.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Fri Jun 5 19:41:21 1998 UTC (26 years, 10 months ago) by kleink
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +1 -1
lines
Regen: fsync argument change.
Revision 1.11: download - view: text, markup, annotated - select for diffs
Sun Mar 1 02:29:59 1998 UTC (27 years, 1 month ago) by fvdl
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -2
lines
Regen.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Sun Mar 1 02:22:36 1998 UTC (27 years, 1 month ago) by fvdl
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +20 -3
lines
Merge with Lite2 + local changes
Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Jan 9 06:41:17 1998 UTC (27 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -1
lines
Regen.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu Jan 8 01:07:24 1998 UTC (27 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +1 -3
lines
Regen: Back out RCS ID related changes.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Mon Jan 5 19:14:39 1998 UTC (27 years, 3 months ago) by perry
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +3 -1
lines
regened with RCSIDs in place
Revision 1.5.2.1: download - view: text, markup, annotated - select for diffs
Tue Oct 14 10:26:31 1997 UTC (27 years, 6 months ago) by thorpej
Branches: marc-pcmcia
Diff to: previous 1.5: preferred, colored; next MAIN 1.6: preferred, colored
Changes since revision 1.5: +1 -1
lines
Update marc-pcmcia branch from trunk.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Fri Oct 10 02:07:55 1997 UTC (27 years, 6 months ago) by fvdl
Branches: 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
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -1
lines
Regen.
Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Jul 7 20:19:54 1997 UTC (27 years, 9 months ago) by cgd
Branches: MAIN
CVS tags: thorpej-signal-base,
thorpej-signal,
marc-pcmcia-bp
Branch point for: marc-pcmcia
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1
lines
update for new vnode_if.sh
Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Jan 22 06:54:31 1997 UTC (28 years, 3 months ago) by mikel
Branches: MAIN
CVS tags: mrg-vm-swap,
is-newarp-before-merge,
is-newarp-base,
is-newarp,
bouyer-scsipi
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +1 -1
lines
regen
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Sep 7 12:56:51 1996 UTC (28 years, 7 months ago) by mycroft
Branches: MAIN
CVS tags: thorpej-setroot
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +9 -9
lines
Regen.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat May 11 18:30:39 1996 UTC (28 years, 11 months ago) by mycroft
Branches: MAIN
CVS tags: netbsd-1-2-base,
netbsd-1-2-RELEASE,
netbsd-1-2-PATCH001,
netbsd-1-2-BETA,
netbsd-1-2
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1
lines
Regen.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Feb 29 21:01:20 1996 UTC (29 years, 1 month ago) by cgd
Branches: MAIN
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.)
CVSweb <webmaster@jp.NetBSD.org>