The NetBSD Project

CVS log for src/sys/fs/hfs/hfs_vnops.c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.40 / (download) - annotate - [select for diffs], Sat Aug 6 18:26:42 2022 UTC (20 months, 1 week ago) by andvar
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, netbsd-10-base, 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, netbsd-10, bouyer-sunxi-drm-base, bouyer-sunxi-drm, HEAD
Changes since 1.39: +3 -3 lines
Diff to previous 1.39 (colored) to selected 1.12 (colored)

s/blity/bility/ in various words, mainly in comments.

Revision 1.36.6.1 / (download) - annotate - [select for diffs], Sun Aug 1 22:42:36 2021 UTC (2 years, 8 months ago) by thorpej
Branch: thorpej-i2c-spi-conf
Changes since 1.36: +57 -76 lines
Diff to previous 1.36 (colored) next main 1.37 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.39 / (download) - annotate - [select for diffs], Sun Jul 18 23:56:13 2021 UTC (2 years, 8 months ago) by dholland
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-futex2-base, thorpej-futex2, thorpej-cfargs2-base, thorpej-cfargs2
Changes since 1.38: +16 -68 lines
Diff to previous 1.38 (colored) to selected 1.12 (colored)

Use macros for the canned parts of device and fifo vnode op tables.

Add GENFS_SPECOP_ENTRIES and GENFS_FIFOOP_ENTRIES macros that contain
the portion of the vnode ops table declaration that is
(conservatively) the same in every fs. Use these in every fs that
supports devices and/or fifos with separate ops tables.

Note that ptyfs works differently (it has one type of vnode with
open-coded dispatch to the specfs code, which I haven't changed in
this commit) and rump/librump/rumpvfs/rumpfs.c has an indirect dynamic
dispatch that already does more or less the same thing, which I also
haven't changed.

Also note that this anticipates a few bits in the next changeset here
and there, and adds missing but unreachable calls in some cases (e.g.
most fses weren't defining whiteout on devices and fifos, but it isn't
reachable there), and it changes parsepath on devices and fifos to
genfs_badop from genfs_parsepath (but it's not reachable there
either).

It appears that devices in kernfs were missing kqfilter, so it's
possible that if you try to use kqueue on /kern/rootdev that it'll
explode.

And finally note that the ops declaration tables aren't
order-dependent. (Other than vop_default_desc has to come first.)
Otherwise this wouldn't work.

Revision 1.38 / (download) - annotate - [select for diffs], Tue Jun 29 22:37:50 2021 UTC (2 years, 9 months ago) by dholland
Branch: MAIN
Changes since 1.37: +42 -12 lines
Diff to previous 1.37 (colored) to selected 1.12 (colored)

Implement VOP_PARSEPATH() for hfs.

This checks for a following "/rsrc" at the end of the pathname (to
indicate the resource fork of a file) and assimilates it into the
component name to be looked up. Then cn_namelen will already include
this text in lookup, and it's no longer necessary to muck with
cn_consume.

Invalid uses of "/rsrc" are ignored rather than rejected, which
appears to be the same as the old behavior. It is possible that the
parsepath logic should only consume the "/rsrc" if the name names a
file and not a directory, which would require looking it up in
parsepath and be a general nuisance; I hope not. It's also possible
that the whole thing doesn't work at all now, or it didn't before, as
I don't have any way to test it.

Revision 1.37 / (download) - annotate - [select for diffs], Tue Jun 29 22:34:06 2021 UTC (2 years, 9 months ago) by dholland
Branch: MAIN
Changes since 1.36: +5 -2 lines
Diff to previous 1.36 (colored) to selected 1.12 (colored)

- Add a new vnode op: VOP_PARSEPATH.
 - Move namei_getcomponent to genfs_vnops.c and call it genfs_parsepath.
 - Add a parsepath entry to every vnode ops table.

VOP_PARSEPATH takes a directory vnode to be searched and a complete
following path and chooses how much of that path to consume. To begin
with, all parsepath calls are genfs_parsepath, which locates the first
'/' as always.

Note that the call doesn't take the whole struct componentname, only
the string. The other bits of struct componentname should not be
needed and there's no reason to cause potential complications by
exposing them.

Revision 1.36 / (download) - annotate - [select for diffs], Sat May 16 18:31:49 2020 UTC (3 years, 11 months ago) by christos
Branch: MAIN
CVS Tags: thorpej-futex-base, thorpej-futex, thorpej-cfargs-base, thorpej-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Branch point for: thorpej-i2c-spi-conf
Changes since 1.35: +14 -11 lines
Diff to previous 1.35 (colored) to selected 1.12 (colored)

Add ACL support for FFS. From FreeBSD.

