The NetBSD Project

CVS log for src/sys/kern/vfs_init.c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.64 / (download) - annotate - [select for diffs], Sat Sep 23 18:21:11 2023 UTC (6 months ago) by ad
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, HEAD
Changes since 1.63: +2 -11 lines
Diff to previous 1.63 (colored) to selected 1.57 (colored)

Repply this change with a couple of bugs fixed:

- Do away with separate pool_cache for some kernel objects that have no special
  requirements and use the general purpose allocator instead. On one of my
  test systems this makes for a small (~1%) but repeatable reduction in system
  time during builds presumably because it decreases the kernel's cache /
  memory bandwidth footprint a little.
- vfs_lockf: cache a pointer to the uidinfo and put mutex in the data segment.

Revision 1.63 / (download) - annotate - [select for diffs], Tue Sep 12 16:17:21 2023 UTC (6 months, 2 weeks ago) by ad
Branch: MAIN
Changes since 1.62: +11 -2 lines
Diff to previous 1.62 (colored) to selected 1.57 (colored)

Back out recent change to replace pool_cache with then general allocator.
Will return to this when I have time again.

Revision 1.62 / (download) - annotate - [select for diffs], Sun Sep 10 14:45:52 2023 UTC (6 months, 2 weeks ago) by ad
Branch: MAIN
Changes since 1.61: +2 -11 lines
Diff to previous 1.61 (colored) to selected 1.57 (colored)

- Do away with separate pool_cache for some kernel objects that have no special
  requirements and use the general purpose allocator instead.  On one of my
  test systems this makes for a small (~1%) but repeatable reduction in system
  time during builds presumably because it decreases the kernel's cache /
  memory bandwidth footprint a little.
- vfs_lockf: cache a pointer to the uidinfo and put mutex in the data segment.

Revision 1.61 / (download) - annotate - [select for diffs], Sat Apr 29 10:07:22 2023 UTC (11 months ago) by riastradh
Branch: MAIN
Changes since 1.60: +6 -2 lines
Diff to previous 1.60 (colored) to selected 1.57 (colored)

vfs(9): Move SDT_PROVIDER_DEFINE(vfs) from vfs_cache.c to vfs_init.c.

Not a namecache-specific thing.

Revision 1.60 / (download) - annotate - [select for diffs], Sat Apr 29 10:07:13 2023 UTC (11 months ago) by riastradh
Branch: MAIN
Changes since 1.59: +13 -11 lines
Diff to previous 1.59 (colored) to selected 1.57 (colored)

kern/vfs_init.c: Sort includes.  No functional change intended.

Revision 1.59 / (download) - annotate - [select for diffs], Fri Nov 18 00:10:03 2022 UTC (16 months, 1 week ago) by riastradh
Branch: MAIN
CVS Tags: 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
Changes since 1.58: +2 -7 lines
Diff to previous 1.58 (colored) to selected 1.57 (colored)

kern/vfs_init.c: extern vfs_op_descs got rehomed in sys/vnode.h.

Revision 1.58 / (download) - annotate - [select for diffs], Wed Oct 26 23:40:20 2022 UTC (17 months ago) by riastradh
Branch: MAIN
Changes since 1.57: +3 -4 lines
Diff to previous 1.57 (colored)

miscfs/fifofs/fifo.h: New home for extern fifo_vnodeop_opv_desc.

Add include guard and fix missing includes while here too.

Revision 1.57 / (download) - annotate - [selected], Wed Oct 26 23:40:08 2022 UTC (17 months ago) by riastradh
Branch: MAIN
Changes since 1.56: +3 -3 lines
Diff to previous 1.56 (colored)

miscfs/specfs/specdev.h: New home for extern spec_vnodeop_opv_desc.

Also use it for extern spec_vnodeop_p, which is already there.

Revision 1.56 / (download) - annotate - [select for diffs], Wed Oct 26 23:39:43 2022 UTC (17 months ago) by riastradh
Branch: MAIN
Changes since 1.55: +4 -3 lines
Diff to previous 1.55 (colored) to selected 1.57 (colored)

miscfs/deadfs/deadfs.h: New home for deadfs-related externs.

XXX regen sys/kern/vnode_if.c and the others

Revision 1.55 / (download) - annotate - [select for diffs], Wed Oct 26 23:39:21 2022 UTC (17 months ago) by riastradh
Branch: MAIN
Changes since 1.54: +2 -4 lines
Diff to previous 1.54 (colored) to selected 1.57 (colored)

sys/mount.h: New home for vfs_timestamp_precision, vfs_magiclinks.

Revision 1.54 / (download) - annotate - [select for diffs], Sat Feb 12 15:51:29 2022 UTC (2 years, 1 month ago) by thorpej
Branch: MAIN
CVS Tags: bouyer-sunxi-drm-base, bouyer-sunxi-drm
Changes since 1.53: +6 -4 lines
Diff to previous 1.53 (colored) to selected 1.57 (colored)

Add inline functions to manipulate the klists that link up knotes
via kn_selnext:

- klist_init()
- klist_fini()
- klist_insert()
- klist_remove()

These provide some API insulation from the implementation details of these
lists (but not completely; see vn_knote_attach() and vn_knote_detach()).
Currently just a wrapper around SLIST(9).

This will make it significantly easier to switch kn_selnext linkage
to a different kind of list.

