Up to [cvs.netbsd.org] / src / sys / kern
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.78.4.1 / (download) - annotate - [select for diffs], Sun Jul 17 15:36:04 2011 UTC (10 months, 1 week ago) by riz
Branch: netbsd-5
Changes since 1.78: +4 -2
lines
Diff to previous 1.78 (colored) next main 1.79 (colored)
Pull up following revision(s) (requested by manu in ticket #1645): lib/libc/sys/Makefile.inc 1.207 via patch lib/libc/sys/extattr_get_file.2 patch lib/libpuffs/dispatcher.c 1.34,1.36 via patch lib/libpuffs/puffs.c 1.107 via patch lib/libpuffs/puffs.h 1.115,1.118 via patch sys/fs/puffs/puffs_msgif.h 1.71,1.76 via patch sys/fs/puffs/puffs_vfsops.c 1.88 via patch sys/fs/puffs/puffs_vnops.c 1.145,1.154 via patch sys/kern/vfs_xattr.c 1.24-1.27 via patch sys/kern/vnode_if.c 1.87 via patch sys/sys/Makefile 1.133 via patch sys/sys/extattr.h 1.6 via patch sys/sys/vnode_if.h 1.81 via patch sys/ufs/ffs/ffs_vnops.c patch sys/ufs/ufs/ufs_extattr.c 1.31,1.34 via patch * support extended attributes * bump major due to structure growth * add some spare space * remove ABI sillyness Support extended attributes. Fix multiple non compliances in our Linux-like extattr API, and make it public so that it can be used. Improve a bit listxattr(2). It attemps to list both system and user extended attributes, and it faled if calling user did not have privilege for reading system EA. Now we just lise user EA and skip system EA in reading them is not allowed. Fix bug introduced in previous commuit: Do not vrele() a vnode we did not obtained. Improve UFS1 extended attributes usability - autocreate attribute backing file for new attributes - autoload attributes when issuing extattrctl start - when autoloading attributes, do not display garbage warning when looking up entries that got ENOENT Add a flag to VOP_LISTEXTATTR(9) so that the vnode interface can tell the filesystem in which format extended attribute shall be listed. There are currently two formats: - NUL-terminated strings, used for listxattr(2), this is the default. - one byte length-pprefixed, non NUL-terminated strings, used for extattr_list_file(2), which is obtanined by setting the EXTATTR_LIST_PREFIXLEN flag to VOP_LISTEXTATTR(9) This approach avoid the need for converting the list back and forth, except in libperfuse, since FUSE uses NUL-terminated strings, and the kernel may have requested EXTATTR_LIST_PREFIXLEN.
Revision 1.88 / (download) - annotate - [select for diffs], Mon Jul 11 08:27:38 2011 UTC (10 months, 2 weeks ago) by hannken
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
netbsd-6-base,
netbsd-6,
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-base,
jmcneill-usbmp,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
HEAD
Changes since 1.87: +11 -12
lines
Diff to previous 1.87 (colored)
Change VOP_BWRITE() to take a vnode as its first argument like all other VOPs do. Layered file systems no longer have to modify bp->b_vp and run into trouble when an async VOP_BWRITE() uses the wrong vnode. - change all occurences of VOP_BWRITE(bp) to VOP_BWRITE(bp->b_vp, bp). - remove layer_bwrite(). - welcome to 5.99.55 Adresses PR kern/38762 panic: vwakeup: neg numoutput No objections from tech-kern@.
Revision 1.87 / (download) - annotate - [select for diffs], Mon Jul 4 08:07:31 2011 UTC (10 months, 3 weeks ago) by manu
Branch: MAIN
Changes since 1.86: +4 -2
lines
Diff to previous 1.86 (colored)
Add a flag to VOP_LISTEXTATTR(9) so that the vnode interface can tell the filesystem in which format extended attribute shall be listed. There are currently two formats: - NUL-terminated strings, used for listxattr(2), this is the default. - one byte length-pprefixed, non NUL-terminated strings, used for extattr_list_file(2), which is obtanined by setting the EXTATTR_LIST_PREFIXLEN flag to VOP_LISTEXTATTR(9) This approach avoid the need for converting the list back and forth, except in libperfuse, since FUSE uses NUL-terminated strings, and the kernel may have requested EXTATTR_LIST_PREFIXLEN.
Revision 1.85.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:09:42 2011 UTC (11 months, 2 weeks ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.85: +3 -3
lines
Diff to previous 1.85 (colored) next main 1.86 (colored)
Sync with HEAD.
Revision 1.81.4.3 / (download) - annotate - [select for diffs], Thu Apr 21 01:42:12 2011 UTC (13 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.81.4.2: +3 -3
lines
Diff to previous 1.81.4.2 (colored) to branchpoint 1.81 (colored) next main 1.82 (colored)
sync with head
Revision 1.86 / (download) - annotate - [select for diffs], Sun Mar 6 17:08:36 2011 UTC (14 months, 2 weeks ago) by bouyer
Branch: MAIN
CVS Tags: rmind-uvmplock-nbase,
rmind-uvmplock-base,
cherry-xenmp-base,
cherry-xenmp
Changes since 1.85: +1 -1
lines
Diff to previous 1.85 (colored)
merge the bouyer-quota2 branch. This adds a new on-disk format to store disk quota usage and limits, integrated with ffs metadata. Usage is checked by fsck_ffs (no more quotacheck) and is covered by the WAPBL journal. Enabled with kernel option QUOTA2 (added where QUOTA was enabled in kernel config files), turned on with tunefs(8) on a per-filesystem basis. mount_mfs(8) can also turn quotas on. See http://mail-index.netbsd.org/tech-kern/2011/02/19/msg010025.html for details.
Revision 1.85.4.1 / (download) - annotate - [select for diffs], Thu Jan 20 14:24:58 2011 UTC (16 months ago) by bouyer
Branch: bouyer-quota2
Changes since 1.85: +1 -1
lines
Diff to previous 1.85 (colored) next main 1.86 (colored)
Snapshot of work in progress on a modernised disk quota system:
- new quotactl syscall (versionned for backward compat), which takes
as parameter a path to a mount point, and a prop_dictionary
(in plistref format) describing commands and arguments.
For each command, status and data are returned as a prop_dictionary.
quota commands features will be added to take advantage of this,
exporting quota data or getting quota commands as plists.
- new on disk-format storage (all 64bit wide), integrated to metadata for
ffs (and playing nicely with wapbl).
Quotas are enabled on a ffs filesystem via superblock flags.
tunefs(8) can enable or disable quotas.
On a quota-enabled filesystem, fsck_ffs(8) will track per-uid/gid
block and inode usages, and will check and update quotas in Pass 6.
quota usage and limits are stored in unliked files (one for users,
one for groups)l fsck_ffs(8) will create the files if needed, or
free them if needed. This means that after enabling or disabling
quotas on a filesystem; a fsck_ffs(8) run is required.
quotacheck(8) is not needed any more, on a unclean shutdown
fsck or journal replay will take care of fixing quotas.
newfs(8) can create a ready-to-mount quota-enabled filesystem
(superblock flags are set and quota inodes are created).
Other new features or semantic changes:
- default quota datas, applied to users or groups which don't already
have a quota entry
- per-user/group grace time (instead of a filesystem global one)
- 0 really means "nothing allowed at all", not "no limit".
If you want "no limit", set the limit to UQUAD_MAX (tools will
understand "unlimited" and "-")
A quota file is structured as follow:
it starts with a header, containing a few per-filesystem values,
and the default quota limits.
Quota entries are linked together as a simple list, each entry has a
pointer (as an offset withing the file) to the next.
The header has a pointer to a list of free quota entries, and
a hash table of in-use entries. The size of the hash table depends
on the filesystem block size (header+hash table should fit in the
first block). The file is not sparse and is a multiple of
filesystem block size (when the free quota entry list is empty a new
filesystem block is allocated). quota entries to not cross
filesystem block boundaries.
In memory, the kernel keeps a cache of recently used quota entries
as a reference to the block number, and offset withing the block.
The quota entry itself is keept in the buf cache.
fsck_ffs(8), tunefs(8) and newfs(8) supports are completed (with
related atf tests :)
The kernel can update disk usage and report it via quotactl(2).
Todo: enforce quotas limits (limits are not checked by kernel yet)
update repquota, edquota and rpc.rquotad to the new world
implement compat_50_quotactl ioctl.
update quotactl(2) man page
fsck_ffs required fixes so that allocating new blocks or inodes will
properly update the superblock and cg sumaries. This was not an issue up
to now because superblock and cg sumaries check happened last, but now
allocations or frees can happen in pass 6.
Revision 1.81.2.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:47:35 2010 UTC (21 months, 1 week ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.81.2.1: +3 -5
lines
Diff to previous 1.81.2.1 (colored) to branchpoint 1.81 (colored) next main 1.82 (colored)
Sync with HEAD.
Revision 1.76.10.3 / (download) - annotate - [select for diffs], Wed Aug 11 22:54:45 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.76.10.2: +5 -58
lines
Diff to previous 1.76.10.2 (colored) to branchpoint 1.76 (colored) next main 1.77 (colored)
sync with head.
Revision 1.81.4.2 / (download) - annotate - [select for diffs], Sat Jul 3 01:19:56 2010 UTC (22 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.81.4.1: +5 -7
lines
Diff to previous 1.81.4.1 (colored) to branchpoint 1.81 (colored)
sync with head
Revision 1.85 / (download) - annotate - [select for diffs], Thu Jun 24 13:03:12 2010 UTC (23 months ago) by hannken
Branch: 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
Changes since 1.84: +3 -5
lines
Diff to previous 1.84 (colored)
Clean up vnode lock operations pass 2: VOP_UNLOCK(vp, flags) -> VOP_UNLOCK(vp): Remove the unneeded flags argument. Welcome to 5.99.32. Discussed on tech-kern.
Revision 1.81.4.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:59 2010 UTC (23 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.81: +3 -54
lines
Diff to previous 1.81 (colored)
sync with head
Revision 1.81.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:44:14 2010 UTC (2 years ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.81: +1 -52
lines
Diff to previous 1.81 (colored)
Sync with HEAD.
Revision 1.84 / (download) - annotate - [select for diffs], Wed Apr 14 14:00:04 2010 UTC (2 years, 1 month ago) by pooka
Branch: MAIN
CVS Tags: uebayasi-xip-base1
Changes since 1.83: +0 -0
lines
Diff to previous 1.83 (colored)
regen: rump vnodeif went on a diet
Revision 1.83 / (download) - annotate - [select for diffs], Wed Apr 14 12:21:04 2010 UTC (2 years, 1 month ago) by pooka
Branch: MAIN
Changes since 1.82: +1 -4
lines
Diff to previous 1.82 (colored)
regenefactor for comment and whitespace changes
Revision 1.82 / (download) - annotate - [select for diffs], Sat Apr 10 19:44:02 2010 UTC (2 years, 1 month ago) by pooka
Branch: MAIN
Changes since 1.81: +1 -49
lines
Diff to previous 1.81 (colored)
regen: remove unused vdesc_transports
Revision 1.76.10.2 / (download) - annotate - [select for diffs], Thu Mar 11 15:04:21 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.76.10.1: +6 -343
lines
Diff to previous 1.76.10.1 (colored) to branchpoint 1.76 (colored)
sync with head
Revision 1.81 / (download) - annotate - [select for diffs], Tue Sep 29 11:54:52 2009 UTC (2 years, 7 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9,
uebayasi-xip-base,
matt-premerge-20091211,
jym-xensuspend-nbase
Branch point for: uebayasi-xip,
rmind-uvmplock
Changes since 1.80: +4 -341
lines
Diff to previous 1.80 (colored)
regen: remove VNODE_LOCKDEBUG
Revision 1.76.10.1 / (download) - annotate - [select for diffs], Mon May 4 08:13:50 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.76: +4 -5
lines
Diff to previous 1.76 (colored)
sync with head.
Revision 1.78.2.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:19:40 2009 UTC (3 years, 4 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.78: +4 -5
lines
Diff to previous 1.78 (colored) next main 1.79 (colored)
Sync with HEAD.
Revision 1.76.6.2 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:21 2009 UTC (3 years, 4 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.76.6.1: +4 -5
lines
Diff to previous 1.76.6.1 (colored) to branchpoint 1.76 (colored) next main 1.77 (colored)
Sync with HEAD.
Revision 1.76.16.2 / (download) - annotate - [select for diffs], Sat Dec 13 01:15:10 2008 UTC (3 years, 5 months ago) by haad
Branch: haad-dm
Changes since 1.76.16.1: +4 -5
lines
Diff to previous 1.76.16.1 (colored) to branchpoint 1.76 (colored) next main 1.77 (colored)
Update haad-dm branch to haad-dm-base2.
Revision 1.80 / (download) - annotate - [select for diffs], Mon Nov 17 08:59:33 2008 UTC (3 years, 6 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base,
mjf-devfs2-base,
jymxensuspend-base,
jym-xensuspend-base,
jym-xensuspend,
haad-nbase2,
haad-dm-base2,
haad-dm-base,
ad-audiomp2-base,
ad-audiomp2
Changes since 1.79: +1 -1
lines
Diff to previous 1.79 (colored)
reregen to get those most important rcsids right
Revision 1.79 / (download) - annotate - [select for diffs], Mon Nov 17 08:56:02 2008 UTC (3 years, 6 months ago) by pooka
Branch: MAIN
Changes since 1.78: +4 -5
lines
Diff to previous 1.78 (colored)
regen
Revision 1.76.16.1 / (download) - annotate - [select for diffs], Sun Oct 19 22:17:29 2008 UTC (3 years, 7 months ago) by haad
Branch: haad-dm
Changes since 1.76: +2 -2
lines
Diff to previous 1.76 (colored)
Sync with HEAD.
Revision 1.78 / (download) - annotate - [select for diffs], Thu Jul 31 08:42:01 2008 UTC (3 years, 9 months ago) by simonb
Branch: 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-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
Changes since 1.77: +2 -3
lines
Diff to previous 1.77 (colored)
Remove needless white-space change that crept in through wapbl branch merge.
Revision 1.77 / (download) - annotate - [select for diffs], Thu Jul 31 05:38:05 2008 UTC (3 years, 9 months ago) by simonb
Branch: MAIN
Changes since 1.76: +3 -2
lines
Diff to previous 1.76 (colored)
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) - annotate - [select for diffs], Wed Jul 2 19:08:20 2008 UTC (3 years, 10 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.76: +3 -2
lines
Diff to previous 1.76 (colored)
Sync with HEAD.
Revision 1.76.14.1 / (download) - annotate - [select for diffs], Tue Jun 10 14:51:22 2008 UTC (3 years, 11 months ago) by simonb
Branch: simonb-wapbl
Changes since 1.76: +3 -2
lines
Diff to previous 1.76 (colored) next main 1.77 (colored)
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) - annotate - [select for diffs], Sun Mar 23 02:05:02 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.70.6.3: +3 -39
lines
Diff to previous 1.70.6.3 (colored) to branchpoint 1.70 (colored) next main 1.71 (colored)
sync with HEAD
Revision 1.71.4.3 / (download) - annotate - [select for diffs], Mon Feb 18 21:06:48 2008 UTC (4 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.71.4.2: +7 -41
lines
Diff to previous 1.71.4.2 (colored) to branchpoint 1.71 (colored) next main 1.72 (colored)
Sync with HEAD.
Revision 1.53.4.8 / (download) - annotate - [select for diffs], Mon Feb 4 09:24:25 2008 UTC (4 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.53.4.7: +3 -39
lines
Diff to previous 1.53.4.7 (colored) to branchpoint 1.53 (colored) next main 1.54 (colored)
sync with head.
Revision 1.76 / (download) - annotate - [select for diffs], Fri Jan 25 14:32:46 2008 UTC (4 years, 4 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-pf42,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
wrstuden-revivesa-base-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
Changes since 1.75: +1 -37
lines
Diff to previous 1.75 (colored)
Regen.
Revision 1.53.4.7 / (download) - annotate - [select for diffs], Mon Jan 21 09:46:34 2008 UTC (4 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.53.4.6: +7 -5
lines
Diff to previous 1.53.4.6 (colored) to branchpoint 1.53 (colored)
sync with head
Revision 1.70.6.3 / (download) - annotate - [select for diffs], Wed Jan 9 01:56:33 2008 UTC (4 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.70.6.2: +23 -108
lines
Diff to previous 1.70.6.2 (colored) to branchpoint 1.70 (colored)
sync with HEAD
Revision 1.74.6.1 / (download) - annotate - [select for diffs], Wed Jan 2 21:56:27 2008 UTC (4 years, 4 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.74: +5 -3
lines
Diff to previous 1.74 (colored) next main 1.75 (colored)
Sync with HEAD
Revision 1.75 / (download) - annotate - [select for diffs], Wed Jan 2 11:51:17 2008 UTC (4 years, 4 months ago) by ad
Branch: MAIN
CVS Tags: matt-armv6-base,
bouyer-xeni386-nbase,
bouyer-xeni386-base
Changes since 1.74: +5 -3
lines
Diff to previous 1.74 (colored)
Regen.
Revision 1.74.2.2 / (download) - annotate - [select for diffs], Fri Dec 28 21:43:09 2007 UTC (4 years, 4 months ago) by ad
Branch: vmlocking2
Changes since 1.74.2.1: +1 -1
lines
Diff to previous 1.74.2.1 (colored) to branchpoint 1.74 (colored) next main 1.75 (colored)
Make rump build.
Revision 1.71.4.2 / (download) - annotate - [select for diffs], Sat Dec 8 18:20:46 2007 UTC (4 years, 5 months ago) by mjf
Branch: mjf-devfs
Changes since 1.71.4.1: +22 -109
lines
Diff to previous 1.71.4.1 (colored) to branchpoint 1.71 (colored)
Sync with HEAD.
Revision 1.53.4.6 / (download) - annotate - [select for diffs], Fri Dec 7 17:33:26 2007 UTC (4 years, 5 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.53.4.5: +22 -109
lines
Diff to previous 1.53.4.5 (colored) to branchpoint 1.53 (colored)
sync with head
Revision 1.74.2.1 / (download) - annotate - [select for diffs], Tue Dec 4 13:03:23 2007 UTC (4 years, 5 months ago) by ad
Branch: vmlocking2
Changes since 1.74: +3 -1
lines
Diff to previous 1.74 (colored)
Pull the vmlocking changes into a new branch.
Revision 1.70.4.3 / (download) - annotate - [select for diffs], Tue Nov 27 19:38:20 2007 UTC (4 years, 5 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.70.4.2: +22 -109
lines
Diff to previous 1.70.4.2 (colored) to branchpoint 1.70 (colored) next main 1.71 (colored)
Sync with HEAD. amd64 Xen support needs testing.
Revision 1.74 / (download) - annotate - [select for diffs], Mon Nov 26 19:03:30 2007 UTC (4 years, 6 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-kmem-base3,
yamt-kmem-base2,
yamt-kmem-base,
yamt-kmem,
vmlocking2-base3,
vmlocking2-base2,
vmlocking2-base1,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
jmcneill-pm-base,
cube-autoconf-base,
cube-autoconf
Branch point for: vmlocking2,
bouyer-xeni386
Changes since 1.73: +2 -2
lines
Diff to previous 1.73 (colored)
regen: remove struct lwp as a parameter to VOPs
Revision 1.73 / (download) - annotate - [select for diffs], Mon Nov 26 19:02:10 2007 UTC (4 years, 6 months ago) by pooka
Branch: MAIN
Changes since 1.72: +18 -105
lines
Diff to previous 1.72 (colored)
Remove the "struct lwp *" argument from all VFS and VOP interfaces. The general trend is to remove it from all kernel interfaces and this is a start. In case the calling lwp is desired, curlwp should be used. quick consensus on tech-kern
Revision 1.71.4.1 / (download) - annotate - [select for diffs], Mon Nov 19 00:49:00 2007 UTC (4 years, 6 months ago) by mjf
Branch: mjf-devfs
Changes since 1.71: +346 -204
lines
Diff to previous 1.71 (colored)
Sync with HEAD.
Revision 1.53.4.5 / (download) - annotate - [select for diffs], Thu Nov 15 11:44:58 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.53.4.4: +346 -204
lines
Diff to previous 1.53.4.4 (colored) to branchpoint 1.53 (colored)
sync with head.
Revision 1.71.2.1 / (download) - annotate - [select for diffs], Tue Nov 13 16:02:41 2007 UTC (4 years, 6 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.71: +344 -202
lines
Diff to previous 1.71 (colored) next main 1.72 (colored)
Sync with HEAD
Revision 1.70.4.2 / (download) - annotate - [select for diffs], Sun Nov 11 16:48:20 2007 UTC (4 years, 6 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.70.4.1: +346 -204
lines
Diff to previous 1.70.4.1 (colored) to branchpoint 1.70 (colored)
Sync with HEAD.
Revision 1.70.6.2 / (download) - annotate - [select for diffs], Thu Nov 8 11:00:11 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.70.6.1: +346 -204
lines
Diff to previous 1.70.6.1 (colored) to branchpoint 1.70 (colored)
sync with -HEAD
Revision 1.70.6.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:32:52 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
Changes since 1.70: +42 -42
lines
Diff to previous 1.70 (colored)
sync with HEAD
Revision 1.72 / (download) - annotate - [select for diffs], Tue Nov 6 22:00:00 2007 UTC (4 years, 6 months ago) by ad
Branch: MAIN
CVS Tags: bouyer-xenamd64-base2,
bouyer-xenamd64-base
Changes since 1.71: +344 -202
lines
Diff to previous 1.71 (colored)
Regen.
Revision 1.53.4.4 / (download) - annotate - [select for diffs], Sat Oct 27 11:35:43 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.53.4.3: +42 -42
lines
Diff to previous 1.53.4.3 (colored) to branchpoint 1.53 (colored)
sync with head.
Revision 1.70.4.1 / (download) - annotate - [select for diffs], Fri Oct 26 15:48:48 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.70: +42 -42
lines
Diff to previous 1.70 (colored)
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) - annotate - [select for diffs], Sun Oct 14 11:48:51 2007 UTC (4 years, 7 months ago) by yamt
Branch: yamt-x86pmap
Changes since 1.70: +42 -42
lines
Diff to previous 1.70 (colored) next main 1.71 (colored)
sync with head.
Revision 1.71 / (download) - annotate - [select for diffs], Wed Oct 10 20:42:28 2007 UTC (4 years, 7 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
vmlocking-base,
jmcneill-base
Branch point for: mjf-devfs,
bouyer-xenamd64
Changes since 1.70: +40 -40
lines
Diff to previous 1.70 (colored)
Merge from vmlocking: - Split vnode::v_flag into three fields, depending on field locking. - simple_lock -> kmutex in a few places. - Fix some simple locking problems.
Revision 1.67.8.7 / (download) - annotate - [select for diffs], Sun Sep 16 19:04:32 2007 UTC (4 years, 8 months ago) by ad
Branch: vmlocking
Changes since 1.67.8.6: +4 -4
lines
Diff to previous 1.67.8.6 (colored) to branchpoint 1.67 (colored) next main 1.68 (colored)
Checkpoint work in progress on the vnode lifecycle and reference counting stuff. This makes it work properly without kernel_lock and fixes a few quite old bugs. See vfs_subr.c 1.283.2.17 for details.
Revision 1.53.4.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:41:25 2007 UTC (4 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.53.4.2: +223 -54
lines
Diff to previous 1.53.4.2 (colored) to branchpoint 1.53 (colored)
sync with head.
Revision 1.67.8.6 / (download) - annotate - [select for diffs], Tue Aug 21 18:05:41 2007 UTC (4 years, 9 months ago) by ad
Branch: vmlocking
Changes since 1.67.8.5: +194 -98
lines
Diff to previous 1.67.8.5 (colored) to branchpoint 1.67 (colored)
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) - annotate - [select for diffs], Mon Aug 20 21:27:46 2007 UTC (4 years, 9 months ago) by ad
Branch: vmlocking
Changes since 1.67.8.4: +70 -53
lines
Diff to previous 1.67.8.4 (colored) to branchpoint 1.67 (colored)
Sync with HEAD.
Revision 1.68.4.1 / (download) - annotate - [select for diffs], Wed Aug 15 13:49:25 2007 UTC (4 years, 9 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.68: +223 -54
lines
Diff to previous 1.68 (colored) next main 1.69 (colored)
Sync with HEAD.
Revision 1.70.10.2 / (download) - annotate - [select for diffs], Fri Jul 27 08:27:39 2007 UTC (4 years, 10 months ago) by pooka
Branch: matt-mips64
Changes since 1.70.10.1: +2061 -0
lines
Diff to previous 1.70.10.1 (colored) to branchpoint 1.70 (colored) next main 1.71 (colored)
regen: VOP_MMAP fflags -> prot
Revision 1.70.10.1, Fri Jul 27 08:27:38 2007 UTC (4 years, 10 months ago) by pooka
Branch: matt-mips64
Changes since 1.70: +0 -2061
lines
FILE REMOVED
file vnode_if.c was added on branch matt-mips64 on 2007-07-27 08:27:39 +0000
Revision 1.70 / (download) - annotate - [select for diffs], Fri Jul 27 08:27:38 2007 UTC (4 years, 10 months ago) by pooka
Branch: 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
Changes since 1.69: +3 -3
lines
Diff to previous 1.69 (colored)
regen: VOP_MMAP fflags -> prot
Revision 1.69 / (download) - annotate - [select for diffs], Sun Jul 22 21:27:49 2007 UTC (4 years, 10 months ago) by pooka
Branch: MAIN
Changes since 1.68: +219 -50
lines
Diff to previous 1.68 (colored)
regen: assert that vnode creating operations set the size
Revision 1.67.8.4 / (download) - annotate - [select for diffs], Sun Jul 15 15:51:10 2007 UTC (4 years, 10 months ago) by ad
Branch: vmlocking
Changes since 1.67.8.3: +4 -2
lines
Diff to previous 1.67.8.3 (colored) to branchpoint 1.67 (colored)
Revert unintentionally committed change.
Revision 1.67.8.3 / (download) - annotate - [select for diffs], Sun Jul 15 13:27:48 2007 UTC (4 years, 10 months ago) by ad
Branch: vmlocking
Changes since 1.67.8.2: +7 -2
lines
Diff to previous 1.67.8.2 (colored) to branchpoint 1.67 (colored)
Sync with head.
Revision 1.67.10.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:10:26 2007 UTC (4 years, 10 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.67: +3 -3
lines
Diff to previous 1.67 (colored) next main 1.68 (colored)
Sync with head.
Revision 1.67.8.2 / (download) - annotate - [select for diffs], Sun Jun 17 21:31:36 2007 UTC (4 years, 11 months ago) by ad
Branch: vmlocking
Changes since 1.67.8.1: +43 -42
lines
Diff to previous 1.67.8.1 (colored) to branchpoint 1.67 (colored)
- Increase the number of thread priorities from 128 to 256. How the space is set up is to be revisited. - Implement soft interrupts as kernel threads. A generic implementation is provided, with hooks for fast-path MD code that can run the interrupt threads over the top of other threads executing in the kernel. - Split vnode::v_flag into three fields, depending on how the flag is locked (by the interlock, by the vnode lock, by the file system). - Miscellaneous locking fixes and improvements.
Revision 1.67.4.1 / (download) - annotate - [select for diffs], Sun Apr 15 16:03:54 2007 UTC (5 years, 1 month ago) by yamt
Branch: yamt-idlelwp
Changes since 1.67: +3 -3
lines
Diff to previous 1.67 (colored) next main 1.68 (colored)
sync with head.
Revision 1.68 / (download) - annotate - [select for diffs], Mon Apr 9 15:00:42 2007 UTC (5 years, 1 month ago) by gdt
Branch: MAIN
CVS Tags: yamt-idlelwp-base8,
thorpej-atomic-base,
thorpej-atomic,
nick-csl-alignment-base,
mjf-ufs-trans-base
Branch point for: nick-csl-alignment
Changes since 1.67: +1 -1
lines
Diff to previous 1.67 (colored)
regen (changes in RCS Ids only)
Revision 1.67.8.1 / (download) - annotate - [select for diffs], Wed Mar 21 20:09:39 2007 UTC (5 years, 2 months ago) by ad
Branch: vmlocking
Changes since 1.67: +243 -53
lines
Diff to previous 1.67 (colored)
Acquire the kernel lock in the VOP_* wrappers and the socket ops.
Revision 1.66.4.1 / (download) - annotate - [select for diffs], Fri Jan 12 01:04:08 2007 UTC (5 years, 4 months ago) by ad
Branch: newlock2
Changes since 1.66: +51 -51
lines
Diff to previous 1.66 (colored) next main 1.67 (colored)
Sync with head.
Revision 1.53.4.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:50:07 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.53.4.1: +52 -52
lines
Diff to previous 1.53.4.1 (colored) to branchpoint 1.53 (colored)
sync with head.
Revision 1.66.6.1 / (download) - annotate - [select for diffs], Sun Dec 10 07:18:46 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.66: +51 -51
lines
Diff to previous 1.66 (colored) next main 1.67 (colored)
sync with head.
Revision 1.67 / (download) - annotate - [select for diffs], Thu Nov 30 21:07:36 2006 UTC (5 years, 5 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
reinoud-bufcleanup,
post-newlock2-merge,
newlock2-nbase,
newlock2-base,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
matt-nb4-arm-base,
matt-nb4-arm,
ad-audiomp-base,
ad-audiomp
Branch point for: yamt-idlelwp,
vmlocking,
mjf-ufs-trans
Changes since 1.66: +49 -49
lines
Diff to previous 1.66 (colored)
regen for VOP_FOO_DESCOFFSET change in vnode_if.sh
Revision 1.63.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:57:17 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.63: +28 -28
lines
Diff to previous 1.63 (colored) next main 1.64 (colored)
sync with head
Revision 1.63.8.2 / (download) - annotate - [select for diffs], Fri Aug 11 15:45:47 2006 UTC (5 years, 9 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.63.8.1: +4 -4
lines
Diff to previous 1.63.8.1 (colored) to branchpoint 1.63 (colored) next main 1.64 (colored)
sync with head
Revision 1.65.4.1 / (download) - annotate - [select for diffs], Thu Jul 13 17:49:51 2006 UTC (5 years, 10 months ago) by gdamore
Branch: gdamore-uart
Changes since 1.65: +4 -4
lines
Diff to previous 1.65 (colored) next main 1.66 (colored)
Merge from HEAD.
Revision 1.66 / (download) - annotate - [select for diffs], Thu Jul 13 12:00:25 2006 UTC (5 years, 10 months ago) by martin
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2,
yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
rpaulo-netinet-merge-pcb-base,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Changes since 1.65: +2 -2
lines
Diff to previous 1.65 (colored)
Fix alignement problems for fhandle_t, exposed by gcc4.1. While touching all vptofh/fhtovp functions, get rid of VFS_MAXFIDSIZ, version the getfh(2) syscall and explicitly pass the size available in the filehandle from userland. Discussed on tech-kern, with lots of help from yamt (thanks!).
Revision 1.53.4.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:09:39 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.53: +238 -687
lines
Diff to previous 1.53 (colored)
sync with head.
Revision 1.63.6.1 / (download) - annotate - [select for diffs], Thu Jun 1 22:38:11 2006 UTC (5 years, 11 months ago) by kardel
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.63: +28 -28
lines
Diff to previous 1.63 (colored) next main 1.64 (colored)
Sync with head.
Revision 1.63.12.1 / (download) - annotate - [select for diffs], Wed May 24 15:50:42 2006 UTC (6 years ago) by tron
Branch: peter-altq
Changes since 1.63: +26 -26
lines
Diff to previous 1.63 (colored) next main 1.64 (colored)
Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
Revision 1.63.8.1 / (download) - annotate - [select for diffs], Wed May 24 10:58:42 2006 UTC (6 years ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.63: +28 -28
lines
Diff to previous 1.63 (colored)
sync with head.
Revision 1.65 / (download) - annotate - [select for diffs], Sun May 14 21:15:12 2006 UTC (6 years ago) by elad
Branch: MAIN
CVS Tags: yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
simonb-timecounters-base,
gdamore-uart-base,
chap-midi-nbase,
chap-midi-base,
chap-midi
Branch point for: gdamore-uart
Changes since 1.64: +23 -23
lines
Diff to previous 1.64 (colored)
integrate kauth.
Revision 1.63.10.2 / (download) - annotate - [select for diffs], Thu May 11 23:30:15 2006 UTC (6 years ago) by elad
Branch: elad-kernelauth
Changes since 1.63.10.1: +5 -5
lines
Diff to previous 1.63.10.1 (colored) to branchpoint 1.63 (colored) next main 1.64 (colored)
sync with head
Revision 1.64 / (download) - annotate - [select for diffs], Thu May 4 16:49:54 2006 UTC (6 years ago) by perseant
Branch: MAIN
CVS Tags: elad-kernelauth-base
Changes since 1.63: +4 -4
lines
Diff to previous 1.63 (colored)
Regen after making VOP_FCNTL take an unlocked vnode.
Revision 1.63.10.1 / (download) - annotate - [select for diffs], Wed Mar 8 00:57:31 2006 UTC (6 years, 2 months ago) by elad
Branch: elad-kernelauth
Changes since 1.63: +23 -23
lines
Diff to previous 1.63 (colored)
Regen for kernel authorization KPI.
Revision 1.63 / (download) - annotate - [select for diffs], Fri Dec 30 11:19:26 2005 UTC (6 years, 4 months ago) by yamt
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-uio_vmspace,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
peter-altq-base
Branch point for: yamt-pdpolicy,
simonb-timecounters,
rpaulo-netinet-merge-pcb,
peter-altq,
elad-kernelauth
Changes since 1.62: +1 -7
lines
Diff to previous 1.62 (colored)
regen.
Revision 1.62 / (download) - annotate - [select for diffs], Sun Dec 11 13:02:20 2005 UTC (6 years, 5 months ago) by skrll
Branch: MAIN
Changes since 1.61: +4 -4
lines
Diff to previous 1.61 (colored)
Get correct Ids after ktrace-lwp merge.
Revision 1.61 / (download) - annotate - [select for diffs], Sun Dec 11 12:24:30 2005 UTC (6 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.60: +59 -59
lines
Diff to previous 1.60 (colored)
merge ktrace-lwp.
Revision 1.44.2.9 / (download) - annotate - [select for diffs], Sun Dec 11 10:29:12 2005 UTC (6 years, 5 months ago) by christos
Branch: ktrace-lwp
Changes since 1.44.2.8: +186 -335
lines
Diff to previous 1.44.2.8 (colored) next main 1.45 (colored)
Sync with head.
Revision 1.60 / (download) - annotate - [select for diffs], Wed Dec 7 00:46:23 2005 UTC (6 years, 5 months ago) by thorpej
Branch: MAIN
CVS Tags: ktrace-lwp-base
Changes since 1.59: +184 -232
lines
Diff to previous 1.59 (colored)
Regen: Generate ANSI function decls.
Revision 1.59 / (download) - annotate - [select for diffs], Wed Dec 7 00:42:26 2005 UTC (6 years, 5 months ago) by thorpej
Branch: MAIN
Changes since 1.58: +0 -101
lines
Diff to previous 1.58 (colored)
Regen: VNODE_OP_NOINLINE is gone.
Revision 1.58 / (download) - annotate - [select for diffs], Tue Nov 29 23:02:22 2005 UTC (6 years, 5 months ago) by yamt
Branch: MAIN
Changes since 1.57: +1 -1
lines
Diff to previous 1.57 (colored)
regen to revert the previous.
Revision 1.57 / (download) - annotate - [select for diffs], Tue Nov 29 22:52:02 2005 UTC (6 years, 5 months ago) by yamt
Branch: MAIN
Changes since 1.56: +1 -1
lines
Diff to previous 1.56 (colored)
merge yamt-readahead branch.
Revision 1.56.2.2 / (download) - annotate - [select for diffs], Fri Nov 18 08:44:54 2005 UTC (6 years, 6 months ago) by yamt
Branch: yamt-readahead
CVS Tags: yamt-readahead-pervnode
Changes since 1.56.2.1: +1 -3
lines
Diff to previous 1.56.2.1 (colored) to branchpoint 1.56 (colored) next main 1.57 (colored)
- associate read-ahead context to vnode, rather than file. - revert VOP_READ prototype.
Revision 1.56.2.1 / (download) - annotate - [select for diffs], Tue Nov 15 03:41:23 2005 UTC (6 years, 6 months ago) by yamt
Branch: yamt-readahead
CVS Tags: yamt-readahead-perfile
Changes since 1.56: +4 -2
lines
Diff to previous 1.56 (colored)
regen.
Revision 1.44.2.8 / (download) - annotate - [select for diffs], Thu Nov 10 14:09:46 2005 UTC (6 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.44.2.7: +13 -307
lines
Diff to previous 1.44.2.7 (colored)
Sync with HEAD. Here we go again...
Revision 1.56 / (download) - annotate - [select for diffs], Wed Nov 2 12:41:50 2005 UTC (6 years, 6 months ago) by yamt
Branch: MAIN
CVS Tags: yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base
Branch point for: yamt-readahead
Changes since 1.55: +3 -3
lines
Diff to previous 1.55 (colored)
regen.
Revision 1.55 / (download) - annotate - [select for diffs], Wed Nov 2 12:38:59 2005 UTC (6 years, 6 months ago) by yamt
Branch: MAIN
Changes since 1.54: +13 -307
lines
Diff to previous 1.54 (colored)
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) - annotate - [select for diffs], Thu Oct 20 01:35:24 2005 UTC (6 years, 7 months ago) by yamt
Branch: yamt-vop
Changes since 1.54: +11 -305
lines
Diff to previous 1.54 (colored) next main 1.55 (colored)
regen.
Revision 1.54 / (download) - annotate - [select for diffs], Sat Oct 8 06:15:30 2005 UTC (6 years, 7 months ago) by isaki
Branch: MAIN
CVS Tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
thorpej-vnode-attr-base,
thorpej-vnode-attr
Branch point for: yamt-vop
Changes since 1.53: +1 -1
lines
Diff to previous 1.53 (colored)
regen.
Revision 1.51.2.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:25 2005 UTC (7 years ago) by kent
Branch: kent-audio2
Changes since 1.51: +5 -5
lines
Diff to previous 1.51 (colored) next main 1.52 (colored)
sync with -current
Revision 1.51.4.1 / (download) - annotate - [select for diffs], Sat Mar 19 08:36:12 2005 UTC (7 years, 2 months ago) by yamt
Branch: yamt-km
Changes since 1.51: +5 -5
lines
Diff to previous 1.51 (colored) next main 1.52 (colored)
sync with head. xen and whitespace. xen part is not finished.
Revision 1.44.2.7 / (download) - annotate - [select for diffs], Fri Mar 4 16:52:03 2005 UTC (7 years, 2 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.44.2.6: +5 -5
lines
Diff to previous 1.44.2.6 (colored)
Sync with HEAD. Hi Perry!
Revision 1.53 / (download) - annotate - [select for diffs], Sat Feb 26 22:15:10 2005 UTC (7 years, 2 months ago) by perry
Branch: MAIN
CVS Tags: yamt-km-base4,
yamt-km-base3,
netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3,
kent-audio2-base
Branch point for: yamt-lazymbuf
Changes since 1.52: +2 -2
lines
Diff to previous 1.52 (colored)
regen
Revision 1.52 / (download) - annotate - [select for diffs], Sat Feb 26 22:10:31 2005 UTC (7 years, 2 months ago) by perry
Branch: MAIN
Changes since 1.51: +3 -3
lines
Diff to previous 1.51 (colored)
regen
Revision 1.44.2.6 / (download) - annotate - [select for diffs], Mon Jan 17 19:32:26 2005 UTC (7 years, 4 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.44.2.5: +270 -4
lines
Diff to previous 1.44.2.5 (colored)
Sync with HEAD.
Revision 1.51 / (download) - annotate - [select for diffs], Sun Jan 2 17:46:41 2005 UTC (7 years, 4 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-km-base2,
yamt-km-base,
matt-timespec,
kent-audio1-beforemerge
Branch point for: yamt-km,
kent-audio2
Changes since 1.50: +267 -1
lines
Diff to previous 1.50 (colored)
Regen for extended attribute VOPs.
Revision 1.44.2.5 / (download) - annotate - [select for diffs], Fri Sep 24 10:53:43 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.44.2.4: +355 -4
lines
Diff to previous 1.44.2.4 (colored)
Sync with HEAD.
Revision 1.44.2.4 / (download) - annotate - [select for diffs], Tue Sep 21 13:35:19 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.44.2.3: +58 -58
lines
Diff to previous 1.44.2.3 (colored)
Fix the sync with head I botched.
Revision 1.50 / (download) - annotate - [select for diffs], Tue Sep 21 03:11:53 2004 UTC (7 years, 8 months ago) by thorpej
Branch: MAIN
CVS Tags: kent-audio1-base,
kent-audio1
Changes since 1.49: +353 -2
lines
Diff to previous 1.49 (colored)
Regenerate for VNODE_LOCKDEBUG changes.
Revision 1.44.2.3 / (download) - annotate - [select for diffs], Sat Sep 18 14:53:04 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.44.2.2: +59 -59
lines
Diff to previous 1.44.2.2 (colored)
Sync with HEAD.
Revision 1.49 / (download) - annotate - [select for diffs], Fri Sep 10 09:38:17 2004 UTC (7 years, 8 months ago) by yamt
Branch: MAIN
Changes since 1.48: +1 -1
lines
Diff to previous 1.48 (colored)
regen.
Revision 1.44.2.2 / (download) - annotate - [select for diffs], Tue Aug 3 10:53:03 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.44.2.1: +68 -69
lines
Diff to previous 1.44.2.1 (colored)
Sync with HEAD
Revision 1.48 / (download) - annotate - [select for diffs], Thu May 27 12:50:35 2004 UTC (8 years ago) by yamt
Branch: MAIN
Changes since 1.47: +1 -1
lines
Diff to previous 1.47 (colored)
regen.
Revision 1.47 / (download) - annotate - [select for diffs], Sun Jan 25 18:06:48 2004 UTC (8 years, 4 months ago) by hannken
Branch: MAIN
CVS Tags: netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0,
netbsd-2
Changes since 1.46: +2 -2
lines
Diff to previous 1.46 (colored)
Make VOP_STRATEGY(bp) a real VOP as discussed on tech-kern. VOP_STRATEGY(bp) is replaced by one of two new functions: - VOP_STRATEGY(vp, bp) Call the strategy routine of vp for bp. - DEV_STRATEGY(bp) Call the d_strategy routine of bp->b_dev for bp. DEV_STRATEGY(bp) is used only for block-to-block device situations.
Revision 1.46 / (download) - annotate - [select for diffs], Sun Jan 25 18:02:04 2004 UTC (8 years, 4 months ago) by hannken
Branch: MAIN
Changes since 1.45: +67 -64
lines
Diff to previous 1.45 (colored)
Make VOP_STRATEGY(bp) a real VOP as discussed on tech-kern.
Revision 1.45 / (download) - annotate - [select for diffs], Thu Aug 7 16:32:05 2003 UTC (8 years, 9 months ago) by agc
Branch: MAIN
Changes since 1.44: +3 -7
lines
Diff to previous 1.44 (colored)
Move UCB-licensed code from 4-clause to 3-clause licence. Patches provided by Joel Baker in PR 22364, verified by myself.
Revision 1.44.2.1 / (download) - annotate - [select for diffs], Wed Jul 2 15:26:48 2003 UTC (8 years, 10 months ago) by darrenr
Branch: ktrace-lwp
Changes since 1.44: +58 -58
lines
Diff to previous 1.44 (colored)
Apply the aborted ktrace-lwp changes to a specific branch. This is just for others to review, I'm concerned that patch fuziness may have resulted in some errant code being generated but I'll look at that later by comparing the diff from the base to the branch with the file I attempt to apply to it. This will, at the very least, put the changes in a better context for others to review them and attempt to tinker with removing passing of 'struct lwp' through the kernel.
Revision 1.44 / (download) - annotate - [select for diffs], Sun Jun 29 22:31:36 2003 UTC (8 years, 10 months ago) by fvdl
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.43: +56 -56
lines
Diff to previous 1.43 (colored)
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) - annotate - [select for diffs], Sat Jun 28 14:22:00 2003 UTC (8 years, 11 months ago) by darrenr
Branch: MAIN
Changes since 1.42: +58 -58
lines
Diff to previous 1.42 (colored)
Pass lwp pointers throughtout the kernel, as required, so that the lwpid can be inserted into ktrace records. The general change has been to replace "struct proc *" with "struct lwp *" in various function prototypes, pass the lwp through and use l_proc to get the process pointer when needed. Bump the kernel rev up to 1.6V
Revision 1.42 / (download) - annotate - [select for diffs], Thu Apr 10 20:38:12 2003 UTC (9 years, 1 month ago) by jdolecek
Branch: MAIN
Changes since 1.41: +4 -4
lines
Diff to previous 1.41 (colored)
regen: 'tvp' in vop_rename needs to be vput(), not vrele()d, so adjust the definition here to match current reality okayed by Bill Studenmund
Revision 1.41 / (download) - annotate - [select for diffs], Fri Mar 21 23:11:27 2003 UTC (9 years, 2 months ago) by dsl
Branch: MAIN
Changes since 1.40: +5 -5
lines
Diff to previous 1.40 (colored)
Use 'void *' instead of 'caddr_t' in prototypes of VOP_IOCTL, VOP_FCNTL and VOP_ADVLOCK, delete casts from callers (and some to copyin/out).
Revision 1.33.2.5 / (download) - annotate - [select for diffs], Mon Nov 11 22:14:16 2002 UTC (9 years, 6 months ago) by nathanw
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.33.2.4: +65 -35
lines
Diff to previous 1.33.2.4 (colored) to branchpoint 1.33 (colored) next main 1.34 (colored)
Catch up to -current
Revision 1.40 / (download) - annotate - [select for diffs], Wed Oct 23 09:16:46 2002 UTC (9 years, 7 months ago) by jdolecek
Branch: MAIN
CVS Tags: nathanw_sa_before_merge,
nathanw_sa_base,
kqueue-aftermerge,
gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw,
fvdl_fs64_base
Changes since 1.39: +64 -34
lines
Diff to previous 1.39 (colored)
regen: kqueue branch merge, addition of VOP_KQFILTER()
Revision 1.36.2.2 / (download) - annotate - [select for diffs], Thu Jan 10 20:00:23 2002 UTC (10 years, 4 months ago) by thorpej
Branch: kqueue
Changes since 1.36.2.1: +21 -87
lines
Diff to previous 1.36.2.1 (colored) next main 1.37 (colored)
Sync kqueue branch with -current.
Revision 1.33.2.4 / (download) - annotate - [select for diffs], Wed Nov 14 19:16:50 2001 UTC (10 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.33.2.3: +6 -2
lines
Diff to previous 1.33.2.3 (colored) to branchpoint 1.33 (colored)
Catch up to -current.
Revision 1.38.2.1 / (download) - annotate - [select for diffs], Mon Nov 12 21:19:03 2001 UTC (10 years, 6 months ago) by thorpej
Branch: thorpej-mips-cache
Changes since 1.38: +6 -2
lines
Diff to previous 1.38 (colored) next main 1.39 (colored)
Sync the thorpej-mips-cache branch with -current.
Revision 1.39 / (download) - annotate - [select for diffs], Mon Nov 12 14:50:28 2001 UTC (10 years, 6 months ago) by lukem
Branch: MAIN
CVS Tags: thorpej-mips-cache-base,
newlock-base,
newlock,
netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1,
netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001,
netbsd-1-6,
kqueue-beforemerge,
kqueue-base,
ifpoll-base,
ifpoll,
gehenna-devsw-base,
gehenna-devsw,
eeh-devprop-base,
eeh-devprop
Changes since 1.38: +5 -1
lines
Diff to previous 1.38 (colored)
regen (for RCSID)
Revision 1.37.2.3 / (download) - annotate - [select for diffs], Mon Oct 1 12:47:02 2001 UTC (10 years, 7 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.37.2.2: +14 -84
lines
Diff to previous 1.37.2.2 (colored) to branchpoint 1.37 (colored) next main 1.38 (colored)
Catch up with -current.
Revision 1.33.2.3 / (download) - annotate - [select for diffs], Fri Sep 21 22:36:29 2001 UTC (10 years, 8 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.33.2.2: +15 -85
lines
Diff to previous 1.33.2.2 (colored) to branchpoint 1.33 (colored)
Catch up to -current.
Revision 1.37.2.2 / (download) - annotate - [select for diffs], Tue Sep 18 19:21:19 2001 UTC (10 years, 8 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.37.2.1: +1 -1
lines
Diff to previous 1.37.2.1 (colored) to branchpoint 1.37 (colored)
Do that regen thang.
Revision 1.37.2.1 / (download) - annotate - [select for diffs], Tue Sep 18 19:13:55 2001 UTC (10 years, 8 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.37: +5 -3
lines
Diff to previous 1.37 (colored)
Various changes to make cloning devices possible: * Add an extra argument (struct vnode **) to VOP_OPEN. If it is not NULL, specfs will create a cloned (aliased) vnode during the call, and return it there. The caller should release and unlock the original vnode if a new vnode was returned. The new vnode is returned locked. * Add a flag field to the cdevsw and bdevsw structures. DF_CLONING indicates that it wants a new vnode for each open (XXX is there a better way? devprop?) * If a device is cloning, always call the close entry point for a VOP_CLOSE. Also, rewrite cons.c to do the right thing with vnodes. Use VOPs rather then direct device entry calls. Suggested by mycroft@ Light to moderate testing done an i386 system (arch doesn't matter though, these are MI changes).
Revision 1.38 / (download) - annotate - [select for diffs], Sat Sep 15 20:37:36 2001 UTC (10 years, 8 months ago) by chs
Branch: MAIN
CVS Tags: thorpej-devvp-base3,
thorpej-devvp-base2,
post-chs-ubcperf
Branch point for: thorpej-mips-cache
Changes since 1.37: +14 -84
lines
Diff to previous 1.37 (colored)
regen
Revision 1.33.2.2 / (download) - annotate - [select for diffs], Fri Aug 24 00:11:47 2001 UTC (10 years, 9 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.33.2.1: +3 -3
lines
Diff to previous 1.33.2.1 (colored) to branchpoint 1.33 (colored)
Catch up with -current.
Revision 1.37 / (download) - annotate - [select for diffs], Tue Jul 24 15:39:31 2001 UTC (10 years, 10 months ago) by assar
Branch: MAIN
CVS Tags: thorpej-devvp-base,
pre-chs-ubcperf
Branch point for: thorpej-devvp
Changes since 1.36: +2 -2
lines
Diff to previous 1.36 (colored)
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) - annotate - [select for diffs], Tue Jul 10 13:50:30 2001 UTC (10 years, 10 months ago) by lukem
Branch: kqueue
Changes since 1.36: +66 -36
lines
Diff to previous 1.36 (colored)
regen for vop_kqfilter
Revision 1.33.2.1 / (download) - annotate - [select for diffs], Thu Jun 21 20:07:13 2001 UTC (10 years, 11 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.33: +6 -6
lines
Diff to previous 1.33 (colored)
Catch up to -current.
Revision 1.36 / (download) - annotate - [select for diffs], Sat May 26 21:34:04 2001 UTC (11 years ago) by chs
Branch: MAIN
Branch point for: kqueue
Changes since 1.35: +2 -2
lines
Diff to previous 1.35 (colored)
regen.
Revision 1.35 / (download) - annotate - [select for diffs], Sat May 26 21:27:18 2001 UTC (11 years ago) by chs
Branch: MAIN
Changes since 1.34: +3 -3
lines
Diff to previous 1.34 (colored)
replace vm_page_t with struct vm_page *.
Revision 1.34 / (download) - annotate - [select for diffs], Mon May 7 08:48:07 2001 UTC (11 years ago) by lukem
Branch: MAIN
Changes since 1.33: +2 -2
lines
Diff to previous 1.33 (colored)
regen from vnode_if.sh rev 1.29
Revision 1.18.2.4 / (download) - annotate - [select for diffs], Sun Feb 11 19:16:51 2001 UTC (11 years, 3 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.2.3: +203 -201
lines
Diff to previous 1.18.2.3 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored)
Sync with HEAD.
Revision 1.33 / (download) - annotate - [select for diffs], Mon Jan 22 09:53:31 2001 UTC (11 years, 4 months ago) by jdolecek
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base
Branch point for: nathanw_sa
Changes since 1.32: +154 -152
lines
Diff to previous 1.32 (colored)
regen: *_desc are generated correctly, new VNODE_OPS_COUNT, structures constified
Revision 1.32 / (download) - annotate - [select for diffs], Fri Jan 19 12:24:09 2001 UTC (11 years, 4 months ago) by martin
Branch: MAIN
Changes since 1.31: +53 -53
lines
Diff to previous 1.31 (colored)
Regen after de-const-ing.
Revision 1.31 / (download) - annotate - [select for diffs], Thu Jan 18 20:28:19 2001 UTC (11 years, 4 months ago) by jdolecek
Branch: MAIN
Changes since 1.30: +102 -102
lines
Diff to previous 1.30 (colored)
constify
Revision 1.18.2.3 / (download) - annotate - [select for diffs], Fri Jan 5 17:36:42 2001 UTC (11 years, 4 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.2.2: +3 -1
lines
Diff to previous 1.18.2.2 (colored) to branchpoint 1.18 (colored)
Sync with HEAD
Revision 1.30 / (download) - annotate - [select for diffs], Fri Dec 22 20:07:09 2000 UTC (11 years, 5 months ago) by fvdl
Branch: MAIN
Changes since 1.29: +1 -1
lines
Diff to previous 1.29 (colored)
Regen.
Revision 1.29 / (download) - annotate - [select for diffs], Fri Dec 22 15:10:38 2000 UTC (11 years, 5 months ago) by mrg
Branch: MAIN
Changes since 1.28: +4 -2
lines
Diff to previous 1.28 (colored)
regen
Revision 1.28 / (download) - annotate - [select for diffs], Fri Dec 22 14:59:40 2000 UTC (11 years, 5 months ago) by mrg
Branch: MAIN
Changes since 1.27: +2 -2
lines
Diff to previous 1.27 (colored)
regen
Revision 1.27 / (download) - annotate - [select for diffs], Fri Dec 22 14:45:50 2000 UTC (11 years, 5 months ago) by mrg
Branch: MAIN
Changes since 1.26: +2 -2
lines
Diff to previous 1.26 (colored)
avoid redefinition of VNODE_OP_NOINLINE
Revision 1.22.4.1 / (download) - annotate - [select for diffs], Thu Dec 14 23:56:27 2000 UTC (11 years, 5 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001
Changes since 1.22: +1 -1
lines
Diff to previous 1.22 (colored) next main 1.23 (colored)
Pull up regenerated files (requested by fvdl): Improve NFS performance, possibly with as much as 100% in throughput. Please note: this implies a kernel interface change, VOP_FSYNC gains two arguments.
Revision 1.18.2.2 / (download) - annotate - [select for diffs], Fri Dec 8 09:14:03 2000 UTC (11 years, 5 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.2.1: +148 -2
lines
Diff to previous 1.18.2.1 (colored) to branchpoint 1.18 (colored)
Sync with HEAD.
Revision 1.26 / (download) - annotate - [select for diffs], Mon Nov 27 09:04:59 2000 UTC (11 years, 6 months ago) by chs
Branch: MAIN
Changes since 1.25: +147 -1
lines
Diff to previous 1.25 (colored)
regen.
Revision 1.18.2.1 / (download) - annotate - [select for diffs], Mon Nov 20 18:09:18 2000 UTC (11 years, 6 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18: +773 -3
lines
Diff to previous 1.18 (colored)
Update thorpej_scsipi to -current as of a month ago
Revision 1.25 / (download) - annotate - [select for diffs], Tue Sep 19 21:58:01 2000 UTC (11 years, 8 months ago) by fvdl
Branch: MAIN
Changes since 1.24: +6 -2
lines
Diff to previous 1.24 (colored)
Regen.
Revision 1.24 / (download) - annotate - [select for diffs], Wed Sep 13 16:09:52 2000 UTC (11 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.23: +9 -1
lines
Diff to previous 1.23 (colored)
Regen: VNODE_OP_NOINLINE vs. LKM.
Revision 1.23 / (download) - annotate - [select for diffs], Wed Sep 13 15:51:19 2000 UTC (11 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.22: +743 -2
lines
Diff to previous 1.22 (colored)
Regen for VNODE_OP_NOINLINE.
Revision 1.22 / (download) - annotate - [select for diffs], Sat May 13 23:43:06 2000 UTC (12 years ago) by perseant
Branch: MAIN
CVS Tags: netbsd-1-5-base,
netbsd-1-5-RELEASE,
netbsd-1-5-BETA2,
netbsd-1-5-BETA,
netbsd-1-5-ALPHA2,
minoura-xpg4dl-base,
minoura-xpg4dl
Branch point for: netbsd-1-5
Changes since 1.21: +0 -0
lines
Diff to previous 1.21 (colored)
Change the sementics of the last parameter from a boolean ("waitfor") to
a set of flags ("flags"). Two flags are defined, UPDATE_WAIT and
UPDATE_DIROP.
Under the old semantics, VOP_UPDATE would block if waitfor were set,
under the assumption that directory operations should be done
synchronously. At least LFS and FFS+softdep do not make this
assumption; FFS+softdep got around the problem by enclosing all relevant
calls to VOP_UPDATE in a "if(!DOINGSOFTDEP(vp))", while LFS simply
ignored waitfor, one of the reasons why NFS-serving an LFS filesystem
did not work properly.
Under the new semantics, the UPDATE_DIROP flag is a hint to the
fs-specific update routine that the call comes from a dirop routine, and
should be wait for, or not, accordingly.
Closes PR#8996.
Revision 1.18.8.1 / (download) - annotate - [select for diffs], Mon Dec 27 18:35:55 1999 UTC (12 years, 5 months ago) by wrstuden
Branch: wrstuden-devbsize
Changes since 1.18: +19 -2
lines
Diff to previous 1.18 (colored) next main 1.19 (colored)
Pull up to last week's -current.
Revision 1.21 / (download) - annotate - [select for diffs], Tue Dec 7 23:58:28 1999 UTC (12 years, 5 months ago) by thorpej
Branch: MAIN
CVS Tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
chs-ubc2-newbase
Changes since 1.20: +1 -18
lines
Diff to previous 1.20 (colored)
Regen.
Revision 1.20 / (download) - annotate - [select for diffs], Tue Dec 7 21:07:38 1999 UTC (12 years, 5 months ago) by wrstuden
Branch: MAIN
Changes since 1.19: +19 -2
lines
Diff to previous 1.19 (colored)
Regen.
Revision 1.19 / (download) - annotate - [select for diffs], Mon Nov 15 18:49:10 1999 UTC (12 years, 6 months ago) by fvdl
Branch: MAIN
Changes since 1.18: +19 -2
lines
Diff to previous 1.18 (colored)
Add Kirk McKusick's soft updates code to the trunk. Not enabled by default, as the copyright on the main file (ffs_softdep.c) is such that is has been put into gnusrc. options SOFTDEP will pull this in. This code also contains the trickle syncer. Bump version number to 1.4O
Revision 1.18.4.1 / (download) - annotate - [select for diffs], Tue Oct 19 12:50:10 1999 UTC (12 years, 7 months ago) by fvdl
Branch: fvdl-softdep
Changes since 1.18: +18 -1
lines
Diff to previous 1.18 (colored) next main 1.19 (colored)
Bring in Kirk McKusick's FFS softdep code on a branch.
Revision 1.15.4.6 / (download) - annotate - [select for diffs], Mon Aug 9 00:05:53 1999 UTC (12 years, 9 months ago) by chs
Branch: chs-ubc2
Changes since 1.15.4.5: +1 -1
lines
Diff to previous 1.15.4.5 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored)
create a new type "voff_t" for uvm_object offsets and define it to be "off_t". also, remove pgo_asyncget().
Revision 1.18 / (download) - annotate - [select for diffs], Tue Aug 3 18:20:22 1999 UTC (12 years, 9 months ago) by wrstuden
Branch: MAIN
CVS Tags: fvdl-softdep-base,
comdex-fall-1999-base,
comdex-fall-1999
Branch point for: wrstuden-devbsize,
thorpej_scsipi,
fvdl-softdep
Changes since 1.17: +18 -1
lines
Diff to previous 1.17 (colored)
Regen for revision: 1.19 of vnode_if.src.
Revision 1.15.4.5 / (download) - annotate - [select for diffs], Mon Aug 2 22:18:54 1999 UTC (12 years, 9 months ago) by thorpej
Branch: chs-ubc2
Changes since 1.15.4.4: +11 -11
lines
Diff to previous 1.15.4.4 (colored) to branchpoint 1.15 (colored)
Regen.
Revision 1.15.4.4 / (download) - annotate - [select for diffs], Sat Jul 31 18:40:02 1999 UTC (12 years, 9 months ago) by chs
Branch: chs-ubc2
Changes since 1.15.4.3: +1 -1
lines
Diff to previous 1.15.4.3 (colored) to branchpoint 1.15 (colored)
VOP_BALLOC() now allocates a range instead of just one block.
Revision 1.17 / (download) - annotate - [select for diffs], Wed Jul 7 23:33:50 1999 UTC (12 years, 10 months ago) by wrstuden
Branch: MAIN
CVS Tags: chs-ubc2-base
Changes since 1.16: +11 -11
lines
Diff to previous 1.16 (colored)
Regen to reflect WILLPUT & WILLUNLOCK syntax.
Revision 1.15.4.3 / (download) - annotate - [select for diffs], Sun Jul 4 01:42:26 1999 UTC (12 years, 10 months ago) by chs
Branch: chs-ubc2
Changes since 1.15.4.2: +18 -1
lines
Diff to previous 1.15.4.2 (colored) to branchpoint 1.15 (colored)
add VOP_BALLOC().
Revision 1.15.4.2 / (download) - annotate - [select for diffs], Thu Jul 1 23:43:23 1999 UTC (12 years, 10 months ago) by thorpej
Branch: chs-ubc2
Changes since 1.15.4.1: +2 -2
lines
Diff to previous 1.15.4.1 (colored) to branchpoint 1.15 (colored)
Sync w/ -current.
Revision 1.16 / (download) - annotate - [select for diffs], Mon Jun 21 02:30:55 1999 UTC (12 years, 11 months ago) by sommerfeld
Branch: MAIN
Changes since 1.15: +1 -1
lines
Diff to previous 1.15 (colored)
regen (no actual change, but comments in the master file changed)
Revision 1.15.4.1 / (download) - annotate - [select for diffs], Mon Jun 7 04:25:31 1999 UTC (12 years, 11 months ago) by chs
Branch: chs-ubc2
Changes since 1.15: +35 -1
lines
Diff to previous 1.15 (colored)
merge everything from chs-ubc branch.
Revision 1.15 / (download) - annotate - [select for diffs], Mon Mar 22 17:13:35 1999 UTC (13 years, 2 months ago) by sommerfe
Branch: MAIN
CVS Tags: netbsd-1-4-base,
netbsd-1-4-RELEASE,
netbsd-1-4-PATCH003,
netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
netbsd-1-4,
kame_14_19990705,
kame_14_19990628,
kame_141_19991130,
kame
Branch point for: chs-ubc2
Changes since 1.14: +1 -1
lines
Diff to previous 1.14 (colored)
Regen files based on changes to syscalls.master, vnode_if.src (latter was changes to comments only, but..) Build vfs_getcwd.c as standard part of kernel. Add implementation of fchroot(), since two emulations already had it. Call vn_isunder() in fchdir(), chroot(), and fchroot() to make it harder to escape chroot().
Revision 1.14.2.1 / (download) - annotate - [select for diffs], Mon Nov 9 06:06:33 1998 UTC (13 years, 6 months ago) by chs
Branch: chs-ubc
Changes since 1.14: +34 -0
lines
Diff to previous 1.14 (colored) next main 1.15 (colored)
initial snapshot. lots left to do.
Revision 1.14 / (download) - annotate - [select for diffs], Sun Sep 13 14:45:22 1998 UTC (13 years, 8 months ago) by christos
Branch: MAIN
CVS Tags: kenh-if-detach-base,
kenh-if-detach,
chs-ubc-base
Branch point for: chs-ubc
Changes since 1.13: +2 -2
lines
Diff to previous 1.13 (colored)
Regen
Revision 1.13.2.2 / (download) - annotate - [select for diffs], Thu Jul 30 00:46:28 1998 UTC (13 years, 10 months ago) by mycroft
Branch: eeh-paddr_t
Changes since 1.13.2.1: +824 -0
lines
Diff to previous 1.13.2.1 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored)
Regen.
Revision 1.13.2.1, Thu Jul 30 00:46:27 1998 UTC (13 years, 10 months ago) by mycroft
Branch: eeh-paddr_t
Changes since 1.13: +0 -824
lines
FILE REMOVED
file vnode_if.c was added on branch eeh-paddr_t on 1998-07-30 00:46:28 +0000
Revision 1.13 / (download) - annotate - [select for diffs], Thu Jul 30 00:46:27 1998 UTC (13 years, 10 months ago) by mycroft
Branch: MAIN
CVS Tags: eeh-paddr_t-base
Branch point for: eeh-paddr_t
Changes since 1.12: +1 -1
lines
Diff to previous 1.12 (colored)
Regen.
Revision 1.12 / (download) - annotate - [select for diffs], Fri Jun 5 19:41:21 1998 UTC (13 years, 11 months ago) by kleink
Branch: MAIN
Changes since 1.11: +1 -1
lines
Diff to previous 1.11 (colored)
Regen: fsync argument change.
Revision 1.11 / (download) - annotate - [select for diffs], Sun Mar 1 02:29:59 1998 UTC (14 years, 2 months ago) by fvdl
Branch: MAIN
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
Regen.
Revision 1.10 / (download) - annotate - [select for diffs], Sun Mar 1 02:22:36 1998 UTC (14 years, 2 months ago) by fvdl
Branch: MAIN
Changes since 1.9: +20 -3
lines
Diff to previous 1.9 (colored)
Merge with Lite2 + local changes
Revision 1.9 / (download) - annotate - [select for diffs], Fri Jan 9 06:41:17 1998 UTC (14 years, 4 months ago) by thorpej
Branch: MAIN
Changes since 1.8: +3 -1
lines
Diff to previous 1.8 (colored)
Regen.
Revision 1.8 / (download) - annotate - [select for diffs], Thu Jan 8 01:07:24 1998 UTC (14 years, 4 months ago) by thorpej
Branch: MAIN
Changes since 1.7: +1 -3
lines
Diff to previous 1.7 (colored)
Regen: Back out RCS ID related changes.
Revision 1.7 / (download) - annotate - [select for diffs], Mon Jan 5 19:14:39 1998 UTC (14 years, 4 months ago) by perry
Branch: MAIN
Changes since 1.6: +3 -1
lines
Diff to previous 1.6 (colored)
regened with RCSIDs in place
Revision 1.5.2.1 / (download) - annotate - [select for diffs], Tue Oct 14 10:26:31 1997 UTC (14 years, 7 months ago) by thorpej
Branch: marc-pcmcia
Changes since 1.5: +1 -1
lines
Diff to previous 1.5 (colored) next main 1.6 (colored)
Update marc-pcmcia branch from trunk.
Revision 1.6 / (download) - annotate - [select for diffs], Fri Oct 10 02:07:55 1997 UTC (14 years, 7 months ago) by fvdl
Branch: MAIN
CVS Tags: netbsd-1-3-base,
netbsd-1-3-RELEASE,
netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003,
netbsd-1-3-PATCH002,
netbsd-1-3-PATCH001,
netbsd-1-3-BETA,
netbsd-1-3,
marc-pcmcia-base
Changes since 1.5: +1 -1
lines
Diff to previous 1.5 (colored)
Regen.
Revision 1.5 / (download) - annotate - [select for diffs], Mon Jul 7 20:19:54 1997 UTC (14 years, 10 months ago) by cgd
Branch: MAIN
CVS Tags: thorpej-signal-base,
thorpej-signal,
marc-pcmcia-bp
Branch point for: marc-pcmcia
Changes since 1.4: +1 -1
lines
Diff to previous 1.4 (colored)
update for new vnode_if.sh
Revision 1.4 / (download) - annotate - [select for diffs], Wed Jan 22 06:54:31 1997 UTC (15 years, 4 months ago) by mikel
Branch: MAIN
CVS Tags: mrg-vm-swap,
is-newarp-before-merge,
is-newarp-base,
is-newarp,
bouyer-scsipi
Changes since 1.3: +1 -1
lines
Diff to previous 1.3 (colored)
regen
Revision 1.3 / (download) - annotate - [select for diffs], Sat Sep 7 12:56:51 1996 UTC (15 years, 8 months ago) by mycroft
Branch: MAIN
CVS Tags: thorpej-setroot
Changes since 1.2: +9 -9
lines
Diff to previous 1.2 (colored)
Regen.
Revision 1.2 / (download) - annotate - [select for diffs], Sat May 11 18:30:39 1996 UTC (16 years ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-2-base,
netbsd-1-2-RELEASE,
netbsd-1-2-PATCH001,
netbsd-1-2-BETA,
netbsd-1-2
Changes since 1.1: +1 -1
lines
Diff to previous 1.1 (colored)
Regen.
Revision 1.1 / (download) - annotate - [select for diffs], Thu Feb 29 21:01:20 1996 UTC (16 years, 2 months ago) by cgd
Branch: 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.)