Revision 1.34.20.1 / (download) - annotate - [select for diffs], Sat Apr 25 11:24:04 2020 UTC (3 years, 11 months ago) by bouyer
Branch: bouyer-xenpvh
Changes since 1.34: +3 -3 lines
Diff to previous 1.34 (colored) next main 1.35 (colored) to selected 1.12 (colored)

Sync with bouyer-xenpvh-base2 (HEAD)

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

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

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

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

Revision 1.26.2.3 / (download) - annotate - [select for diffs], Sun Dec 3 11:38:41 2017 UTC (6 years, 4 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.26.2.2: +30 -37 lines
Diff to previous 1.26.2.2 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored) to selected 1.12 (colored)

update from HEAD

Revision 1.31.4.3 / (download) - annotate - [select for diffs], Mon Aug 28 17:53:05 2017 UTC (6 years, 7 months ago) by skrll
Branch: nick-nhusb
Changes since 1.31.4.2: +5 -3 lines
Diff to previous 1.31.4.2 (colored) to branchpoint 1.31 (colored) next main 1.32 (colored) to selected 1.12 (colored)

Sync with HEAD

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

Make VOP_RECLAIM do the last unlock of the vnode.

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

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

Revision 1.31.4.2 / (download) - annotate - [select for diffs], Wed Oct 5 20:56:01 2016 UTC (7 years, 6 months ago) by skrll
Branch: nick-nhusb
Changes since 1.31.4.1: +12 -15 lines
Diff to previous 1.31.4.1 (colored) to branchpoint 1.31 (colored) to selected 1.12 (colored)

Sync with HEAD

Revision 1.33 / (download) - annotate - [select for diffs], Sat Aug 20 12:37:07 2016 UTC (7 years, 7 months ago) by hannken
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Changes since 1.32: +2 -5 lines
Diff to previous 1.32 (colored) to selected 1.12 (colored)

Remove now obsolete operation vcache_remove().

Welcome to 7.99.36

Revision 1.31.4.1 / (download) - annotate - [select for diffs], Tue Sep 22 12:06:06 2015 UTC (8 years, 6 months ago) by skrll
Branch: nick-nhusb
Changes since 1.31: +28 -34 lines
Diff to previous 1.31 (colored) to selected 1.12 (colored)

Sync with HEAD

Revision 1.32 / (download) - annotate - [select for diffs], Sun Jun 21 13:50:34 2015 UTC (8 years, 9 months ago) by maxv
Branch: MAIN
CVS Tags: pgoyette-localcount-base, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, nick-nhusb-base-20150921
Changes since 1.31: +28 -34 lines
Diff to previous 1.31 (colored) to selected 1.12 (colored)

KNF

Revision 1.26.2.2 / (download) - annotate - [select for diffs], Wed Aug 20 00:04:26 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.26.2.1: +15 -14 lines
Diff to previous 1.26.2.1 (colored) to branchpoint 1.26 (colored) to selected 1.12 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.31 / (download) - annotate - [select for diffs], Sun Aug 10 08:53:22 2014 UTC (9 years, 8 months ago) by hannken
Branch: MAIN
CVS Tags: tls-maxphys-base, nick-nhusb-base-20150606, nick-nhusb-base-20150406, nick-nhusb-base, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7
Branch point for: nick-nhusb
Changes since 1.30: +10 -13 lines
Diff to previous 1.30 (colored) to selected 1.12 (colored)

Change hfs from hashlist to vcache.
- use (cnid, fork) as key.
- use pool for hfs nodes.

Revision 1.29.2.1 / (download) - annotate - [select for diffs], Sun Aug 10 06:55:53 2014 UTC (9 years, 8 months ago) by tls
Branch: tls-earlyentropy
Changes since 1.29: +8 -2 lines
Diff to previous 1.29 (colored) next main 1.30 (colored) to selected 1.12 (colored)

Rebase.

Revision 1.30 / (download) - annotate - [select for diffs], Fri Jul 25 08:20:51 2014 UTC (9 years, 8 months ago) by dholland
Branch: MAIN
CVS Tags: tls-earlyentropy-base
Changes since 1.29: +8 -2 lines
Diff to previous 1.29 (colored) to selected 1.12 (colored)

Add VOP_FALLOCATE and VOP_FDISCARD to every vnode ops table I can
find.

The filesystem ones all call genfs_eopnotsupp - right now I am only
implementing the plumbing and we can implement fallocate and/or
fdiscard for files later.

The device ones call spec_fallocate (which is also genfs_eopnotsupp)
and spec_fdiscard, which dispatches to the device-level op.

The fifo ones all call vn_fifo_bypass, which also ends up being
EOPNOTSUPP.

Revision 1.24.2.3 / (download) - annotate - [select for diffs], Thu May 22 11:41:00 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.24.2.2: +6 -8 lines
Diff to previous 1.24.2.2 (colored) to branchpoint 1.24 (colored) next main 1.25 (colored) to selected 1.12 (colored)