Revision 1.53 / (download) - annotate - [select for diffs], Sun Sep 26 21:29:38 2021 UTC (2 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.52: +5 -2 lines
Diff to previous 1.52 (colored) to selected 1.57 (colored)

Fix the locking around EVFILT_FS.  Previously, the code would walk the
fs_klist and take the kqueue_misc_lock inside the event callback.
However, that list can be modified by the attach and detach callbacks,
which could result in the walker stepping right off a cliff.

Instead, we give the fs_klist it's own lock, and hold it while we
call knote(), using the NOTE_SUBMIT protocol.  Also, fs_filtops
into vfs_syscalls.c so all of the locking logic is contained in one
file (there is precedence with sig_filtops).  fs_filtops is now marked
MPSAFE.

Revision 1.51.2.1 / (download) - annotate - [select for diffs], Sat Apr 3 22:29:00 2021 UTC (2 years, 11 months ago) by thorpej
Branch: thorpej-futex
Changes since 1.51: +10 -2 lines
Diff to previous 1.51 (colored) next main 1.52 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.52 / (download) - annotate - [select for diffs], Thu Feb 4 21:07:06 2021 UTC (3 years, 1 month ago) by jdolecek
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-futex-base, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.51: +10 -2 lines
Diff to previous 1.51 (colored) to selected 1.57 (colored)

introduce vfs.generic.timestamp_precision sysctl to control precision
of the timer used for vfs_timestamp(); default stays the same
to use nanotime(9), but option is there to use the faster, albeit
less precise methods

code taken from FreeBSD

suggested by Mateusz Guzik in:
http://mail-index.netbsd.org/tech-kern/2020/07/19/msg026620.html

Revision 1.51 / (download) - annotate - [select for diffs], Sat May 16 18:31:50 2020 UTC (3 years, 10 months ago) by christos
Branch: MAIN
Branch point for: thorpej-futex
Changes since 1.50: +4 -4 lines
Diff to previous 1.50 (colored) to selected 1.57 (colored)

Add ACL support for FFS. From FreeBSD.

Revision 1.48.18.2 / (download) - annotate - [select for diffs], Wed Apr 8 14:08:52 2020 UTC (3 years, 11 months ago) by martin
Branch: phil-wifi
Changes since 1.48.18.1: +3 -3 lines
Diff to previous 1.48.18.1 (colored) to branchpoint 1.48 (colored) next main 1.49 (colored) to selected 1.57 (colored)

Merge changes from current as of 20200406

Revision 1.49.6.1 / (download) - annotate - [select for diffs], Sat Feb 29 20:21:03 2020 UTC (4 years ago) by ad
Branch: ad-namecache
Changes since 1.49: +3 -3 lines
Diff to previous 1.49 (colored) next main 1.50 (colored) to selected 1.57 (colored)

Sync with head.

Revision 1.50 / (download) - annotate - [select for diffs], Fri Feb 21 00:26:22 2020 UTC (4 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, is-mlppp-base, is-mlppp, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh, ad-namecache-base3
Changes since 1.49: +3 -3 lines
Diff to previous 1.49 (colored) to selected 1.57 (colored)

Explicitly cast pointers to uintptr_t before casting to enums. They are
not necessarily the same size. Don't cast pointers to bool, check for
NULL instead.

Revision 1.48.18.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:09:04 2019 UTC (4 years, 9 months ago) by christos
Branch: phil-wifi
Changes since 1.48: +4 -2 lines
Diff to previous 1.48 (colored) to selected 1.57 (colored)

Sync with HEAD

Revision 1.49 / (download) - annotate - [select for diffs], Thu Mar 28 18:12:24 2019 UTC (5 years ago) by maxv
Branch: MAIN
CVS Tags: phil-wifi-20191119, phil-wifi-20190609, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, isaki-audio2-base, isaki-audio2, ad-namecache-base2, ad-namecache-base1, ad-namecache-base
Branch point for: ad-namecache
Changes since 1.48: +4 -2 lines
Diff to previous 1.48 (colored) to selected 1.57 (colored)

Move pnbuf_cache into vfs_init.c, where it belongs.

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

update from HEAD

Revision 1.47.6.1 / (download) - annotate - [select for diffs], Sat Jun 6 14:40:22 2015 UTC (8 years, 9 months ago) by skrll
Branch: nick-nhusb
Changes since 1.47: +2 -4 lines
Diff to previous 1.47 (colored) next main 1.48 (colored) to selected 1.57 (colored)

Sync with HEAD

Revision 1.48 / (download) - annotate - [select for diffs], Wed May 6 15:57:08 2015 UTC (8 years, 10 months ago) by hannken
Branch: MAIN
CVS Tags: tls-maxphys-base-20171202, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, 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, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, 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, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: phil-wifi
Changes since 1.47: +2 -4 lines
Diff to previous 1.47 (colored) to selected 1.57 (colored)

Remove miscfs/syncfs and

- move the syncer into kern/vfs_subr.c.

- change the syncer to process the mountlist and VFS_SYNC as appropriate.

- use an API for mount points similiar to the API for vnodes:
  - vfs_syncer_add_to_worklist(struct mount *mp) to add
  - vfs_syncer_remove_from_worklist(struct mount *mp) to remove a mount.

No objections on tech-kern@

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

Rebase to HEAD as of a few days ago.

Revision 1.45.12.2 / (download) - annotate - [select for diffs], Thu May 22 11:41:04 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.45.12.1: +2 -7 lines
Diff to previous 1.45.12.1 (colored) to branchpoint 1.45 (colored) next main 1.46 (colored) to selected 1.57 (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.46.4.1 / (download) - annotate - [select for diffs], Sun May 18 17:46:08 2014 UTC (9 years, 10 months ago) by rmind
Branch: rmind-smpnet
Changes since 1.46: +2 -7 lines
Diff to previous 1.46 (colored) next main 1.47 (colored) to selected 1.57 (colored)

sync with head

Revision 1.47 / (download) - annotate - [select for diffs], Tue Feb 25 18:30:11 2014 UTC (10 years, 1 month ago) by pooka
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, rmind-smpnet-nbase, rmind-smpnet-base, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, 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.46: +2 -7 lines
Diff to previous 1.46 (colored) to selected 1.57 (colored)

Ensure that the top level sysctl nodes (kern, vfs, net, ...) exist before
the sysctl link sets are processed, and remove redundancy.

Shaves >13kB off of an amd64 GENERIC, not to mention >1k duplicate
lines of code.

Revision 1.45.12.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:08:31 2012 UTC (11 years, 11 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.45: +14 -5 lines
Diff to previous 1.45 (colored) to selected 1.57 (colored)

sync with head

Revision 1.45.16.1 / (download) - annotate - [select for diffs], Thu Apr 5 21:33:40 2012 UTC (11 years, 11 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.45: +14 -5 lines
Diff to previous 1.45 (colored) next main 1.46 (colored) to selected 1.57 (colored)

sync to latest -current.

Revision 1.46 / (download) - annotate - [select for diffs], Tue Mar 13 18:40:55 2012 UTC (12 years ago) by elad
Branch: MAIN
CVS Tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, khorben-n900, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base10, agc-symver-base, agc-symver
Branch point for: tls-maxphys, rmind-smpnet
Changes since 1.45: +14 -5 lines
Diff to previous 1.45 (colored) to selected 1.57 (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.37.10.3 / (download) - annotate - [select for diffs], Thu Mar 11 15:04:21 2010 UTC (14 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.37.10.2: +58 -2 lines
Diff to previous 1.37.10.2 (colored) to branchpoint 1.37 (colored) next main 1.38 (colored) to selected 1.57 (colored)

sync with head

Revision 1.45 / (download) - annotate - [select for diffs], Mon Oct 5 04:20:13 2009 UTC (14 years, 5 months ago) by elad
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, yamt-nfs-mp-base9, yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2, uebayasi-xip-base1, uebayasi-xip-base, uebayasi-xip, rmind-uvmplock-nbase, rmind-uvmplock-base, rmind-uvmplock, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-premerge-20091211, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, matt-mips64-premerge-20101231, jym-xensuspend-nbase, jruoho-x86intr-base, jruoho-x86intr, 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, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Branch point for: yamt-pagecache, jmcneill-usbmp
Changes since 1.44: +58 -2 lines
Diff to previous 1.44 (colored) to selected 1.57 (colored)

- Add usermount_common_policy() that implements some common (everything
  but access control) user mounting policies: enforced MNT_NOSUID and
  MNT_NODEV, no MNT_EXPORT, MNT_EXEC propagation. This can be useful for
  secmodels that are interested in simply adding finer grained user mount
  support.

- Add a mount subsystem listener for KAUTH_REQ_SYSTEM_MOUNT_GET.

Revision 1.43.2.1 / (download) - annotate - [select for diffs], Wed May 13 17:21:58 2009 UTC (14 years, 10 months ago) by jym
Branch: jym-xensuspend
Changes since 1.43: +2 -10 lines
Diff to previous 1.43 (colored) next main 1.44 (colored) to selected 1.57 (colored)

Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.

Revision 1.37.10.2 / (download) - annotate - [select for diffs], Mon May 4 08:13:49 2009 UTC (14 years, 10 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.37.10.1: +54 -7 lines
Diff to previous 1.37.10.1 (colored) to branchpoint 1.37 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.44 / (download) - annotate - [select for diffs], Sun May 3 21:25:44 2009 UTC (14 years, 10 months ago) by elad
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, jymxensuspend-base, jym-xensuspend-base
Changes since 1.43: +2 -10 lines
Diff to previous 1.43 (colored) to selected 1.57 (colored)

Move dovfsusermount to secmodel_bsd44, where it really belongs.

The secmodel code now creates the same knob in two places: both under the
secmodel itself, as well as the widely known location.

Mailing list references:

    http://mail-index.netbsd.org/source-changes/2009/05/02/msg220641.html
    http://mail-index.netbsd.org/tech-kern/2009/05/03/msg005015.html

Revision 1.41.2.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:19:40 2009 UTC (15 years, 2 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.41: +56 -7 lines
Diff to previous 1.41 (colored) next main 1.42 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.37.6.3 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:20 2009 UTC (15 years, 2 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.37.6.2: +54 -5 lines
Diff to previous 1.37.6.2 (colored) to branchpoint 1.37 (colored) next main 1.38 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.43 / (download) - annotate - [select for diffs], Sat Jan 17 07:02:35 2009 UTC (15 years, 2 months ago) by yamt
Branch: MAIN
CVS Tags: nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, mjf-devfs2-base
Branch point for: jym-xensuspend
Changes since 1.42: +6 -7 lines
Diff to previous 1.42 (colored) to selected 1.57 (colored)

malloc -> kmem_alloc.

Revision 1.40.4.2 / (download) - annotate - [select for diffs], Sat Dec 13 01:15:09 2008 UTC (15 years, 3 months ago) by haad
Branch: haad-dm
Changes since 1.40.4.1: +52 -2 lines
Diff to previous 1.40.4.1 (colored) to branchpoint 1.40 (colored) next main 1.41 (colored) to selected 1.57 (colored)

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

Revision 1.42 / (download) - annotate - [select for diffs], Sun Dec 7 20:58:46 2008 UTC (15 years, 3 months ago) by pooka
Branch: MAIN
CVS Tags: haad-nbase2, haad-dm-base2, haad-dm-base
Changes since 1.41: +52 -2 lines
Diff to previous 1.41 (colored) to selected 1.57 (colored)

Move some sysctl node creations away from linksets and into the
constructors for subsystems.

XXX: CTLFLAG_PERMANENT is non-sensible.

Revision 1.40.4.1 / (download) - annotate - [select for diffs], Sun Oct 19 22:17:29 2008 UTC (15 years, 5 months ago) by haad
Branch: haad-dm
Changes since 1.40: +8 -2 lines
Diff to previous 1.40 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.39.2.2 / (download) - annotate - [select for diffs], Fri Oct 10 22:34:14 2008 UTC (15 years, 5 months ago) by skrll
Branch: wrstuden-revivesa
Changes since 1.39.2.1: +8 -2 lines
Diff to previous 1.39.2.1 (colored) next main 1.40 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.37.6.2 / (download) - annotate - [select for diffs], Sun Oct 5 20:11:32 2008 UTC (15 years, 5 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.37.6.1: +6 -0 lines
Diff to previous 1.37.6.1 (colored) to branchpoint 1.37 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.41 / (download) - annotate - [select for diffs], Sat Sep 27 13:01:07 2008 UTC (15 years, 6 months ago) by reinoud
Branch: MAIN
CVS Tags: wrstuden-revivesa-base-4, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, haad-dm-base1, ad-audiomp2-base, ad-audiomp2
Branch point for: nick-hppapmap
Changes since 1.40: +8 -2 lines
Diff to previous 1.40 (colored) to selected 1.57 (colored)

Add generic FS agnostic directory hashing support. Currently only in use by
UDF. Future users could be msdosfs, ufs, nilfs2 (when ready), cd9660 etc.

Note that its not the same as UFS's DIRHASH support; UFS would need a good
cleanup/splitout of directory operations to adopt to this new directory
hashing support since most directory operations are interweaved with the
vnops itself. This is a TODO.

Revision 1.39.2.1 / (download) - annotate - [select for diffs], Mon Jun 23 04:31:52 2008 UTC (15 years, 9 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.39: +7 -17 lines
Diff to previous 1.39 (colored) to selected 1.57 (colored)

Sync w/ -current. 34 merge conflicts to follow.

Revision 1.37.6.1 / (download) - annotate - [select for diffs], Mon Jun 2 13:24:14 2008 UTC (15 years, 9 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.37: +8 -19 lines
Diff to previous 1.37 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.37.8.1 / (download) - annotate - [select for diffs], Sun May 18 12:35:11 2008 UTC (15 years, 10 months ago) by yamt
Branch: yamt-pf42
Changes since 1.37: +8 -19 lines
Diff to previous 1.37 (colored) next main 1.38 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.37.10.1 / (download) - annotate - [select for diffs], Fri May 16 02:25:28 2008 UTC (15 years, 10 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.37: +8 -19 lines
Diff to previous 1.37 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.40 / (download) - annotate - [select for diffs], Sat May 10 02:26:09 2008 UTC (15 years, 10 months ago) by rumble
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-nfs-mp-base2, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, hpcarm-cleanup-nbase
Branch point for: haad-dm
Changes since 1.39: +7 -17 lines
Diff to previous 1.39 (colored) to selected 1.57 (colored)

Convert file systems to dynamically attach with the new module interface.
Make VFS hooks dynamic while we're here and say farewell to VFS_ATTACH and
VFS_HOOKS_ATTACH linksets.

As a consequence, most of the file systems can now be loaded as new style
modules.

Quick sanity check by ad@.

Revision 1.39 / (download) - annotate - [select for diffs], Sun May 4 12:43:58 2008 UTC (15 years, 10 months ago) by ad
Branch: MAIN
Branch point for: wrstuden-revivesa
Changes since 1.38: +9 -3 lines
Diff to previous 1.38 (colored) to selected 1.57 (colored)

Ensure that there is always a link_set_vfsops, until we kill VFS_ATTACH().

Revision 1.38 / (download) - annotate - [select for diffs], Mon Apr 28 20:24:05 2008 UTC (15 years, 11 months ago) by martin
Branch: MAIN
Changes since 1.37: +2 -9 lines
Diff to previous 1.37 (colored) to selected 1.57 (colored)

Remove clause 3 and 4 from TNF licenses

Revision 1.34.6.3 / (download) - annotate - [select for diffs], Sun Mar 23 02:05:02 2008 UTC (16 years ago) by matt
Branch: matt-armv6
Changes since 1.34.6.2: +4 -2 lines
Diff to previous 1.34.6.2 (colored) to branchpoint 1.34 (colored) next main 1.35 (colored) to selected 1.57 (colored)

sync with HEAD

Revision 1.35.4.2 / (download) - annotate - [select for diffs], Mon Feb 18 21:06:48 2008 UTC (16 years, 1 month ago) by mjf
Branch: mjf-devfs
Changes since 1.35.4.1: +4 -2 lines
Diff to previous 1.35.4.1 (colored) to branchpoint 1.35 (colored) next main 1.36 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.28.2.5 / (download) - annotate - [select for diffs], Mon Jan 21 09:46:31 2008 UTC (16 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.28.2.4: +4 -2 lines
Diff to previous 1.28.2.4 (colored) to branchpoint 1.28 (colored) next main 1.29 (colored) to selected 1.57 (colored)

sync with head

Revision 1.36.6.1 / (download) - annotate - [select for diffs], Sat Jan 19 12:15:27 2008 UTC (16 years, 2 months ago) by bouyer
Branch: bouyer-xeni386
Changes since 1.36: +4 -2 lines
Diff to previous 1.36 (colored) next main 1.37 (colored) to selected 1.57 (colored)

Sync with HEAD

Revision 1.37 / (download) - annotate - [select for diffs], Wed Jan 16 12:34:51 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, bouyer-xeni386-nbase, bouyer-xeni386-base, ad-socklock-base1
Branch point for: yamt-pf42, yamt-nfs-mp, mjf-devfs2
Changes since 1.36: +4 -2 lines
Diff to previous 1.36 (colored) to selected 1.57 (colored)

Pull in my modules code for review/test/hacking.

Revision 1.35.4.1 / (download) - annotate - [select for diffs], Mon Nov 19 00:48:59 2007 UTC (16 years, 4 months ago) by mjf
Branch: mjf-devfs
Changes since 1.35: +5 -5 lines
Diff to previous 1.35 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.28.2.4 / (download) - annotate - [select for diffs], Thu Nov 15 11:44:57 2007 UTC (16 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.28.2.3: +5 -5 lines
Diff to previous 1.28.2.3 (colored) to branchpoint 1.28 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.35.2.1 / (download) - annotate - [select for diffs], Tue Nov 13 16:02:36 2007 UTC (16 years, 4 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.35: +5 -5 lines
Diff to previous 1.35 (colored) next main 1.36 (colored) to selected 1.57 (colored)

Sync with HEAD

Revision 1.34.4.2 / (download) - annotate - [select for diffs], Sun Nov 11 16:48:19 2007 UTC (16 years, 4 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.34.4.1: +5 -5 lines
Diff to previous 1.34.4.1 (colored) to branchpoint 1.34 (colored) next main 1.35 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.34.6.2 / (download) - annotate - [select for diffs], Thu Nov 8 11:00:10 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.34.6.1: +5 -5 lines
Diff to previous 1.34.6.1 (colored) to branchpoint 1.34 (colored) to selected 1.57 (colored)

sync with -HEAD

Revision 1.36 / (download) - annotate - [select for diffs], Wed Nov 7 00:23:25 2007 UTC (16 years, 4 months ago) by ad
Branch: MAIN
CVS Tags: yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, matt-armv6-base, jmcneill-pm-base, cube-autoconf-base, cube-autoconf, bouyer-xeni386-merge1, bouyer-xenamd64-base2, bouyer-xenamd64-base
Branch point for: bouyer-xeni386
Changes since 1.35: +5 -5 lines
Diff to previous 1.35 (colored) to selected 1.57 (colored)

Merge from vmlocking:

- pool_cache changes.
- Debugger/procfs locking fixes.
- Other minor changes.

Revision 1.34.6.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:32:47 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.34: +36 -8 lines
Diff to previous 1.34 (colored) to selected 1.57 (colored)

sync with HEAD

Revision 1.28.2.3 / (download) - annotate - [select for diffs], Sat Oct 27 11:35:40 2007 UTC (16 years, 5 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.28.2.2: +36 -8 lines
Diff to previous 1.28.2.2 (colored) to branchpoint 1.28 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.34.4.1 / (download) - annotate - [select for diffs], Fri Oct 26 15:48:45 2007 UTC (16 years, 5 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.34: +36 -8 lines
Diff to previous 1.34 (colored) to selected 1.57 (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.34.8.1 / (download) - annotate - [select for diffs], Sun Oct 14 11:48:49 2007 UTC (16 years, 5 months ago) by yamt
Branch: yamt-x86pmap
Changes since 1.34: +36 -8 lines
Diff to previous 1.34 (colored) next main 1.35 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.35 / (download) - annotate - [select for diffs], Wed Oct 10 20:42:26 2007 UTC (16 years, 5 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, vmlocking-base, jmcneill-base
Branch point for: mjf-devfs, bouyer-xenamd64
Changes since 1.34: +36 -8 lines
Diff to previous 1.34 (colored) to selected 1.57 (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.28.2.2 / (download) - annotate - [select for diffs], Mon Sep 3 14:41:21 2007 UTC (16 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.28.2.1: +101 -3 lines
Diff to previous 1.28.2.1 (colored) to branchpoint 1.28 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.32.8.3 / (download) - annotate - [select for diffs], Sat Sep 1 12:56:50 2007 UTC (16 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.32.8.2: +5 -5 lines
Diff to previous 1.32.8.2 (colored) to branchpoint 1.32 (colored) next main 1.33 (colored) to selected 1.57 (colored)

Update for pool_cache API changes.

Revision 1.32.8.2 / (download) - annotate - [select for diffs], Mon Aug 20 21:27:43 2007 UTC (16 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.32.8.1: +128 -2 lines
Diff to previous 1.32.8.1 (colored) to branchpoint 1.32 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.33.8.1 / (download) - annotate - [select for diffs], Wed Aug 15 13:49:21 2007 UTC (16 years, 7 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.33: +100 -2 lines
Diff to previous 1.33 (colored) next main 1.34 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.34.10.2 / (download) - annotate - [select for diffs], Fri Jul 27 14:25:22 2007 UTC (16 years, 8 months ago) by pooka
Branch: matt-mips64
Changes since 1.34.10.1: +447 -0 lines
Diff to previous 1.34.10.1 (colored) to branchpoint 1.34 (colored) next main 1.35 (colored) to selected 1.57 (colored)

Move vfs_attach(), vfs_detach() and vfs_reinit() from vfs_subr.c
to vfs_init.c.  This permits easier standalone compilation of these
routines.

Revision 1.34.10.1, Fri Jul 27 14:25:21 2007 UTC (16 years, 8 months ago) by pooka
Branch: matt-mips64
Changes since 1.34: +0 -447 lines
FILE REMOVED

file vfs_init.c was added on branch matt-mips64 on 2007-07-27 14:25:22 +0000

Revision 1.34 / (download) - annotate - [select for diffs], Fri Jul 27 14:25:21 2007 UTC (16 years, 8 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.33: +100 -2 lines
Diff to previous 1.33 (colored) to selected 1.57 (colored)

Move vfs_attach(), vfs_detach() and vfs_reinit() from vfs_subr.c
to vfs_init.c.  This permits easier standalone compilation of these
routines.

Revision 1.32.4.1 / (download) - annotate - [select for diffs], Sat Mar 24 14:56:06 2007 UTC (17 years ago) by yamt
Branch: yamt-idlelwp
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored) next main 1.33 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.32.8.1 / (download) - annotate - [select for diffs], Tue Mar 13 16:51:59 2007 UTC (17 years ago) by ad
Branch: vmlocking
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored) to selected 1.57 (colored)

Sync with head.

Revision 1.33 / (download) - annotate - [select for diffs], Mon Mar 12 18:18:35 2007 UTC (17 years ago) by ad
Branch: MAIN
CVS Tags: yamt-idlelwp-base8, thorpej-atomic-base, thorpej-atomic, reinoud-bufcleanup, nick-csl-alignment-base, mjf-ufs-trans-base, mjf-ufs-trans
Branch point for: nick-csl-alignment
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored) to selected 1.57 (colored)

Pass an ipl argument to pool_init/POOL_INIT to be used when initializing
the pool's lock.

Revision 1.30.22.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:18:46 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.30.22.1: +3 -3 lines
Diff to previous 1.30.22.1 (colored) to branchpoint 1.30 (colored) next main 1.31 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.30.20.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:39:23 2006 UTC (17 years, 4 months ago) by ad
Branch: newlock2
Changes since 1.30: +2 -2 lines
Diff to previous 1.30 (colored) next main 1.31 (colored) to selected 1.57 (colored)

Sync with head.

Revision 1.32 / (download) - annotate - [select for diffs], Wed Nov 1 10:17:59 2006 UTC (17 years, 5 months ago) by yamt
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, 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
Changes since 1.31: +3 -3 lines
Diff to previous 1.31 (colored) to selected 1.57 (colored)

remove some __unused from function parameters.

Revision 1.30.22.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:07:11 2006 UTC (17 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored) to selected 1.57 (colored)

sync with head

Revision 1.31 / (download) - annotate - [select for diffs], Thu Oct 12 01:32:19 2006 UTC (17 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored) to selected 1.57 (colored)

- sprinkle __unused on function decls.
- fix a couple of unused bugs
- no more -Wno-unused for i386

Revision 1.28.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:09:39 2006 UTC (17 years, 9 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.28: +2 -8 lines
Diff to previous 1.28 (colored) to selected 1.57 (colored)

sync with head.

Revision 1.30 / (download) - annotate - [select for diffs], Tue Dec 27 04:06:46 2005 UTC (18 years, 3 months ago) by chs
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-splraiseipl-base, yamt-pdpolicy-base9, yamt-pdpolicy-base8, yamt-pdpolicy-base7, yamt-pdpolicy-base6, yamt-pdpolicy-base5, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, yamt-pdpolicy, simonb-timecounters-base, simonb-timecounters, simonb-timcounters-final, rpaulo-netinet-merge-pcb-base, rpaulo-netinet-merge-pcb, peter-altq-base, peter-altq, gdamore-uart-base, gdamore-uart, elad-kernelauth-base, elad-kernelauth, chap-midi-nbase, chap-midi-base, chap-midi, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-splraiseipl, newlock2
Changes since 1.29: +2 -8 lines
Diff to previous 1.29 (colored) to selected 1.57 (colored)

changes for making DIAGNOSTIC not change the kernel ABI:
 - for structure fields that are conditionally present,
   make those fields always present.
 - for functions which are conditionally inline, make them never inline.
 - remove some other functions which are conditionally defined but
   don't actually do anything anymore.
 - make a lock-debugging function conditional on only LOCKDEBUG.

as discussed on tech-kern some time back.

Revision 1.29 / (download) - annotate - [select for diffs], Sun Dec 11 12:24:30 2005 UTC (18 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.57 (colored)

merge ktrace-lwp.

Revision 1.23.2.6 / (download) - annotate - [select for diffs], Thu Nov 10 14:09:46 2005 UTC (18 years, 4 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.23.2.5: +9 -20 lines
Diff to previous 1.23.2.5 (colored) next main 1.24 (colored) to selected 1.57 (colored)

Sync with HEAD. Here we go again...

Revision 1.28 / (download) - annotate - [select for diffs], Sun Jun 5 23:47:48 2005 UTC (18 years, 9 months ago) by thorpej
Branch: MAIN
CVS Tags: yamt-vop-base3, yamt-vop-base2, yamt-vop-base, yamt-vop, yamt-readahead-pervnode, yamt-readahead-perfile, yamt-readahead-base3, yamt-readahead-base2, yamt-readahead-base, yamt-readahead, thorpej-vnode-attr-base, thorpej-vnode-attr, ktrace-lwp-base
Branch point for: yamt-lazymbuf
Changes since 1.27: +9 -20 lines
Diff to previous 1.27 (colored) to selected 1.57 (colored)

Use ANSI function decls.

Revision 1.25.8.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:24 2005 UTC (18 years, 11 months ago) by kent
Branch: kent-audio2
Changes since 1.25: +8 -8 lines
Diff to previous 1.25 (colored) next main 1.26 (colored) to selected 1.57 (colored)

sync with -current

Revision 1.23.2.5 / (download) - annotate - [select for diffs], Fri Apr 1 14:30:57 2005 UTC (19 years ago) by skrll
Branch: ktrace-lwp
Changes since 1.23.2.4: +7 -7 lines
Diff to previous 1.23.2.4 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.27 / (download) - annotate - [select for diffs], Tue Mar 29 02:41:05 2005 UTC (19 years ago) by thorpej
Branch: MAIN
CVS Tags: kent-audio2-base
Changes since 1.26: +7 -7 lines
Diff to previous 1.26 (colored) to selected 1.57 (colored)

- Define a VFS_ATTACH() macro that places a reference to a vfsops structure
  into the "vfsops" link set.
- Use VFS_ATTACH() where vfsops are declared for individual file systems.
- In vfsinit(), traverse the "vfsops" link set, rather than vfs_list_initial[].

Revision 1.25.10.1 / (download) - annotate - [select for diffs], Sat Mar 19 08:36:12 2005 UTC (19 years ago) by yamt
Branch: yamt-km
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored) next main 1.26 (colored) to selected 1.57 (colored)

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

Revision 1.23.2.4 / (download) - annotate - [select for diffs], Fri Mar 4 16:52:03 2005 UTC (19 years ago) by skrll
Branch: ktrace-lwp
Changes since 1.23.2.3: +3 -3 lines
Diff to previous 1.23.2.3 (colored) to selected 1.57 (colored)

Sync with HEAD.

Hi Perry!

Revision 1.26 / (download) - annotate - [select for diffs], Sat Feb 26 21:34:56 2005 UTC (19 years, 1 month ago) by perry
Branch: MAIN
CVS Tags: yamt-km-base4, yamt-km-base3, netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0, netbsd-3
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored) to selected 1.57 (colored)

nuke trailing whitespace

Revision 1.23.2.3 / (download) - annotate - [select for diffs], Tue Sep 21 13:35:17 2004 UTC (19 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.23.2.2: +2 -2 lines
Diff to previous 1.23.2.2 (colored) to selected 1.57 (colored)

Fix the sync with head I botched.

Revision 1.23.2.2 / (download) - annotate - [select for diffs], Sat Sep 18 14:53:04 2004 UTC (19 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.23.2.1: +0 -0 lines
Diff to previous 1.23.2.1 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.23.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:52:59 2004 UTC (19 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.23: +10 -14 lines
Diff to previous 1.23 (colored) to selected 1.57 (colored)

Sync with HEAD

Revision 1.25 / (download) - annotate - [select for diffs], Tue Mar 23 13:22:05 2004 UTC (20 years ago) by junyoung
Branch: MAIN
CVS Tags: yamt-km-base2, yamt-km-base, 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, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: yamt-km, kent-audio2
Changes since 1.24: +9 -9 lines
Diff to previous 1.24 (colored) to selected 1.57 (colored)

Nuke __P().

Revision 1.24 / (download) - annotate - [select for diffs], Thu Aug 7 16:32:02 2003 UTC (20 years, 7 months ago) by agc
Branch: MAIN
Changes since 1.23: +3 -7 lines
Diff to previous 1.23 (colored) to selected 1.57 (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.23 / (download) - annotate - [select for diffs], Sat May 17 15:53:42 2003 UTC (20 years, 10 months ago) by mjl
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.22: +3 -3 lines
Diff to previous 1.22 (colored) to selected 1.57 (colored)

Typos in comments.

Revision 1.18.2.4 / (download) - annotate - [select for diffs], Fri Oct 18 02:44:57 2002 UTC (21 years, 5 months ago) by nathanw
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.18.2.3: +1 -1 lines
Diff to previous 1.18.2.3 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored) to selected 1.57 (colored)

Catch up to -current.

Revision 1.18.4.3 / (download) - annotate - [select for diffs], Thu Oct 10 18:43:21 2002 UTC (21 years, 5 months ago) by jdolecek
Branch: kqueue
Changes since 1.18.4.2: +3 -3 lines
Diff to previous 1.18.4.2 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored) to selected 1.57 (colored)

sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work

Revision 1.22 / (download) - annotate - [select for diffs], Thu Sep 26 04:07:35 2002 UTC (21 years, 6 months ago) by thorpej
Branch: MAIN
CVS Tags: nathanw_sa_before_merge, nathanw_sa_base, kqueue-beforemerge, kqueue-base, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, fvdl_fs64_base
Changes since 1.21: +3 -3 lines
Diff to previous 1.21 (colored) to selected 1.57 (colored)

Overhaul the way parent attachments are specified; instead of using
a vector of indices into the cfdata table to specify potential parents,
record the interface attributes that devices have and add a new "parent
spec" structure which lists the iattr, as well as optionally listing
specific parent device instances.

See:

    http://mail-index.netbsd.org/tech-kern/2002/09/25/0014.html

...for a detailed description.

While here, const poison some things, as suggested by Matt Thomas.

Revision 1.18.2.3 / (download) - annotate - [select for diffs], Mon Apr 1 07:48:02 2002 UTC (22 years ago) by nathanw
Branch: nathanw_sa
Changes since 1.18.2.2: +1 -1 lines
Diff to previous 1.18.2.2 (colored) to branchpoint 1.18 (colored) to selected 1.57 (colored)

Catch up to -current.
(CVS: It's not just a program. It's an adventure!)

Revision 1.18.4.2 / (download) - annotate - [select for diffs], Sat Mar 16 16:01:53 2002 UTC (22 years ago) by jdolecek
Branch: kqueue
Changes since 1.18.4.1: +3 -3 lines
Diff to previous 1.18.4.1 (colored) to branchpoint 1.18 (colored) to selected 1.57 (colored)

Catch up with -current.

Revision 1.21 / (download) - annotate - [select for diffs], Fri Mar 8 20:48:42 2002 UTC (22 years ago) by thorpej
Branch: MAIN
CVS Tags: 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, gehenna-devsw-base, gehenna-devsw, eeh-devprop-base, eeh-devprop
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored) to selected 1.57 (colored)

Pool deals fairly well with physical memory shortage, but it doesn't
deal with shortages of the VM maps where the backing pages are mapped
(usually kmem_map).  Try to deal with this:

* Group all information about the backend allocator for a pool in a
  separate structure.  The pool references this structure, rather than
  the individual fields.
* Change the pool_init() API accordingly, and adjust all callers.
* Link all pools using the same backend allocator on a list.
* The backend allocator is responsible for waiting for physical memory
  to become available, but will still fail if it cannot callocate KVA
  space for the pages.  If this happens, carefully drain all pools using
  the same backend allocator, so that some KVA space can be freed.
* Change pool_reclaim() to indicate if it actually succeeded in freeing
  some pages, and use that information to make draining easier and more
  efficient.
* Get rid of PR_URGENT.  There was only one use of it, and it could be
  dealt with by the caller.

From art@openbsd.org.

Revision 1.18.4.1 / (download) - annotate - [select for diffs], Thu Jan 10 20:00:19 2002 UTC (22 years, 2 months ago) by thorpej
Branch: kqueue
Changes since 1.18: +6 -2 lines
Diff to previous 1.18 (colored) to selected 1.57 (colored)

Sync kqueue branch with -current.

Revision 1.18.2.2 / (download) - annotate - [select for diffs], Wed Nov 14 19:16:48 2001 UTC (22 years, 4 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.18.2.1: +4 -1 lines
Diff to previous 1.18.2.1 (colored) to branchpoint 1.18 (colored) to selected 1.57 (colored)

Catch up to -current.

Revision 1.19.2.1 / (download) - annotate - [select for diffs], Mon Nov 12 21:19:01 2001 UTC (22 years, 4 months ago) by thorpej
Branch: thorpej-mips-cache
Changes since 1.19: +4 -1 lines
Diff to previous 1.19 (colored) next main 1.20 (colored) to selected 1.57 (colored)

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

Revision 1.20 / (download) - annotate - [select for diffs], Mon Nov 12 15:25:38 2001 UTC (22 years, 4 months ago) by lukem
Branch: MAIN
CVS Tags: thorpej-mips-cache-base, ifpoll-base
Changes since 1.19: +4 -1 lines
Diff to previous 1.19 (colored) to selected 1.57 (colored)

add RCSIDs

Revision 1.18.2.1 / (download) - annotate - [select for diffs], Mon Oct 22 20:41:51 2001 UTC (22 years, 5 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.18: +3 -2 lines
Diff to previous 1.18 (colored) to selected 1.57 (colored)

Catch up to -current.

Revision 1.19 / (download) - annotate - [select for diffs], Wed Oct 17 23:33:29 2001 UTC (22 years, 5 months ago) by thorpej
Branch: MAIN
Branch point for: thorpej-mips-cache
Changes since 1.18: +3 -2 lines
Diff to previous 1.18 (colored) to selected 1.57 (colored)

Use a pool cache for namei buffers -- it's faster to allocate from
a pool cache than a pool.

Revision 1.14.12.2 / (download) - annotate - [select for diffs], Sun Feb 11 19:16:50 2001 UTC (23 years, 1 month ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.14.12.1: +42 -32 lines
Diff to previous 1.14.12.1 (colored) to branchpoint 1.14 (colored) next main 1.15 (colored) to selected 1.57 (colored)

Sync with HEAD.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Jan 22 12:17:41 2001 UTC (23 years, 2 months ago) by jdolecek
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base, thorpej-devvp-base3, thorpej-devvp-base2, thorpej-devvp-base, thorpej-devvp, pre-chs-ubcperf, post-chs-ubcperf
Branch point for: nathanw_sa, kqueue
Changes since 1.17: +13 -13 lines
Diff to previous 1.17 (colored) to selected 1.57 (colored)

make filesystem vnodeop, specop, fifoop and vnodeopv_* arrays const

Revision 1.17 / (download) - annotate - [select for diffs], Mon Jan 22 09:57:25 2001 UTC (23 years, 2 months ago) by jdolecek
Branch: MAIN
Changes since 1.16: +32 -22 lines
Diff to previous 1.16 (colored) to selected 1.57 (colored)

rename vfs_op_init() to vfs_op_check() and make it only check the offsets
and number of ops, not touch anything - vnode_if.sh now generated
proper offset numbers; vfs_op_check() is only defined and called for DEBUG
kernels

constify extern declaration of vfs_op_descs[]
g/c vfs_opv_numops, use VNODE_OPS_COUNT instead
make vfs_opv_init_explicit() and vfs_opv_init_default() static

Revision 1.14.12.1 / (download) - annotate - [select for diffs], Mon Nov 20 18:09:16 2000 UTC (23 years, 4 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.14: +10 -2 lines
Diff to previous 1.14 (colored) to selected 1.57 (colored)

Update thorpej_scsipi to -current as of a month ago

Revision 1.16 / (download) - annotate - [select for diffs], Thu Aug 3 20:41:23 2000 UTC (23 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.15: +8 -2 lines
Diff to previous 1.15 (colored) to selected 1.57 (colored)

Convert namei pathname buffer allocation to use the pool allocator.

Revision 1.14.18.1 / (download) - annotate - [select for diffs], Mon Dec 27 18:35:54 1999 UTC (24 years, 3 months ago) by wrstuden
Branch: wrstuden-devbsize
Changes since 1.14: +3 -1 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.57 (colored)

Pull up to last week's -current.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Nov 15 18:49:09 1999 UTC (24 years, 4 months ago) by fvdl
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, netbsd-1-5-base, netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2, netbsd-1-5, minoura-xpg4dl-base, minoura-xpg4dl, chs-ubc2-newbase
Changes since 1.14: +3 -1 lines
Diff to previous 1.14 (colored) to selected 1.57 (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.14.14.1 / (download) - annotate - [select for diffs], Tue Oct 19 12:50:06 1999 UTC (24 years, 5 months ago) by fvdl
Branch: fvdl-softdep
Changes since 1.14: +3 -1 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.57 (colored)

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

Revision 1.14 / (download) - annotate - [select for diffs], Tue Aug 4 04:03:18 1998 UTC (25 years, 8 months ago) by perry
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, kenh-if-detach-base, kenh-if-detach, kame_14_19990705, kame_14_19990628, kame_141_19991130, kame, fvdl-softdep-base, comdex-fall-1999-base, comdex-fall-1999, chs-ubc2-base, chs-ubc2, chs-ubc-base, chs-ubc
Branch point for: wrstuden-devbsize, thorpej_scsipi, fvdl-softdep
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored) to selected 1.57 (colored)

Abolition of bcopy, ovbcopy, bcmp, and bzero, phase one.
  bcopy(x, y, z) ->  memcpy(y, x, z)
ovbcopy(x, y, z) -> memmove(y, x, z)
   bcmp(x, y, z) ->  memcmp(x, y, z)
  bzero(x, y)    ->  memset(x, 0, y)

Revision 1.13 / (download) - annotate - [select for diffs], Wed Jun 24 20:58:45 1998 UTC (25 years, 9 months ago) by sommerfe
Branch: MAIN
CVS Tags: eeh-paddr_t-base, eeh-paddr_t
Changes since 1.12: +1 -7 lines
Diff to previous 1.12 (colored) to selected 1.57 (colored)

Always include fifos; "not an option any more".

Revision 1.12 / (download) - annotate - [select for diffs], Mon Jun 22 22:01:04 1998 UTC (25 years, 9 months ago) by sommerfe
Branch: MAIN
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (colored) to selected 1.57 (colored)

defopt for options FIFO

Revision 1.11 / (download) - annotate - [select for diffs], Mon Mar 30 02:32:38 1998 UTC (26 years ago) by mrg
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.57 (colored)

add missing int to typedef

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

Merge with Lite2 + local changes

Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 1 02:13:04 1998 UTC (26 years, 1 month ago) by fvdl
Branch: netbsd, CSRG
CVS Tags: lite-2
Changes since 1.1.1.1: +12 -7 lines
Diff to previous 1.1.1.1 (colored) to selected 1.57 (colored)

Import 4.4BSD-Lite2

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 1 02:09:54 1998 UTC (26 years, 1 month ago) by fvdl
Branch: netbsd, CSRG
CVS Tags: lite-1, date-03-may-96
Changes since 1.1: +2 -3 lines
Diff to previous 1.1 (colored) to selected 1.57 (colored)

Import 4.4BSD-Lite for reference

Revision 1.9 / (download) - annotate - [select for diffs], Wed Feb 18 07:15:30 1998 UTC (26 years, 1 month ago) by thorpej
Branch: MAIN
Changes since 1.8: +119 -40 lines
Diff to previous 1.8 (colored) to selected 1.57 (colored)

Change vfs_opv_init_explicit() to not allocate the vnode operations
vectors; defer that to vfs_opv_init().

Change the interface to vfs_opv_init() and export it; it now takes a
pointer to an array of vnodeopv_desc *'s to initialize.  Allocate
the vnode operations vectors here.  Called by vfs_attach().

Implement vfs_opv_free(), which deallocates the vnode operations
vectors.  Called by vfs_detach().

Change vfsinit() to build the initial vfs_list by traversing the
vfs_list_inital[] table, and vfs_attach()'ing those file systems.
Also, initialize special vnodeopv_descs (dead, fifo, spec) which
are not associated with any particular file system.

Revision 1.8 / (download) - annotate - [select for diffs], Sun Oct 13 02:32:50 1996 UTC (27 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: thorpej-signal-base, thorpej-signal, thorpej-setroot, 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, mrg-vm-swap, marc-pcmcia-bp, marc-pcmcia-base, marc-pcmcia, is-newarp-before-merge, is-newarp-base, is-newarp, bouyer-scsipi
Changes since 1.7: +5 -5 lines
Diff to previous 1.7 (colored) to selected 1.57 (colored)

backout previous kprintf change

Revision 1.7 / (download) - annotate - [select for diffs], Thu Oct 10 22:46:38 1996 UTC (27 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.6: +5 -5 lines
Diff to previous 1.6 (colored) to selected 1.57 (colored)

printf -> kprintf, sprintf -> ksprintf

Revision 1.6 / (download) - annotate - [select for diffs], Fri Feb 9 19:00:58 1996 UTC (28 years, 1 month ago) by christos
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.5: +1 -2 lines
Diff to previous 1.5 (colored) to selected 1.57 (colored)

More proto fixes

Revision 1.5 / (download) - annotate - [select for diffs], Sun Feb 4 02:18:17 1996 UTC (28 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.4: +15 -7 lines
Diff to previous 1.4 (colored) to selected 1.57 (colored)

First pass at prototyping

Revision 1.4 / (download) - annotate - [select for diffs], Sun Mar 19 23:45:01 1995 UTC (29 years ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-1-base, netbsd-1-1-RELEASE, netbsd-1-1-PATCH001, netbsd-1-1
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored) to selected 1.57 (colored)

Use %p.

Revision 1.2.2.1 / (download) - annotate - [select for diffs], Sun Jul 24 07:20:21 1994 UTC (29 years, 8 months ago) by cgd
Branch: netbsd-1-0
CVS Tags: netbsd-1-0-RELEASE, netbsd-1-0-PATCH1, netbsd-1-0-PATCH06, netbsd-1-0-PATCH05, netbsd-1-0-PATCH04, netbsd-1-0-PATCH03, netbsd-1-0-PATCH02, netbsd-1-0-PATCH0
Changes since 1.2: +87 -68 lines
Diff to previous 1.2 (colored) next main 1.3 (colored) to selected 1.57 (colored)

from trunk

Revision 1.3 / (download) - annotate - [select for diffs], Sun Jul 24 07:15:19 1994 UTC (29 years, 8 months ago) by mycroft
Branch: MAIN
Changes since 1.2: +87 -68 lines
Diff to previous 1.2 (colored) to selected 1.57 (colored)

Clean this up a bit, and separate parts of vfs_opv_init() into separate
functions.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Jun 29 06:33:53 1994 UTC (29 years, 9 months ago) by cgd
Branch: MAIN
CVS Tags: netbsd-1-0-base
Branch point for: netbsd-1-0
Changes since 1.1: +3 -2 lines
Diff to previous 1.1 (colored) to selected 1.57 (colored)

New RCS ID's, take two.  they're more aesthecially pleasant, and use 'NetBSD'

Revision 1.1 / (download) - annotate - [select for diffs], Wed Jun 8 11:28:54 1994 UTC (29 years, 9 months ago) by mycroft
Branch: MAIN
Diff to selected 1.57 (colored)

Update to 4.4-Lite fs code.

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>