summaryrefslogtreecommitdiffstats
path: root/sbin/geom/class/stripe
Commit message (Collapse)AuthorAgeFilesLines
* MFC r267667:sevan2016-10-161-1/+1
| | | | | | | use .Mt to mark up email addresses consistently (part1) PR: 191174 Submitted by: Franco Fichtner <franco at lastsummer.de>
* Remove references to ataraid(4) and atacontrol(8).joel2013-04-041-3/+0
|
* Cross-reference gvinum(8) instead of vinum(8).joel2013-03-161-2/+2
|
* Rename the generic "CLASS" to the more specific "GEOM_CLASS".obrien2010-12-151-1/+1
| | | | | | While I'm here remove redundancy and inconsistencies. Obtained from: Juniper Networks
* Replace strlen(_PATH_DEV) with sizeof(_PATH_DEV) - 1.ae2010-10-091-2/+2
| | | | | | Suggested by: kib Approved by: kib (mentor) MFC after: 5 days
* - Remove gc_argname field. It was introduced for gpart(8), but if Ipjd2010-09-131-9/+9
| | | | | | | understand everything correctly, we don't really need it. - Provide default numeric value as strings. This allows to simplify a lot of code. - Bump version number.
* Increase default block size from 4K to 64K. It was reduces 6 yeard ago,mav2010-01-061-1/+1
| | | | | | | | | | when trees were big and FAST mode was enabled by default. So small block size doesn't benefits linear I/O operations in FAST and significantly slowdowns in ECONOMIC (default) mode. For single stream random I/Os so small block doesn't give much benefits, as access time is usually bigger then transfer time there. Same time it requires all heads to seek together for every single request, reducing performance on parallel load.
* Fix the online usage for the "dump" command.ru2007-05-241-1/+1
|
* Add gpart(8).marcel2007-05-151-6/+6
| | | | | | | In order to support gpart(8), geom(8) needs to support a named argument. Also, optional string parameters are a requirement. Both have been added to the infrastructure. The former required all existing classes to be adjusted.
* MFp4: G_TYPE_BOOL sounds much better than G_TYPE_NONE.pjd2006-09-301-3/+3
| | | | Changes: 98722
* Remove trailing spaces.pjd2006-02-011-4/+4
|
* - The geom(8) utility only uses three types of arguments: string (char *),pjd2005-12-071-66/+30
| | | | | | | | | | | | | | | | | value (intmax_t) and boolean (int). Based on that provide three functions: - gctl_get_ascii() - gctl_get_int() - gctl_get_intmax() - Hide gctl_get_param() function, as it is only used internally in subr.c. - Allow to provide argument name as (fmt, ...). - Assert geom(8) bugs (missing argument is a geom(8) bug). - Clean-up and simplify the code by using new functions and assumtions (no more checking for missing argument). Tested by: regression tests
* Fix stripe size in example.pjd2005-04-261-1/+1
| | | | | Found by: kris MFC after: 3 days
* Define subcommands' usage inside g_command structure.pjd2005-03-141-19/+14
| | | | MFC after: 1 week
* Instead of documenting every standard subcommand's argument everywhere,pjd2005-03-141-14/+8
| | | | | | just leave reference to geom(8). MFC after: 1 week
* - Document 'status' subcommand.pjd2005-03-131-2/+9
| | | | | | - Update copyrights. MFC after: 1 week
* - Add md_provsize field to metadata, which will help withpjd2005-02-271-4/+6
| | | | | | | | | | | | | | | | | shared-last-sector problem. After this change, even if there is more than one provider with the same last sector, the proper one will be chosen based on its size. It still doesn't fix the 'c' partition problem (when da0s1 can be confused with da0s1c) and situation when 'a' partition starts at offset 0 (then da0s1a can be confused with da0s1 and da0s1c). One can use '-h' option there, when creating device or avoid sharing last sector. Actually, when providers share the same last sector and their size is equal, they provide exactly the same data, so the name (da0s1, da0s1a, da0s1c) isn't important at all. - Provide backward compatibility. - Update copyright's year. MFC after: 1 week
* Sort sections.ru2005-01-181-2/+2
|
* Added the EXIT STATUS section where appropriate.ru2005-01-171-1/+1
|
* Fix arguments syntax.pjd2005-01-152-21/+13
| | | | | Manual pages fixes by: ru MFC after: 3 days
* Scheduled mdoc(7) sweep.ru2005-01-101-7/+12
|
* - Turn off 'fast' mode by default and increase maximum memory to consumepjd2004-12-091-3/+3
| | | | | when this mode is used. - Manual page update.
* Grammatical and spelling improvements.ceri2004-11-041-8/+8
| | | | Reviewed by: pjd
* Embellish the man page after trying to migrate to gstripe from ccd(4).obrien2004-09-261-4/+27
|
* Don't allow to specify wrong stripe size.pjd2004-09-261-1/+11
| | | | Reported by: obrien
* Warn the user if we are not going to use the whole provider's space.pjd2004-08-281-1/+21
|
* - Introduce option for hardcoding providers' names into metadata.pjd2004-08-092-20/+37
| | | | | | | | | | | | It allows to fix problems when last provider's sector is shared between few providers. - Bump version number for CONCAT and STRIPE and add code for backward compatibility. - Do not bump version number of MIRROR, as it wasn't officially introduced yet. Even if someone started to play with it, there is no big deal, because wrong MD5 sum of metadata will deny those providers. - Update manual pages. - Add version history to g_(stripe|concat).h files.
* Add and document kern.geom.stripe.fast_failed sysctl, which shows howpjd2004-08-061-0/+7
| | | | many times "fast" mode failed.
* Improve geom(8)'s 'list' command to show geoms and their providers andpjd2004-07-261-1/+1
| | | | consumers. Teach STRIPE, CONCAT and NOP classes about this improvement.
* Change naming scheme from /dev/<name>.stripe to /dev/stripe/<name>.pjd2004-07-261-2/+2
|
* MFp4: Add 'dump' command to gconcat(8), glabel(8) and gstripe(8) which allowpjd2004-07-182-1/+62
| | | | to dump metadata from given components.
* Those sysctl are used to control GEOM class, not a userland utility.pjd2004-07-131-4/+6
| | | | Reviewed by: simon
* Document sysctls variables used by GEOM_STRIPE class.pjd2004-07-131-0/+37
| | | | Submitted by: simon
* Decrease default stripe size to 4k, as we have "FAST" mode turned on bypjd2004-07-092-2/+2
| | | | default.
* Slight markup and grammar fixes.ru2004-07-071-5/+5
|
* - Add 'stop' command, which works just like 'destroy' command, but soundspjd2004-07-052-3/+24
| | | | | | less dangerous. - Update manual pages and extend examples. - Bump versions.
* Add missing newlines.pjd2004-06-171-4/+4
|
* - Add a cross-reference to geom(8).pjd2004-05-241-1/+2
| | | | - Add missing 'a'.
* Actually we are also able to list only choosen providers.pjd2004-05-221-1/+2
|
* - More clear example description.pjd2004-05-211-4/+4
| | | | - Fix copy&paste bug.
* Add manual pages for gconcat(8), gstripe(8) and gnop(8) utilities.pjd2004-05-212-1/+155
| | | | Supported by: Wheel - Open Technologies - http://www.wheel.pl
* Various style.Makefile(5) improvements.pjd2004-05-201-2/+1
| | | | Inspired by: ru
* Introduce geom(8)-specific shared libraries for CONCAT, STRIPE and NOPpjd2004-05-202-0/+226
GEOM classes. CONCAT should be 100% compatible with existing gconcat(8) utility, which is going to be removed. Supported by: Wheel - Open Technologies - http://www.wheel.pl
OpenPOWER on IntegriCloud