sync with head.

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

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

Revision 1.27.6.1 / (download) - annotate - [select for diffs], Sun May 18 17:46:05 2014 UTC (9 years, 11 months ago) by rmind
Branch: rmind-smpnet
Changes since 1.27: +5 -7 lines
Diff to previous 1.27 (colored) next main 1.28 (colored) to selected 1.12 (colored)

sync with head

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

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

Discussed on tech-kern@

Welcome to 6.99.31

Revision 1.28 / (download) - annotate - [select for diffs], Fri Oct 18 19:58:11 2013 UTC (10 years, 6 months ago) by christos
Branch: MAIN
Changes since 1.27: +2 -6 lines
Diff to previous 1.27 (colored) to selected 1.12 (colored)

remove unused variables

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

resync from head

Revision 1.27 / (download) - annotate - [select for diffs], Mon Mar 18 19:35:37 2013 UTC (11 years, 1 month ago) by plunky
Branch: MAIN
CVS Tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, khorben-n900, agc-symver-base, agc-symver
Branch point for: rmind-smpnet
Changes since 1.26: +3 -3 lines
Diff to previous 1.26 (colored) to selected 1.12 (colored)

C99 section 6.7.2.3 (Tags) Note 3 states that:

  A type specifier of the form

	enum identifier

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

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

(ok elad@)

