The NetBSD Project

CVS log for src/sbin/raidctl/raidctl.8

[BACK] Up to [cvs.NetBSD.org] / src / sbin / raidctl

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.79.2.2: download - view: text, markup, annotated - select for diffs
Sun Apr 28 12:12:00 2024 UTC (7 months ago) by martin
Branches: netbsd-10
Diff to: previous 1.79.2.1: preferred, colored; branchpoint 1.79: preferred, colored; next MAIN 1.80: preferred, colored
Changes since revision 1.79.2.1: +63 -3 lines
Pull up following revision(s) (requested by oster in ticket #675):

	sbin/raidctl/raidctl.8: revision 1.81
	sbin/raidctl/raidctl.c: revision 1.80

Implement command-line configuration of simple RAID sets with raidctl
based on the usage pattern:

 raidctl <device> create <level> <component1> <component2> ...

For example,

 raidctl raid0 create mirror absent /dev/wd1e

will create a RAID level 1 (mirror) set with an absent first component
and /dev/wd1e as the second component. The resulting RAID device will
be marked as auto-configurable, will have a serial number set (based
on the current time), and parity will be initialized. Reasonable
performance values are automatically used by default for other parameters
normally specified in the configuration file.

Also: Only print out Autoconfig status if being verbose.

Revision 1.79.2.1: download - view: text, markup, annotated - select for diffs
Sun Apr 28 12:09:08 2024 UTC (7 months ago) by martin
Branches: netbsd-10
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +11 -63 lines
Pull up following revision(s) (requested by oster in ticket #674):

	sys/dev/raidframe/rf_raid.h: revision 1.52
	sbin/raidctl/raidctl.8: revision 1.80
	sys/dev/raidframe/rf_driver.c: revision 1.141
	sys/dev/raidframe/rf_disks.c: revision 1.94
	sys/dev/raidframe/rf_diskqueue.c: revision 1.64
	sys/dev/raidframe/rf_diskqueue.h: revision 1.30
	sys/dev/raidframe/rf_disks.h: revision 1.15
	sys/dev/raidframe/rf_netbsdkintf.c: revision 1.414
	sys/dev/raidframe/rf_reconstruct.c: revision 1.129
	sys/dev/raidframe/raidframeio.h: revision 1.12
	sbin/raidctl/raidctl.c: revision 1.79

Implement hot removal of spares and components. From manu@.

Implement a long desired feature of automatically incorporating
a used spare into the array after a reconstruct.

Given the configuration:

Components:
 /dev/wd0e: failed
 /dev/wd1e: optimal
 /dev/wd2e: optimal
Spares:
 /dev/wd3e: spare

Running 'raidctl -F /dev/wd0e raid0' will now result in the
following configuration after a successful rebuild:

Components:
 /dev/wd3e: optimal
 /dev/wd1e: optimal
 /dev/wd2e: optimal
No spares.

Thanks to manu@ for the development of the initial set of changes
which allowed the changes to automatically incorporate a used spare
to come to fruition. Thanks also to manu@ for useful discussions
about and additional testing of these changes.

Revision 1.82: download - view: text, markup, annotated - select for diffs
Mon Sep 25 21:59:38 2023 UTC (14 months, 1 week ago) by oster
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs, HEAD
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +5 -18 lines


We no longer need the deprecated copyback functionality now that
incorporating a used spare is automatic.

Copyback has always been an issue, as to do a copyback all IO to
the array had to be suspended, and so was very, very unlikely to
have been used in anything resembling a production system.

Revision 1.81: download - view: text, markup, annotated - select for diffs
Thu Sep 21 01:40:44 2023 UTC (14 months, 1 week ago) by oster
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +63 -3 lines


Implement command-line configuration of simple RAID sets with raidctl
based on the usage pattern:

    raidctl <device> create <level> <component1> <component2> ...

For example,

    raidctl raid0 create mirror absent /dev/wd1e

will create a RAID level 1 (mirror) set with an absent first component
and /dev/wd1e as the second component.  The resulting RAID device will
be marked as auto-configurable, will have a serial number set (based
on the current time), and parity will be initialized.  Reasonable
performance values are automatically used by default for other parameters
normally specified in the configuration file.

Also: Only print out Autoconfig status if being verbose.

Revision 1.80: download - view: text, markup, annotated - select for diffs
Sun Sep 17 20:07:39 2023 UTC (14 months, 2 weeks ago) by oster
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +11 -63 lines


Implement hot removal of spares and components.  From manu@.

Implement a long desired feature of automatically incorporating
a used spare into the array after a reconstruct.

Given the configuration:
Components:
           /dev/wd0e: failed
           /dev/wd1e: optimal
           /dev/wd2e: optimal
Spares:
           /dev/wd3e: spare

Running 'raidctl -F /dev/wd0e raid0' will now result in the
following configuration after a successful rebuild:
Components:
           /dev/wd3e: optimal
           /dev/wd1e: optimal
           /dev/wd2e: optimal
No spares.

Thanks to manu@ for the development of the initial set of changes
which allowed the changes to automatically incorporate a used spare
to come to fruition.  Thanks also to manu@ for useful discussions
about and additional testing of these changes.

Revision 1.79: download - view: text, markup, annotated - select for diffs
Tue Jun 14 08:06:18 2022 UTC (2 years, 5 months ago) by kre
Branches: 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
Branch point for: netbsd-10
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +10 -2 lines
Implement "raidctl -t config-file"

This does the same config file parse  that -c/-C do, but only
that (hence no raidframe device is needed, or accepted).

Any syntax errors in the config file will be reported, nothing
else happens.

Revision 1.78: download - view: text, markup, annotated - select for diffs
Mon Aug 2 20:31:15 2021 UTC (3 years, 4 months ago) by oster
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +14 -2 lines

Support on-demand re-scanning all devices to look for
autoconfig RAID sets.  raidctl now supports looking
for autoconfig RAID sets with a new '-L' flag.

Revision 1.74.10.1: download - view: text, markup, annotated - select for diffs
Mon May 31 22:15:08 2021 UTC (3 years, 6 months ago) by cjep
Branches: cjep_staticlib_x
Diff to: previous 1.74: preferred, colored; next MAIN 1.75: preferred, colored
Changes since revision 1.74: +11 -5 lines
sync with head

Revision 1.77: download - view: text, markup, annotated - select for diffs
Thu May 27 07:03:27 2021 UTC (3 years, 6 months ago) by wiz
Branches: MAIN
CVS tags: cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +4 -4 lines
Avoid using Pq.

In this case, the parentheses were wrong when a line was extended.

Revision 1.76: download - view: text, markup, annotated - select for diffs
Thu May 27 06:53:37 2021 UTC (3 years, 6 months ago) by mrg
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +3 -24 lines
move the basic history i wrote from raidctl(8) to raid(4), and
fix the x86 (thanks simonb) and sparc bootable dates, a couple
of spelling errors.

Revision 1.75: download - view: text, markup, annotated - select for diffs
Wed May 26 08:23:18 2021 UTC (3 years, 6 months ago) by mrg
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +30 -3 lines
update the list of platforms supporting loading kernels from raid.
expand the HISTORY section to include notable RF moments in netbsd.
bump date.

Revision 1.71.8.1: download - view: text, markup, annotated - select for diffs
Mon Sep 10 17:56:00 2018 UTC (6 years, 2 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1
Diff to: previous 1.71: preferred, colored; next MAIN 1.72: preferred, colored
Changes since revision 1.71: +2 -1 lines
Pull up following revision(s) (requested by nakayama in ticket #1019):

	sbin/raidctl/rf_configure.h: revision 1.2
	sbin/raidctl/rf_configure.c: revision 1.27
	sbin/raidctl/rf_configure.c: revision 1.28
	sbin/raidctl/rf_configure.c: revision 1.29
	sbin/raidctl/raidctl.8: revision 1.73
	sbin/raidctl/rf_configure.c: revision 1.30
	sbin/raidctl/rf_configure.c: revision 1.31
	sbin/raidctl/rf_configure.c: revision 1.32

support NAME=<wedge name> syntax for disks and spares

 -

stop using magic constants
wrap long lines
use warn{,x}
make static
knf

 -

White space and comment formatting.   NFC.

 -

With char bug[SIZE]  using sizeof(bug[0]) is kind of boring, use
sizeof(bug) instead...

 -

Avoid needless pointer calisthenics: &foo[0] -> foo

 -

Several more cleanups:
1. Don't force use of "for" when "while" works better.
2. No need to check c != '\0' when we also check (c == ' ' || c == '\t')
3. Use the size of the buffer we're using, rather than a different one
   (not really a concern, they're the same size)
4. Don't use fscanf() to read file data, use fgets() & sscanf().
5. After using a pointer as a char *, validate alignment before switching
   to int * (can only fail if kernel #define gets set stupidly)   Or #6...
6. Validate sparemap file name isn't too long for assigned space.
7. recognise that strlen() returns size_t - don't shove it into an int.
8. On out of mem, be more clear which allocation failed in warning msg.

ATF tests all pass.   But I don't think they use sparemap files.

Revision 1.74: download - view: text, markup, annotated - select for diffs
Thu Jan 18 00:32:49 2018 UTC (6 years, 10 months ago) by mrg
Branches: MAIN
CVS tags: 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, netbsd-9-base, netbsd-9-4-RELEASE, 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, is-mlppp-base, is-mlppp, cjep_staticlib_x-base
Branch point for: cjep_staticlib_x
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +26 -22 lines
implement 32-bit compat support for raidframe.

convert several raidframe ioctls to be bitsize idempotent so that
they work the same in 32 and 64 bit worlds, allowing netbsd32 to
configure and query raid properly.  remove useless 'row' in a few
places.  add COMPAT_80 and put the old ioctls there.

raidframeio.h:
  RAIDFRAME_TEST_ACC
  - remove, unused
  RAIDFRAME_GET_COMPONENT_LABEL
  - convert to label not pointer to label
  RAIDFRAME_CHECK_RECON_STATUS_EXT
  RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT
  RAIDFRAME_CHECK_COPYBACK_STATUS_EXT
  - convert to progress info not pointer to info
  RAIDFRAME_GET_INFO
  - version entirely.
raidframevar.h:
  - rf_recon_req{} has row, flags and raidPtr removed (they're
    not a useful part of this interface.)
  - RF_Config_s{} and RF_DeviceConfig_s{} have numRow/rows removed.
  - RF_RaidDisk_s{} is re-ordered slightly to fix alignment
    padding - the actual data was already OK.
  - InstallSpareTable() loses row argument

rf_compat32.c has code for RF_Config_s{} in 32 bit mode, used
by RAIDFRAME_CONFIGURE and RAIDFRAME_GET_INFO32.

rf_compat80.c has code for rf_recon_req{}, RF_RaidDisk_s{} and
RF_DeviceConfig_s{} to handle RAIDFRAME_FAIL_DISK,
RAIDFRAME_GET_COMPONENT_LABEL, RAIDFRAME_CHECK_RECON_STATUS_EXT,
RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT,
RAIDFRAME_CHECK_COPYBACK_STATUS_EXT, RAIDFRAME_GET_INFO.

move several of the per-ioctl code blocks into separate functions.

add rf_recon_req_internal{} to replace old usage of global
rf_recon_req{} that had unused void * in the structure, ruining
it's 32/64 bit ABI.

add missing case for RAIDFRAME_GET_INFO50.

adjust raid tests to use the new .conf format, and add a case to
test the old method as well.

raidctl:
deal with lack of 'row' members in a couple of places.
fail request no longer takes row.
handle "START array" sections with just "numCol numSpare", ie
no "numRow" specified.  for now, generate old-style configuration
but update raidctl.8 to specify the new style (keeping reference
to the old style.)

note that: RF_ComponentLabel_s::{row,num_rows} and
RF_SingleComponent_s::row are obsolete but not removed yet.

Revision 1.73: download - view: text, markup, annotated - select for diffs
Mon Nov 20 18:37:56 2017 UTC (7 years ago) by kardel
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +2 -1 lines
support NAME=<wedge name> syntax for disks and spares

Revision 1.67.4.2: download - view: text, markup, annotated - select for diffs
Fri Jul 14 15:39:32 2017 UTC (7 years, 4 months ago) by martin
Branches: netbsd-7
CVS tags: netbsd-7-2-RELEASE
Diff to: previous 1.67.4.1: preferred, colored; branchpoint 1.67: preferred, colored; next MAIN 1.68: preferred, colored
Changes since revision 1.67.4.1: +11 -2 lines
Pull up following revision(s) (requested by christos in ticket #1457):
	sbin/raidctl/raidctl.c: revision 1.64
	sbin/raidctl/raidctl.8: revision 1.70
	sys/dev/raidframe/rf_netbsdkintf.c: revision 1.341
	sys/dev/raidframe/raidframeio.h: revision 1.7
Add a SET_LAST_UNIT ioctl.
Access to the SET_LAST_UNIT ioctl.

Revision 1.72: download - view: text, markup, annotated - select for diffs
Mon Jul 3 21:33:42 2017 UTC (7 years, 5 months ago) by wiz
Branches: MAIN
CVS tags: perseant-stdc-iso10646-base, perseant-stdc-iso10646
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +2 -2 lines
Remove workaround for ancient HTML generation code.

Revision 1.71: download - view: text, markup, annotated - select for diffs
Wed Jan 6 22:57:44 2016 UTC (8 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, netbsd-8-base, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: netbsd-8
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +66 -66 lines
Use standard sort order for options.

Add -U to usage.

Revision 1.70: download - view: text, markup, annotated - select for diffs
Wed Jan 6 17:41:36 2016 UTC (8 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +11 -2 lines
Access to the SET_LAST_UNIT ioctl.

Revision 1.67.4.1: download - view: text, markup, annotated - select for diffs
Sun Jul 5 20:22:34 2015 UTC (9 years, 4 months ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, 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-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +13 -11 lines
Pull up following revision(s) (requested by sborrill in ticket #863):
	sbin/raidctl/raidctl.8: revisions 1.68, 1.69
Clarify that what was previously known as -A root is now -A forceroot, not
-A softroot and that -A root can still be used for historical reasons.
--
Bump date for previous. Add whitespace.
Fix some mandoc warnings.

Revision 1.69: download - view: text, markup, annotated - select for diffs
Tue Jun 30 22:16:12 2015 UTC (9 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +3 -11 lines
Bump date for previous. Add whitespace.
Fix some mandoc warnings.

Revision 1.68: download - view: text, markup, annotated - select for diffs
Tue Jun 30 17:18:13 2015 UTC (9 years, 5 months ago) by sborrill
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +12 -2 lines
Clarify that what was previously known as -A root is now -A forceroot, not
-A softroot and that -A root can still be used for historical reasons.

Revision 1.64.2.1: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:02:27 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.64: preferred, colored; next MAIN 1.65: preferred, colored
Changes since revision 1.64: +10 -6 lines
Rebase to HEAD as of a few days ago.

Revision 1.63.2.2: download - view: text, markup, annotated - select for diffs
Thu May 22 11:37:31 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.63.2.1: preferred, colored; branchpoint 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63.2.1: +10 -6 lines
sync with head.

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

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

Revision 1.67: download - view: text, markup, annotated - select for diffs
Thu Apr 3 18:54:10 2014 UTC (10 years, 8 months ago) by christos
Branches: MAIN
CVS tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, netbsd-7-base, netbsd-7-0-RC1
Branch point for: netbsd-7
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +8 -4 lines
Add the ability to "softroot" mount (i.e. mount root only when the raid
set contains the boot device), as opposed to "hardroot" (the previous
default which forces the raid to be root no matter what).

Revision 1.66: download - view: text, markup, annotated - select for diffs
Mon Oct 7 10:50:37 2013 UTC (11 years, 1 month ago) by jdc
Branches: MAIN
CVS tags: riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +4 -4 lines
Belatedly note root on RAIDframe support for sandpoint.

Revision 1.56.2.1.2.1: download - view: text, markup, annotated - select for diffs
Fri Sep 20 14:20:28 2013 UTC (11 years, 2 months ago) by riz
Branches: netbsd-5-1
CVS tags: netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE
Diff to: previous 1.56.2.1: preferred, colored; next MAIN 1.56.2.2: preferred, colored
Changes since revision 1.56.2.1: +2 -2 lines
Pull up following revision(s) (requested by tron in ticket #1879):
	sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

Revision 1.56.2.1.6.1: download - view: text, markup, annotated - select for diffs
Fri Sep 20 14:18:45 2013 UTC (11 years, 2 months ago) by riz
Branches: netbsd-5-2
CVS tags: netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE
Diff to: previous 1.56.2.1: preferred, colored; next MAIN 1.56.2.2: preferred, colored
Changes since revision 1.56.2.1: +2 -2 lines
Pull up following revision(s) (requested by tron in ticket #1879):
	sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

Revision 1.56.2.2: download - view: text, markup, annotated - select for diffs
Fri Sep 20 14:17:49 2013 UTC (11 years, 2 months ago) by riz
Branches: netbsd-5
Diff to: previous 1.56.2.1: preferred, colored; branchpoint 1.56: preferred, colored; next MAIN 1.57: preferred, colored
Changes since revision 1.56.2.1: +2 -2 lines
Pull up following revision(s) (requested by tron in ticket #1879):
	sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

Revision 1.63.8.1: download - view: text, markup, annotated - select for diffs
Fri Sep 20 14:15:07 2013 UTC (11 years, 2 months ago) by riz
Branches: netbsd-6-0
CVS tags: netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE
Diff to: previous 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63: +2 -2 lines
Pull up following revision(s) (requested by tron in ticket #948):
	sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

Revision 1.63.10.1: download - view: text, markup, annotated - select for diffs
Fri Sep 20 14:14:28 2013 UTC (11 years, 2 months ago) by riz
Branches: netbsd-6-1
CVS tags: netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE
Diff to: previous 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63: +2 -2 lines
Pull up following revision(s) (requested by tron in ticket #948):
	sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

Revision 1.63.4.1: download - view: text, markup, annotated - select for diffs
Fri Sep 20 14:13:21 2013 UTC (11 years, 2 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.63: preferred, colored; next MAIN 1.64: preferred, colored
Changes since revision 1.63: +2 -2 lines
Pull up following revision(s) (requested by tron in ticket #948):
	sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

Revision 1.65: download - view: text, markup, annotated - select for diffs
Fri Sep 20 06:43:57 2013 UTC (11 years, 2 months ago) by tron
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +2 -2 lines
Note that NetBSD/amd64 can boot of RAID volumes.

Revision 1.63.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 17 00:05:42 2012 UTC (12 years, 7 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +2 -3 lines
sync with head

Revision 1.64: download - view: text, markup, annotated - select for diffs
Fri Mar 23 18:28:13 2012 UTC (12 years, 8 months ago) by njoly
Branches: 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, agc-symver-base, agc-symver
Branch point for: tls-maxphys
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +2 -3 lines
Remove unexpected newline between Em macro and text.

Revision 1.63: download - view: text, markup, annotated - select for diffs
Tue Aug 2 10:28:00 2011 UTC (13 years, 4 months ago) by wiz
Branches: MAIN
CVS tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-1-RELEASE, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Branch point for: yamt-pagecache, netbsd-6-1, netbsd-6-0, netbsd-6
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +4 -3 lines
New sentence, new line.

Revision 1.62: download - view: text, markup, annotated - select for diffs
Thu Jul 28 18:25:22 2011 UTC (13 years, 4 months ago) by buhrow
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +13 -1 lines


Document the need for zeroing out the first 64 blocks of a replacement
component in a failed RAID set in order to avoid potentially configuring
RAId 1 sets with erroneous values taken from random extent data in the
replacement component partitions.

Revision 1.56.8.1: download - view: text, markup, annotated - select for diffs
Wed Apr 21 05:26:34 2010 UTC (14 years, 7 months ago) by matt
Branches: matt-nb5-mips64
CVS tags: matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-k15
Diff to: previous 1.56: preferred, colored; next MAIN 1.57: preferred, colored
Changes since revision 1.56: +51 -3 lines
sync to netbsd-5

Revision 1.61: download - view: text, markup, annotated - select for diffs
Wed Jan 27 09:26:16 2010 UTC (14 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: matt-mips64-premerge-20101231, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +2 -1 lines
+ Fatal errors due to uninitialized components are ignored.
for -C. For dillo@

Revision 1.60: download - view: text, markup, annotated - select for diffs
Wed Jan 27 08:56:08 2010 UTC (14 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +5 -5 lines
Consistently use "START disks" in examples. Bump date.

Revision 1.56.2.1: download - view: text, markup, annotated - select for diffs
Thu Dec 10 22:59:16 2009 UTC (14 years, 11 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, matt-nb5-pq3-base, matt-nb5-pq3
Branch point for: netbsd-5-2, netbsd-5-1
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +51 -3 lines
Pull up following revision(s) (requested by tron in ticket #1187):
	sbin/raidctl/raidctl.8: revisions 1.57-1.59 via patch
	sbin/raidctl/raidctl.c: revision 1.42 via patch
	sys/dev/raidframe/files.raidframe: revision 1.8 via patch
	sys/dev/raidframe/rf_copyback.c: revision 1.42 via patch
	sys/dev/raidframe/rf_disks.c: revision 1.72 via patch
	sys/dev/raidframe/rf_driver.c: revision 1.122 via patch
	sys/dev/raidframe/rf_engine.c: revision 1.40 via patch
	sys/dev/raidframe/rf_kintf.h: revision 1.21 via patch
	sys/dev/raidframe/rf_netbsdkintf.c: revision 1.269 via patch
	sys/dev/raidframe/rf_paritymap.c: revisions 1.1-1.3 via patch
	sys/dev/raidframe/rf_paritymap.h: revision 1.1 via patch
	sys/dev/raidframe/rf_parityscan.c: revision 1.33 via patch
	sys/dev/raidframe/rf_parityscan.h: revision 1.8 via patch
	sys/dev/raidframe/rf_raid.h: revision 1.38 via patch
	sys/dev/raidframe/rf_reconstruct.c: revision 1.108 via patch
	sys/dev/raidframe/rf_states.c: revision 1.44 via patch
	sys/dev/raidframe/raidframeio.h: revision 1.6 via patch
	sys/dev/raidframe/raidframevar.h: revision 1.13 via patch
Pull up the RAIDframe parity map Summer Of Code project.
Drastically reduces the amount of time spent rewriting parity after an
unclean shutdown by keeping better track of which regions might have had
outstanding writes.  Enabled by default; can be disabled on a per-set
basis, or tuned, with the new raidctl(8) commands.

Revision 1.59: download - view: text, markup, annotated - select for diffs
Tue Nov 17 19:35:48 2009 UTC (15 years ago) by wiz
Branches: MAIN
CVS tags: matt-premerge-20091211
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +3 -3 lines
Remove trailing whitespace.

Revision 1.58: download - view: text, markup, annotated - select for diffs
Tue Nov 17 19:09:38 2009 UTC (15 years ago) by jld
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +3 -3 lines
Bump date; also fix typo pointed out by snj@.

Revision 1.57: download - view: text, markup, annotated - select for diffs
Tue Nov 17 18:54:26 2009 UTC (15 years ago) by jld
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +49 -1 lines
Finally commit the RAIDframe parity map Summer Of Code project.

Drastically reduces the amount of time spent rewriting parity after an
unclean shutdown by keeping better track of which regions might have had
outstanding writes.  Enabled by default; can be disabled on a per-set
basis, or tuned, with the new raidctl(8) commands.

Discussed on tech-kern@ to a general air of approval; exhortations to
commit from mrg@, christos@, and others.

Thanks to Google for their sponsorship, oster@ for mentoring the
project, assorted developers for trying very hard to break it, and
probably more I'm forgetting.

Revision 1.51.4.2: download - view: text, markup, annotated - select for diffs
Sun Sep 28 11:17:14 2008 UTC (16 years, 2 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.51.4.1: preferred, colored; branchpoint 1.51: preferred, colored; next MAIN 1.52: preferred, colored
Changes since revision 1.51.4.1: +6 -6 lines
Sync with HEAD.

Revision 1.52.2.1: download - view: text, markup, annotated - select for diffs
Thu Sep 18 04:28:29 2008 UTC (16 years, 2 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.52: preferred, colored; next MAIN 1.53: preferred, colored
Changes since revision 1.52: +7 -7 lines
Sync with wrstuden-revivesa-base-2.

Revision 1.56: download - view: text, markup, annotated - select for diffs
Thu Aug 28 21:24:30 2008 UTC (16 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, netbsd-5-base, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, mjf-devfs2-base, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20091211, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, jym-xensuspend-nbase, jym-xensuspend-base, jym-xensuspend
Branch point for: netbsd-5, matt-nb5-mips64
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +2 -2 lines
Drop trailing whitespace.

Revision 1.55: download - view: text, markup, annotated - select for diffs
Tue Aug 26 21:08:08 2008 UTC (16 years, 3 months ago) by oster
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +2 -2 lines
Bump date (before wizd).

Revision 1.54: download - view: text, markup, annotated - select for diffs
Tue Aug 26 21:06:55 2008 UTC (16 years, 3 months ago) by oster
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +3 -1 lines
Add description of some of the things 'raidctl -u' doesn't do.

Revision 1.53: download - view: text, markup, annotated - select for diffs
Tue Aug 19 17:38:46 2008 UTC (16 years, 3 months ago) by oster
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +4 -6 lines
We have the notion of an 'absent' disk, so use that in another example.

Revision 1.51.4.1: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:21:23 2008 UTC (16 years, 6 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +1 -8 lines
Sync with HEAD.

Revision 1.51.6.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:30:54 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.51: preferred, colored; next MAIN 1.52: preferred, colored
Changes since revision 1.51: +1 -8 lines
sync with head.

Revision 1.52: download - view: text, markup, annotated - select for diffs
Fri May 2 18:11:05 2008 UTC (16 years, 7 months ago) by martin
Branches: MAIN
CVS tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, hpcarm-cleanup-nbase
Branch point for: wrstuden-revivesa
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +1 -8 lines
Move TNF licenses to 2 clause form

Revision 1.50.2.1: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:38:16 2008 UTC (16 years, 10 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.50: preferred, colored; next MAIN 1.51: preferred, colored
Changes since revision 1.50: +2 -2 lines
sync with HEAD

Revision 1.50.4.1: download - view: text, markup, annotated - select for diffs
Thu Dec 27 00:47:04 2007 UTC (16 years, 11 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.50: preferred, colored; next MAIN 1.51: preferred, colored
Changes since revision 1.50: +2 -2 lines
Sync with HEAD.

Revision 1.51: download - view: text, markup, annotated - select for diffs
Fri Dec 14 07:24:01 2007 UTC (16 years, 11 months ago) by explorer
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base, mjf-devfs-base, matt-armv6-nbase, matt-armv6-base, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-base
Branch point for: yamt-pf42, mjf-devfs2
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -2 lines
Fix a minor typo:  wd0h was repeated, change second instance to wd1h as is likely intended.

Revision 1.50.8.2: download - view: text, markup, annotated - select for diffs
Mon Aug 6 19:44:17 2007 UTC (17 years, 4 months ago) by oster
Branches: matt-mips64
Diff to: previous 1.50.8.1: preferred, colored; branchpoint 1.50: preferred, colored; next MAIN 1.51: preferred, colored
Changes since revision 1.50.8.1: +1559 -0 lines
Talk a bit more about how the size of a RAID set is determined, and
of RF_PROTECTED_SECTORS.  Requested by (and with comments from and
thanks to) Christoph (bad@).

Revision 1.50.8.1
Mon Aug 6 19:44:16 2007 UTC (17 years, 4 months ago) by oster
Branches: matt-mips64
FILE REMOVED
Changes since revision 1.50: +0 -1559 lines
file raidctl.8 was added on branch matt-mips64 on 2007-08-06 19:44:17 +0000

Revision 1.50: download - view: text, markup, annotated - select for diffs
Mon Aug 6 19:44:16 2007 UTC (17 years, 4 months ago) by oster
Branches: MAIN
CVS tags: matt-mips64-base, matt-armv6-prevmlocking, cube-autoconf-base, cube-autoconf
Branch point for: mjf-devfs, matt-mips64, matt-armv6
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +11 -2 lines
Talk a bit more about how the size of a RAID set is determined, and
of RF_PROTECTED_SECTORS.  Requested by (and with comments from and
thanks to) Christoph (bad@).

Revision 1.38.2.2.2.1: download - view: text, markup, annotated - select for diffs
Thu May 5 20:28:58 2005 UTC (19 years, 7 months ago) by riz
Branches: netbsd-2
CVS tags: 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
Diff to: previous 1.38.2.2: preferred, colored; next MAIN 1.39: preferred, colored
Changes since revision 1.38.2.2: +7 -4 lines
Pull up revision 1.41-1.42, 1.44-1.46 (requested by fredb in ticket #1151):
Sync raidctl(8) with raid(4) regarding booting from RAID 1.

Revision 1.49: download - view: text, markup, annotated - select for diffs
Mon Feb 28 22:03:05 2005 UTC (19 years, 9 months ago) by wiz
Branches: MAIN
CVS tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, 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, 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, hpcarm-cleanup, abandoned-netbsd-4-base, abandoned-netbsd-4
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +2 -2 lines
Bump date for previous.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Mon Feb 28 20:37:14 2005 UTC (19 years, 9 months ago) by oster
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +9 -2 lines
Add a few more lines about the 'Parity status:' output of 'raidctl -s'.
This should address PR#29540.

Revision 1.47: download - view: text, markup, annotated - select for diffs
Tue Feb 1 13:38:53 2005 UTC (19 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -2 lines
Give Dd the full month names as argument.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Mon Jan 31 17:11:33 2005 UTC (19 years, 10 months ago) by fredb
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +3 -3 lines
Greg Oster just reminded me, I left out "vax".

Revision 1.45: download - view: text, markup, annotated - select for diffs
Mon Jan 31 16:42:15 2005 UTC (19 years, 10 months ago) by fredb
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +7 -5 lines
Sync with raid(4) regarding the architectures that support booting directly
from RAID 1, using language supplied by Anders Dinson in PR bin/29158, with
some additions by myself.

Revision 1.44: download - view: text, markup, annotated - select for diffs
Mon May 24 00:08:04 2004 UTC (20 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +5 -4 lines
Use Dq instead of quotes; bump date for previous.

Revision 1.38.2.2: download - view: text, markup, annotated - select for diffs
Sun May 23 11:01:11 2004 UTC (20 years, 6 months ago) by tron
Branches: netbsd-2-0
CVS tags: netbsd-2-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
Branch point for: netbsd-2
Diff to: previous 1.38.2.1: preferred, colored; branchpoint 1.38: preferred, colored; next MAIN 1.39: preferred, colored
Changes since revision 1.38.2.1: +4 -9 lines
Pull up revision 1.43 (requested by oster in ticket #378):
Update docs to reflect the support for the word "absent" in the "disks"
section of RAID config files.

Revision 1.43: download - view: text, markup, annotated - select for diffs
Sat May 22 20:58:04 2004 UTC (20 years, 6 months ago) by oster
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +5 -10 lines
Update docs to reflect the support for the word "absent" in the "disks"
section of RAID config files.

Revision 1.42: download - view: text, markup, annotated - select for diffs
Sun May 16 10:27:16 2004 UTC (20 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +4 -4 lines
Add commas in enumeration; bump date for previous.

Revision 1.41: download - view: text, markup, annotated - select for diffs
Sat May 15 21:46:54 2004 UTC (20 years, 6 months ago) by dsl
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +4 -3 lines
Add i386 to the list of systems that support booting from raid1.
RAID(4) also needs changing - if someone knows where the source is....

Revision 1.38.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 12 03:56:26 2004 UTC (20 years, 7 months ago) by grant
Branches: netbsd-2-0
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +2 -9 lines
Pull up revisions 1.39-1.40 (requested by oster in ticket #130):

Swapping to RAID 5 is happy now.  Remove indications to the contrary.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun Apr 11 04:15:53 2004 UTC (20 years, 7 months ago) by snj
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -2 lines
Bump date for last.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Sun Apr 11 02:46:27 2004 UTC (20 years, 7 months ago) by oster
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +1 -8 lines
Swapping to RAID 5 is happy now.  Remove indications to the contrary.

Revision 1.29.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 9 18:24:49 2004 UTC (20 years, 7 months ago) by jmc
Branches: netbsd-1-6
Diff to: previous 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29: +19 -1 lines
Pullup patch (requested by oster in ticket #1555)

Add a couple little warnings about swapping to RAID 5 sets.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sun Feb 29 22:22:35 2004 UTC (20 years, 9 months ago) by oster
Branches: MAIN
CVS tags: netbsd-2-0-base
Branch point for: netbsd-2-0
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +7 -2 lines
Note in the description of hot-adding components that a component label is
not required for the component.  Thanks to David Maxwell for the
documentation suggestion.

Revision 1.37: download - view: text, markup, annotated - select for diffs
Sun Nov 2 09:01:47 2003 UTC (21 years, 1 month ago) by wiz
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -2 lines
Bump date for previous.

Revision 1.36: download - view: text, markup, annotated - select for diffs
Sun Nov 2 02:20:26 2003 UTC (21 years, 1 month ago) by oster
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +8 -1 lines
Add a couple little warnings about swapping to RAID 5 sets.
(it currently doesn't work.)

Revision 1.35: download - view: text, markup, annotated - select for diffs
Tue Feb 25 10:35:08 2003 UTC (21 years, 9 months ago) by wiz
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +20 -20 lines
.Nm does not need a dummy argument ("") before punctuation or
for correct formatting of the SYNOPSIS any longer.

Revision 1.34: download - view: text, markup, annotated - select for diffs
Sat Nov 16 23:54:16 2002 UTC (22 years ago) by wiz
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -2 lines
Remove trailing space.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Sat Nov 16 22:49:48 2002 UTC (22 years ago) by oster
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +16 -3 lines
Catch up on some documentation stuff:
- add a note about adding 'swapoff=YES' to /etc/rc.conf
- add a note about not using raid0[cd] for a filesystem.
- filesystems -> file systems

Revision 1.32: download - view: text, markup, annotated - select for diffs
Tue Oct 1 14:20:26 2002 UTC (22 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +150 -115 lines
Use more markup.

Revision 1.31: download - view: text, markup, annotated - select for diffs
Tue Oct 1 13:40:49 2002 UTC (22 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +336 -263 lines
New sentence, new line. By Robert Elz with minimal fixes.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Thu Jul 11 15:06:04 2002 UTC (22 years, 4 months ago) by wiz
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +2 -2 lines
Remove duplicate 'to'. From Ryo HAYASAKA in bin/17562.

Revision 1.29: download - view: text, markup, annotated - select for diffs
Fri Feb 8 01:30:45 2002 UTC (22 years, 9 months ago) by ross
Branches: MAIN
CVS tags: 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
Branch point for: netbsd-1-6
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -2 lines
Generate <>& symbolically. I'm avoiding .../dist/... directories for now.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Mon Jan 21 11:40:20 2002 UTC (22 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +3 -3 lines
Drop trailing whitespace.

Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun Jan 20 02:30:11 2002 UTC (22 years, 10 months ago) by oster
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +88 -1 lines
Add a description of how to possibly recover a RAID set in the
event of a multiple disk failure.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Fri Nov 16 11:06:46 2001 UTC (23 years ago) by wiz
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +86 -97 lines
Don't abuse -unfilled for -literal; sort sections, sort SEE ALSO, drop
lots of unnecessary .Pps.

Revision 1.25: download - view: text, markup, annotated - select for diffs
Fri Nov 16 10:25:49 2001 UTC (23 years ago) by wiz
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +174 -174 lines
Whitespace nits

Revision 1.24: download - view: text, markup, annotated - select for diffs
Tue Jul 10 01:30:52 2001 UTC (23 years, 4 months ago) by lukem
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +46 -29 lines
* add -G, which lists the configuration of the given raid set in the
  same configuration format that -c and -C use.
  this is useful if you're using autoconfig and you've misplaced the
  /etc/raidXXX.conf files
* "filesystem" -> "file system", and other man page cleanups.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue Jun 5 11:22:52 2001 UTC (23 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2 lines
Drop arguments of .Os.

Revision 1.19.2.3: download - view: text, markup, annotated - select for diffs
Mon Oct 30 21:58:50 2000 UTC (24 years, 1 month ago) by tv
Branches: netbsd-1-5
CVS tags: netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2
Diff to: previous 1.19.2.2: preferred, colored; branchpoint 1.19: preferred, colored; next MAIN 1.20: preferred, colored
Changes since revision 1.19.2.2: +172 -18 lines
Pullup 1.22 [oster]:
- cleanup wording and add additional comments on such things as
    "component1" and "raidctl -A yes"
- add a note about how to build a RAID set with a limited number of disks
    (thanks to Simon Burge for suggestions)
- improve layout of 'raidctl -i' discussion (thanks to Hubert Feyrer)
- add a (small) section on Performance Tuning

Revision 1.22: download - view: text, markup, annotated - select for diffs
Fri Oct 27 02:40:37 2000 UTC (24 years, 1 month ago) by oster
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +172 -18 lines
- cleanup wording and add additional comments on such things as
    "component1" and "raidctl -A yes"
- add a note about how to build a RAID set with a limited number of disks
    (thanks to Simon Burge for suggestions)
- improve layout of 'raidctl -i' discussion (thanks to Hubert Feyrer)
- add a (small) section on Performance Tuning

Revision 1.19.2.2: download - view: text, markup, annotated - select for diffs
Thu Aug 10 16:22:28 2000 UTC (24 years, 3 months ago) by oster
Branches: netbsd-1-5
CVS tags: netbsd-1-5-BETA, netbsd-1-5-ALPHA2
Diff to: previous 1.19.2.1: preferred, colored; branchpoint 1.19: preferred, colored
Changes since revision 1.19.2.1: +94 -10 lines
Pullup of 1.20->1.21  (approved by thorpej)
Clarify a few things about parity.  Add more documentation about RAID on RAID,
and root on RAID.

Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu Aug 10 15:14:14 2000 UTC (24 years, 3 months ago) by oster
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +94 -10 lines
Clarify a few things about parity.  Add more documentation about RAID on RAID,
and root on RAID.

Revision 1.19.2.1: download - view: text, markup, annotated - select for diffs
Wed Jul 5 13:22:34 2000 UTC (24 years, 5 months ago) by oster
Branches: netbsd-1-5
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +3 -2 lines
Add a .Sq for single quotes, instead of doing it by hand.
Fixes a formatting problem.

Approved by: thorpej

Revision 1.20: download - view: text, markup, annotated - select for diffs
Wed Jul 5 02:42:39 2000 UTC (24 years, 5 months ago) by oster
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +3 -2 lines
Add a .Sq for single quotes, instead of doing it by hand.
Fixes a formatting problem noted by Hubert Feyrer (Thanks Hubert!).

Revision 1.17.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 22 16:05:42 2000 UTC (24 years, 5 months ago) by minoura
Branches: minoura-xpg4dl
Diff to: previous 1.17: preferred, colored; next MAIN 1.18: preferred, colored
Changes since revision 1.17: +5 -4 lines
Sync w/ netbsd-1-5-base.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Fri Jun 2 04:11:46 2000 UTC (24 years, 6 months ago) by oster
Branches: MAIN
CVS tags: netbsd-1-5-base
Branch point for: netbsd-1-5
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +3 -3 lines
Slight wording improvement on the 'raidctl -R' case.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon May 29 03:40:43 2000 UTC (24 years, 6 months ago) by oster
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +3 -2 lines
Fix up some single quotes that messed up a line.  (Thanks Wiz!)

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Feb 26 19:43:07 2000 UTC (24 years, 9 months ago) by oster
Branches: MAIN
CVS tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +11 -2 lines
Update for 'options RAID_AUTOCONFIG'.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Sat Feb 26 04:02:03 2000 UTC (24 years, 9 months ago) by oster
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +149 -20 lines
Add a few more examples, and a summary.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Fri Feb 25 22:38:51 2000 UTC (24 years, 9 months ago) by oster
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +40 -6 lines
More updates, spelling fixes, etc.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Fri Feb 25 22:24:46 2000 UTC (24 years, 9 months ago) by oster
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +184 -106 lines
First revamp of the docs.  This is still work-in-progress.  More to come
shortly.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Thu Feb 24 23:52:46 2000 UTC (24 years, 9 months ago) by oster
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +46 -4 lines
Document the new autoconfiguration switches, and update the Usage: line.
More doc changes expected soon.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sat Jan 22 14:48:43 2000 UTC (24 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2 lines
it's -> its

Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Jan 5 03:02:41 2000 UTC (24 years, 11 months ago) by oster
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +20 -1 lines
- add '-v' (Verbose) option, which, most notably, provides
a spiffy lukemftp-inspired progress bar for parity re-writing,
reconstructs, copybacks, et al.

- make 'raidctl -P' wait until the parity has been updated before exiting
(it waited previously, but only because the parity re-write ioctl wouldn't
exit until the parity was successfully re-written)

Revision 1.9.4.1: download - view: text, markup, annotated - select for diffs
Mon Dec 27 18:30:30 1999 UTC (24 years, 11 months ago) by wrstuden
Branches: wrstuden-devbsize
Diff to: previous 1.9: preferred, colored; next MAIN 1.10: preferred, colored
Changes since revision 1.9: +5 -5 lines
Pull up to last week's -current.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Fri Nov 19 22:48:02 1999 UTC (25 years ago) by kristerw
Branches: MAIN
CVS tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +5 -5 lines
Typos (from OpenBSD)

Revision 1.9: download - view: text, markup, annotated - select for diffs
Tue Aug 10 18:21:39 1999 UTC (25 years, 3 months ago) by oster
Branches: MAIN
CVS tags: comdex-fall-1999-base, comdex-fall-1999
Branch point for: wrstuden-devbsize
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +29 -1 lines
Add two more options to raidctl:
  -p    check (and return) the status of the parity
  -P    check the status of the parity, and rebuild if necessary

Addresses PR#7494

Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Mar 24 06:18:30 1999 UTC (25 years, 8 months ago) by mycroft
Branches: MAIN
CVS tags: netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH003, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001, netbsd-1-4
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +1 -3 lines
Remove blank lines.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sat Mar 6 11:57:20 1999 UTC (25 years, 9 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +4 -4 lines
Fix minor formatting error.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Sat Mar 6 11:55:29 1999 UTC (25 years, 9 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2 lines
Fix minor formatting error.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Mar 2 03:13:59 1999 UTC (25 years, 9 months ago) by oster
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +223 -45 lines
Update for recent changes: component labels, clean bits, adding hot
spares, and rebuilding components in-place.  Re-arrange the
letters/options to make more sense (and make better use of the alphabet).

Revision 1.4: download - view: text, markup, annotated - select for diffs
Thu Feb 18 07:54:33 1999 UTC (25 years, 9 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +4 -3 lines
fix typo

Revision 1.3: download - view: text, markup, annotated - select for diffs
Thu Feb 4 14:50:31 1999 UTC (25 years, 10 months ago) by oster
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -0 lines
Add missing NetBSD RCS ID's!  Thanks to SAITOH Masanobu (msaitoh@netbsd.org)
for pointing this out.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Jan 10 01:41:56 1999 UTC (25 years, 10 months ago) by simonb
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
Fix tpyo.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri Nov 13 13:16:46 1998 UTC (26 years ago) by oster
Branches: MAIN
Oops. Forgot the man-page for 'raidctl' when the rest of 'raidctl' went in.

Diff request

This form allows you to request diffs 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.

Log view options

CVSweb <webmaster@jp.NetBSD.org>