Revision 1.24.2.2 / (download) - annotate - [select for diffs], Tue Oct 30 17:22:23 2012 UTC (11 years, 5 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.24.2.1: +3 -4 lines
Diff to previous 1.24.2.1 (colored) to branchpoint 1.24 (colored) to selected 1.12 (colored)

sync with head

Revision 1.24.8.1 / (download) - annotate - [select for diffs], Sun Aug 12 12:59:49 2012 UTC (11 years, 8 months ago) by martin
Branch: netbsd-6
CVS Tags: netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Changes since 1.24: +3 -4 lines
Diff to previous 1.24 (colored) next main 1.25 (colored) to selected 1.12 (colored)

Pull up following revision(s) (requested by manu in ticket #484):
	sys/fs/nilfs/nilfs_vnops.c: revision 1.18
	sys/ufs/ufs/ufs_lookup.c: revision 1.117
	sys/nfs/nfs_vnops.c: revision 1.295
	sys/ufs/chfs/chfs_vnops.c: revision 1.8
	sys/ufs/ext2fs/ext2fs_lookup.c: revision 1.70
	sys/fs/unionfs/unionfs_vnops.c: revision 1.6
	sys/kern/vfs_cache.c: revision 1.89
	sys/fs/efs/efs_vnops.c: revision 1.26
	sys/fs/hfs/hfs_vnops.c: revision 1.26
	sys/fs/adosfs/adlookup.c: revision 1.16
	sys/fs/puffs/puffs_vnops.c: revision 1.168
	sys/fs/tmpfs/tmpfs_vnops.c: revision 1.98
	sys/fs/ntfs/ntfs_vnops.c: revision 1.52
	sys/fs/cd9660/cd9660_lookup.c: revision 1.20
	sys/fs/msdosfs/msdosfs_lookup.c: revision 1.24
	sys/fs/smbfs/smbfs_vnops.c: revision 1.80
	sys/fs/udf/udf_vnops.c: revision 1.72
	sys/fs/filecorefs/filecore_lookup.c: revision 1.14
	sys/fs/puffs/puffs_node.c: revision 1.25
Move some the test for MAKEENTRY into the cache_enter(9).  Make some
variables in vfs_cache.c static, __read_mostly, etc.
No objection on tech-kern@.

Revision 1.26 / (download) - annotate - [select for diffs], Sun Jul 22 00:53:19 2012 UTC (11 years, 8 months ago) by rmind
Branch: MAIN
CVS Tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6
Branch point for: tls-maxphys
Changes since 1.25: +3 -4 lines
Diff to previous 1.25 (colored) to selected 1.12 (colored)

Move some the test for MAKEENTRY into the cache_enter(9).  Make some
variables in vfs_cache.c static, __read_mostly, etc.

No objection on tech-kern@.

Revision 1.24.2.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:08:18 2012 UTC (12 years ago) by yamt
Branch: yamt-pagecache
Changes since 1.24: +8 -6 lines
Diff to previous 1.24 (colored) to selected 1.12 (colored)

sync with head

Revision 1.24.6.1 / (download) - annotate - [select for diffs], Thu Apr 5 21:33:36 2012 UTC (12 years ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.24: +8 -6 lines
Diff to previous 1.24 (colored) next main 1.25 (colored) to selected 1.12 (colored)

sync to latest -current.

Revision 1.25 / (download) - annotate - [select for diffs], Tue Mar 13 18:40:37 2012 UTC (12 years, 1 month ago) by elad
Branch: MAIN
CVS Tags: yamt-pagecache-base5, yamt-pagecache-base4, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base10
Changes since 1.24: +8 -6 lines
Diff to previous 1.24 (colored) to selected 1.12 (colored)

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

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

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

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

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

Revision 1.24 / (download) - annotate - [select for diffs], Tue Sep 27 01:14:47 2011 UTC (12 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base7, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2, jmcneill-usbmp-base, jmcneill-audiomp3-base, jmcneill-audiomp3
Branch point for: yamt-pagecache, netbsd-6, jmcneill-usbmp
Changes since 1.23: +4 -4 lines
Diff to previous 1.23 (colored) to selected 1.12 (colored)

use NAME_MAX instead of MAXNAMLEN

Revision 1.18.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:09:22 2011 UTC (12 years, 10 months ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.18: +127 -118 lines
Diff to previous 1.18 (colored) next main 1.19 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.16.4.4 / (download) - annotate - [select for diffs], Tue May 31 03:04:58 2011 UTC (12 years, 10 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.16.4.3: +1 -4 lines
Diff to previous 1.16.4.3 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored) to selected 1.12 (colored)

sync with head

Revision 1.23 / (download) - annotate - [select for diffs], Thu May 19 03:11:56 2011 UTC (12 years, 11 months ago) by rmind
Branch: MAIN
CVS Tags: rmind-uvmplock-nbase, rmind-uvmplock-base, cherry-xenmp-base, cherry-xenmp
Changes since 1.22: +3 -6 lines
Diff to previous 1.22 (colored) to selected 1.12 (colored)

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

Revision 1.16.4.3 / (download) - annotate - [select for diffs], Sat Mar 5 20:55:04 2011 UTC (13 years, 1 month ago) by rmind
Branch: rmind-uvmplock
Changes since 1.16.4.2: +126 -114 lines
Diff to previous 1.16.4.2 (colored) to branchpoint 1.16 (colored) to selected 1.12 (colored)

sync with head

Revision 1.18.4.2 / (download) - annotate - [select for diffs], Thu Feb 17 12:00:43 2011 UTC (13 years, 2 months ago) by bouyer
Branch: bouyer-quota2
Changes since 1.18.4.1: +12 -5 lines
Diff to previous 1.18.4.1 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored) to selected 1.12 (colored)

Sync with HEAD

Revision 1.11.4.1 / (download) - annotate - [select for diffs], Wed Feb 16 21:20:04 2011 UTC (13 years, 2 months ago) by bouyer
Branch: netbsd-5
CVS Tags: netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2
Changes since 1.11: +10 -4 lines
Diff to previous 1.11 (colored) next main 1.12 (colored)

Pull up following revision(s) (requested by dholland in ticket #1554):
	sys/fs/hfs/hfs_vnops.c: revision 1.21, 1.22 via patch
PR/44523: Taylor R Campbell: mount_hfs badly handles file names with slashes
in them, encode them as colons. XXX: Should encode : as :: too?
remove comments about needing to encode : since the on disk format does
not allow them. Also fix reversed encoding in lookup. From Taylor R Campbell.

Revision 1.22 / (download) - annotate - [select for diffs], Thu Feb 10 03:30:29 2011 UTC (13 years, 2 months ago) by christos
Branch: MAIN
CVS Tags: bouyer-quota2-nbase, bouyer-quota2-base
Changes since 1.21: +4 -6 lines
Diff to previous 1.21 (colored) to selected 1.12 (colored)

remove comments about needing to encode : since the on disk format does
not allow them. Also fix reversed encoding in lookup. From Taylor R Campbell.

Revision 1.21 / (download) - annotate - [select for diffs], Thu Feb 10 01:49:51 2011 UTC (13 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.20: +14 -5 lines
Diff to previous 1.20 (colored) to selected 1.12 (colored)

PR/44523: Taylor R Campbell: mount_hfs badly handles file names with slashes
in them, encode them as colons. XXX: Should encode : as :: too?

Revision 1.18.4.1 / (download) - annotate - [select for diffs], Tue Feb 8 16:19:57 2011 UTC (13 years, 2 months ago) by bouyer
Branch: bouyer-quota2
Changes since 1.18: +116 -111 lines
Diff to previous 1.18 (colored) to selected 1.12 (colored)

Sync with HEAD

Revision 1.20 / (download) - annotate - [select for diffs], Mon Feb 7 03:03:16 2011 UTC (13 years, 2 months ago) by jakllsch
Branch: MAIN
Changes since 1.19: +5 -3 lines
Diff to previous 1.19 (colored) to selected 1.12 (colored)

Make this build.

Also, the previous commit contanined "unintended" functional changes I'm
going to ignore.

Revision 1.19 / (download) - annotate - [select for diffs], Mon Feb 7 02:06:20 2011 UTC (13 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.18: +114 -111 lines
Diff to previous 1.18 (colored) to selected 1.12 (colored)

KNF, no functional changes intended.

Revision 1.16.2.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:47:16 2010 UTC (13 years, 8 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.16.2.1: +1 -1 lines
Diff to previous 1.16.2.1 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.9.10.5 / (download) - annotate - [select for diffs], Wed Aug 11 22:54:33 2010 UTC (13 years, 8 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.9.10.4: +34 -34 lines
Diff to previous 1.9.10.4 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored) to selected 1.12 (colored)

sync with head.

Revision 1.16.4.2 / (download) - annotate - [select for diffs], Sat Jul 3 01:19:50 2010 UTC (13 years, 9 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.16.4.1: +3 -3 lines
Diff to previous 1.16.4.1 (colored) to branchpoint 1.16 (colored) to selected 1.12 (colored)

sync with head

Revision 1.18 / (download) - annotate - [select for diffs], Thu Jun 24 13:03:09 2010 UTC (13 years, 9 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
Branch point for: jruoho-x86intr, bouyer-quota2
Changes since 1.17: +3 -3 lines
Diff to previous 1.17 (colored) to selected 1.12 (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.16.4.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:55 2010 UTC (13 years, 10 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.16: +33 -33 lines
Diff to previous 1.16 (colored) to selected 1.12 (colored)

sync with head

Revision 1.16.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:44:06 2010 UTC (13 years, 11 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.16: +33 -33 lines
Diff to previous 1.16 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.17 / (download) - annotate - [select for diffs], Mon Mar 29 13:11:33 2010 UTC (14 years ago) by pooka
Branch: MAIN
CVS Tags: uebayasi-xip-base1
Changes since 1.16: +33 -33 lines
Diff to previous 1.16 (colored) to selected 1.12 (colored)

Stop exposing fifofs internals and leave only fifo_vnodeop_p visible.

Revision 1.9.10.4 / (download) - annotate - [select for diffs], Thu Mar 11 15:04:13 2010 UTC (14 years, 1 month ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.9.10.3: +4 -4 lines
Diff to previous 1.9.10.3 (colored) to branchpoint 1.9 (colored) to selected 1.12 (colored)

sync with head

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

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

no functional change

Revision 1.13.2.1 / (download) - annotate - [select for diffs], Thu Jul 23 23:32:32 2009 UTC (14 years, 8 months ago) by jym
Branch: jym-xensuspend
Changes since 1.13: +39 -19 lines
Diff to previous 1.13 (colored) next main 1.14 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.9.10.3 / (download) - annotate - [select for diffs], Sat Jul 18 14:53:21 2009 UTC (14 years, 9 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.9.10.2: +39 -19 lines
Diff to previous 1.9.10.2 (colored) to branchpoint 1.9 (colored) to selected 1.12 (colored)

sync with head.

Revision 1.15 / (download) - annotate - [select for diffs], Fri Jul 3 21:17:41 2009 UTC (14 years, 9 months ago) by elad
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, matt-premerge-20091211, jymxensuspend-base, jym-xensuspend-nbase
Changes since 1.14: +39 -19 lines
Diff to previous 1.14 (colored) to selected 1.12 (colored)

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

Mailing list reference:

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

Revision 1.14 / (download) - annotate - [select for diffs], Tue Jun 23 19:36:39 2009 UTC (14 years, 9 months ago) by elad
Branch: MAIN
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored) to selected 1.12 (colored)

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

Adjust file-system code to use it.

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

No objections on tech-kern@:

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

Revision 1.9.10.2 / (download) - annotate - [select for diffs], Mon May 4 08:13:43 2009 UTC (14 years, 11 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.9.10.1: +13 -18 lines
Diff to previous 1.9.10.1 (colored) to branchpoint 1.9 (colored) to selected 1.12 (colored)

sync with head.

Revision 1.11.2.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:19:33 2009 UTC (15 years, 3 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.11: +5 -10 lines
Diff to previous 1.11 (colored) next main 1.12 (colored)

Sync with HEAD.

Revision 1.9.6.3 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:16 2009 UTC (15 years, 3 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.9.6.2: +3 -8 lines
Diff to previous 1.9.6.2 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.13 / (download) - annotate - [select for diffs], Wed Dec 17 20:51:35 2008 UTC (15 years, 4 months ago) by cegger
Branch: MAIN
CVS Tags: yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, mjf-devfs2-base, jym-xensuspend-base
Branch point for: jym-xensuspend
Changes since 1.12: +3 -3 lines
Diff to previous 1.12 (colored)

kill MALLOC and FREE macros.

Revision 1.10.6.2 / (download) - annotate - [select for diffs], Sat Dec 13 01:14:59 2008 UTC (15 years, 4 months ago) by haad
Branch: haad-dm
Changes since 1.10.6.1: +4 -9 lines
Diff to previous 1.10.6.1 (colored) to branchpoint 1.10 (colored) next main 1.11 (colored) to selected 1.12 (colored)

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

Revision 1.12 / (download) - annotate - [selected], Wed Nov 26 20:17:33 2008 UTC (15 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: haad-nbase2, haad-dm-base2, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Changes since 1.11: +4 -9 lines
Diff to previous 1.11 (colored)

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

Revision 1.10.6.1 / (download) - annotate - [select for diffs], Sun Oct 19 22:17:18 2008 UTC (15 years, 6 months ago) by haad
Branch: haad-dm
Changes since 1.10: +10 -10 lines
Diff to previous 1.10 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.9.6.2 / (download) - annotate - [select for diffs], Sun Sep 28 10:40:50 2008 UTC (15 years, 6 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.9.6.1: +8 -8 lines
Diff to previous 1.9.6.1 (colored) to branchpoint 1.9 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.10.2.1 / (download) - annotate - [select for diffs], Thu Sep 18 04:36:55 2008 UTC (15 years, 7 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.10: +10 -10 lines
Diff to previous 1.10 (colored) next main 1.11 (colored) to selected 1.12 (colored)

Sync with wrstuden-revivesa-base-2.

Revision 1.11 / (download) - annotate - [select for diffs], Wed Sep 3 22:57:46 2008 UTC (15 years, 7 months ago) by gmcgarry
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-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
Changes since 1.10: +10 -10 lines
Diff to previous 1.10 (colored) to selected 1.12 (colored)

Don't use unnamed structures.

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

Sync with HEAD.

Revision 1.9.8.1 / (download) - annotate - [select for diffs], Sun May 18 12:34:59 2008 UTC (15 years, 11 months ago) by yamt
Branch: yamt-pf42
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored) next main 1.10 (colored) to selected 1.12 (colored)

sync with head.

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

sync with head.

Revision 1.10 / (download) - annotate - [select for diffs], Tue Apr 29 18:18:08 2008 UTC (15 years, 11 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-nfs-mp-base2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, hpcarm-cleanup-nbase
Branch point for: wrstuden-revivesa, haad-dm
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored) to selected 1.12 (colored)

PR kern/38057 ffs makes assuptions about devvp file system
PR kern/33406 softdeps get stuck in endless loop

Introduce VFS_FSYNC() and call it when syncing a block device, if it
has a mounted file system.

Revision 1.4.2.2 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:56 2008 UTC (16 years ago) by matt
Branch: matt-armv6
Changes since 1.4.2.1: +2 -6 lines
Diff to previous 1.4.2.1 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored) to selected 1.12 (colored)

sync with HEAD

Revision 1.4.10.3 / (download) - annotate - [select for diffs], Mon Feb 18 21:06:39 2008 UTC (16 years, 2 months ago) by mjf
Branch: mjf-devfs
Changes since 1.4.10.2: +2 -12 lines
Diff to previous 1.4.10.2 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.4.4.5 / (download) - annotate - [select for diffs], Mon Feb 4 09:23:45 2008 UTC (16 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.4.4.4: +2 -6 lines
Diff to previous 1.4.4.4 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored) to selected 1.12 (colored)

sync with head.

Revision 1.9 / (download) - annotate - [select for diffs], Wed Jan 30 09:50:20 2008 UTC (16 years, 2 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-base, ad-socklock-base1
Branch point for: yamt-pf42, yamt-nfs-mp, mjf-devfs2
Changes since 1.8: +2 -3 lines
Diff to previous 1.8 (colored) to selected 1.12 (colored)

Replace struct lock on vnodes with a simpler lock object built on
krwlock_t. This is a step towards removing lockmgr and simplifying
vnode locking. Discussed on tech-kern.

Revision 1.8 / (download) - annotate - [select for diffs], Fri Jan 25 14:32:12 2008 UTC (16 years, 2 months ago) by ad
Branch: MAIN
Changes since 1.7: +2 -5 lines
Diff to previous 1.7 (colored) to selected 1.12 (colored)

Remove VOP_LEASE. Discussed on tech-kern.

Revision 1.4.4.4 / (download) - annotate - [select for diffs], Mon Jan 21 09:45:46 2008 UTC (16 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.4.4.3: +2 -11 lines
Diff to previous 1.4.4.3 (colored) to branchpoint 1.4 (colored) to selected 1.12 (colored)

sync with head

Revision 1.4.2.1 / (download) - annotate - [select for diffs], Wed Jan 9 01:55:43 2008 UTC (16 years, 3 months ago) by matt
Branch: matt-armv6
Changes since 1.4: +4 -13 lines
Diff to previous 1.4 (colored) to selected 1.12 (colored)

sync with HEAD

Revision 1.6.4.1 / (download) - annotate - [select for diffs], Tue Jan 8 22:11:24 2008 UTC (16 years, 3 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.6: +2 -8 lines
Diff to previous 1.6 (colored) next main 1.7 (colored) to selected 1.12 (colored)

Sync with HEAD

Revision 1.7 / (download) - annotate - [select for diffs], Thu Jan 3 02:18:20 2008 UTC (16 years, 3 months ago) by pooka
Branch: MAIN
CVS Tags: matt-armv6-base, bouyer-xeni386-nbase, bouyer-xeni386-base
Changes since 1.6: +2 -8 lines
Diff to previous 1.6 (colored) to selected 1.12 (colored)

struct vop_foo_args comment police: a_l has ceased to be

Revision 1.4.10.2 / (download) - annotate - [select for diffs], Thu Dec 27 00:45:45 2007 UTC (16 years, 3 months ago) by mjf
Branch: mjf-devfs
Changes since 1.4.10.1: +2 -5 lines
Diff to previous 1.4.10.1 (colored) to branchpoint 1.4 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.5.2.1 / (download) - annotate - [select for diffs], Wed Dec 26 19:57:02 2007 UTC (16 years, 3 months ago) by ad
Branch: vmlocking2
Changes since 1.5: +2 -5 lines
Diff to previous 1.5 (colored) next main 1.6 (colored) to selected 1.12 (colored)

Sync with head.

Revision 1.3.8.3 / (download) - annotate - [select for diffs], Sun Dec 9 19:38:08 2007 UTC (16 years, 4 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.3.8.2: +2 -5 lines
Diff to previous 1.3.8.2 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.6 / (download) - annotate - [select for diffs], Sat Dec 8 19:29:43 2007 UTC (16 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, vmlocking2-base3, jmcneill-pm-base, cube-autoconf-base, cube-autoconf
Branch point for: bouyer-xeni386
Changes since 1.5: +2 -5 lines
Diff to previous 1.5 (colored) to selected 1.12 (colored)

Remove cn_lwp from struct componentname.  curlwp should be used
from on.  The NDINIT() macro no longer takes the lwp parameter and
associates the credentials of the calling thread with the namei
structure.

Revision 1.4.10.1 / (download) - annotate - [select for diffs], Sat Dec 8 18:20:14 2007 UTC (16 years, 4 months ago) by mjf
Branch: mjf-devfs
Changes since 1.4: +4 -4 lines
Diff to previous 1.4 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.4.4.3 / (download) - annotate - [select for diffs], Fri Dec 7 17:31:56 2007 UTC (16 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.4.4.2: +4 -4 lines
Diff to previous 1.4.4.2 (colored) to branchpoint 1.4 (colored) to selected 1.12 (colored)

sync with head

Revision 1.3.8.2 / (download) - annotate - [select for diffs], Tue Nov 27 19:37:39 2007 UTC (16 years, 4 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.3.8.1: +4 -4 lines
Diff to previous 1.3.8.1 (colored) to branchpoint 1.3 (colored) to selected 1.12 (colored)

Sync with HEAD. amd64 Xen support needs testing.

Revision 1.5 / (download) - annotate - [select for diffs], Mon Nov 26 19:01:45 2007 UTC (16 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: vmlocking2-base2, vmlocking2-base1, vmlocking-nbase, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base
Branch point for: vmlocking2
Changes since 1.4: +4 -4 lines
Diff to previous 1.4 (colored) to selected 1.12 (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.3.8.1 / (download) - annotate - [select for diffs], Mon Sep 3 16:48:45 2007 UTC (16 years, 7 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.3: +4 -16 lines
Diff to previous 1.3 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.4.4.2 / (download) - annotate - [select for diffs], Mon Sep 3 14:40:21 2007 UTC (16 years, 7 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.4.4.1: +1060 -0 lines
Diff to previous 1.4.4.1 (colored) to branchpoint 1.4 (colored) to selected 1.12 (colored)

sync with head.

Revision 1.3.4.1 / (download) - annotate - [select for diffs], Mon Sep 3 10:22:55 2007 UTC (16 years, 7 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.3: +4 -16 lines
Diff to previous 1.3 (colored) next main 1.4 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.2.2.2 / (download) - annotate - [select for diffs], Mon Aug 20 21:26:07 2007 UTC (16 years, 8 months ago) by ad
Branch: vmlocking
Changes since 1.2.2.1: +4 -16 lines
Diff to previous 1.2.2.1 (colored) next main 1.3 (colored) to selected 1.12 (colored)

Sync with HEAD.

Revision 1.4.4.1, Fri Aug 17 17:44:43 2007 UTC (16 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.4: +0 -1060 lines
FILE REMOVED

file hfs_vnops.c was added on branch yamt-lazymbuf on 2007-09-03 14:40:21 +0000

Revision 1.4 / (download) - annotate - [select for diffs], Fri Aug 17 17:44:43 2007 UTC (16 years, 8 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, vmlocking-base, nick-csl-alignment-base5, matt-armv6-prevmlocking, jmcneill-base, bouyer-xenamd64-base2, bouyer-xenamd64-base, bouyer-xenamd64
Branch point for: yamt-lazymbuf, mjf-devfs, matt-armv6
Changes since 1.3: +4 -16 lines
Diff to previous 1.3 (colored) to selected 1.12 (colored)

In the new world order (a.k.a. the human-understandable world order)
VOP_LOOKUP ignores LOCKPARENT completely, so make this ignore it also.

XXX: tested only with rump, but I can't really see how this worked
at all before

Revision 1.2.6.1 / (download) - annotate - [select for diffs], Wed Jul 11 20:09:22 2007 UTC (16 years, 9 months ago) by mjf
Branch: mjf-ufs-trans
Changes since 1.2: +4 -3 lines
Diff to previous 1.2 (colored) next main 1.3 (colored) to selected 1.12 (colored)

Sync with head.

Revision 1.2.2.1 / (download) - annotate - [select for diffs], Tue Apr 10 13:26:34 2007 UTC (17 years ago) by ad
Branch: vmlocking
Changes since 1.2: +4 -3 lines
Diff to previous 1.2 (colored) to selected 1.12 (colored)

Sync with head.

Revision 1.2.8.1 / (download) - annotate - [select for diffs], Thu Mar 29 19:27:54 2007 UTC (17 years ago) by reinoud
Branch: reinoud-bufcleanup
Changes since 1.2: +4 -3 lines
Diff to previous 1.2 (colored) next main 1.3 (colored) to selected 1.12 (colored)

Pullup to -current

Revision 1.2.4.3 / (download) - annotate - [select for diffs], Sat Mar 24 14:55:56 2007 UTC (17 years ago) by yamt
Branch: yamt-idlelwp
Changes since 1.2.4.2: +4 -3 lines
Diff to previous 1.2.4.2 (colored) next main 1.3 (colored) to selected 1.12 (colored)

sync with head.

Revision 1.3 / (download) - annotate - [select for diffs], Thu Mar 22 13:21:28 2007 UTC (17 years ago) by dillo
Branch: MAIN
CVS Tags: yamt-idlelwp-base8, thorpej-atomic-base, thorpej-atomic, nick-csl-alignment-base, mjf-ufs-trans-base, matt-mips64-base, matt-mips64, hpcarm-cleanup
Branch point for: nick-csl-alignment, jmcneill-pm
Changes since 1.2: +4 -3 lines
Diff to previous 1.2 (colored) to selected 1.12 (colored)

Add support for HFS Wrapper (HFS+ volume inside an HFS volume).
Remove offset argument, we should now find an HFS+ volume in any
of its standard places.

Based on work from and test image provided by Pelle Johansson.

Revision 1.2.4.2 / (download) - annotate - [select for diffs], Mon Mar 12 06:14:55 2007 UTC (17 years, 1 month ago) by rmind
Branch: yamt-idlelwp
Changes since 1.2.4.1: +1071 -0 lines
Diff to previous 1.2.4.1 (colored) to selected 1.12 (colored)

Sync with HEAD (missed new files in previous).

Revision 1.2.4.1, Tue Mar 6 11:28:48 2007 UTC (17 years, 1 month ago) by rmind
Branch: yamt-idlelwp
Changes since 1.2: +0 -1071 lines
FILE REMOVED

file hfs_vnops.c was added on branch yamt-idlelwp on 2007-03-12 06:14:55 +0000

Revision 1.2 / (download) - annotate - [select for diffs], Tue Mar 6 11:28:48 2007 UTC (17 years, 1 month ago) by dillo
Branch: MAIN
Branch point for: yamt-idlelwp, vmlocking, reinoud-bufcleanup, mjf-ufs-trans
Changes since 1.1: +146 -146 lines
Diff to previous 1.1 (colored) to selected 1.12 (colored)

Complete rename of hfsp to hfs, requested by thorpej.

Revision 1.1 / (download) - annotate - [select for diffs], Tue Mar 6 00:22:05 2007 UTC (17 years, 1 month ago) by dillo
Branch: MAIN
Diff to selected 1.12 (colored)

Rename files from hfsp to hfs.

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




CVSweb <webmaster@jp.NetBSD.org>