aboutsummaryrefslogtreecommitdiff
path: root/sys/geom/vinum/geom_vinum_subr.c
Commit message (Collapse)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-231-2/+0
| | | | | | | Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/ Similar commit in current: (cherry picked from commit 685dc743dc3b)
* geom: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-3/+0
| | | | Notes: svn path=/head/; revision=365226
* GEOM: Reduce unnecessary log interleaving with sbufsConrad Meyer2019-08-071-0/+1
| | | | | | | | | | | | | | | Similar to what was done for device_printfs in r347229. Convert g_print_bio() to a thin shim around g_format_bio(), which acts on an sbuf; documented in g_bio.9. Reviewed by: markj Discussed with: rlibby Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D21165 Notes: svn path=/head/; revision=350694
* spdx: initial adoption of licensing ID tags.Pedro F. Giffuni2017-11-181-0/+2
| | | | | | | | | | | | | | | | | | | | The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Special thanks to Wind River for providing access to "The Duke of Highlander" tool: an older (2014) run over FreeBSD tree was useful as a starting point. Initially, only tag files that use BSD 4-Clause "Original" license. RelNotes: yes Differential Revision: https://reviews.freebsd.org/D13133 Notes: svn path=/head/; revision=325966
* sys/geom: spelling fixes in comments.Pedro F. Giffuni2016-04-291-1/+1
| | | | | | | No functional change. Notes: svn path=/head/; revision=298808
* Include sys/sbuf.h directly.Andrey V. Elsukov2011-07-111-0/+1
| | | | | | | Reviewed by: pjd Notes: svn path=/head/; revision=223921
* - Improve error message consistency and wording.Ulf Lilleengen2009-10-051-2/+2
| | | | Notes: svn path=/head/; revision=197767
* - Fix a case where a RAID5 volume would think that it is supposed to grow a newUlf Lilleengen2009-05-061-2/+1
| | | | | | | subdisk after a parity rebuild. Notes: svn path=/head/; revision=191855
* Import the gvinum work that have been done during and after Summer of Code 2007.Ulf Lilleengen2009-03-281-290/+599
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The work have been under testing and fixing since then, and it is mature enough to be put into HEAD for further testing. A lot have changed in this time, and here are the most important: - Gvinum now uses one single workerthread instead of one thread for each volume and each plex. The reason for this is that the previous scheme was very complex, and was the cause of many of the bugs discovered in gvinum. Instead, gvinum now uses one worker thread with an event queue, quite similar to what used in gmirror. - The rebuild/grow/initialize/parity check routines no longer runs in separate threads, but are run as regular I/O requests with special flags. This made it easier to support mounted growing and parity rebuild. - Support for growing striped and raid5-plexes, meaning that one can extend the volumes for these plex types in addition to the concat type. Also works while the volume is mounted. - Implementation of many of the missing commands from the old vinum: attach/detach, start (was partially implemented), stop (was partially implemented), concat, mirror, stripe, raid5 (shortcuts for creating volumes with one plex of these organizations). - The parity check and rebuild no longer goes between userland/kernel, meaning that the gvinum command will not stay and wait forever for the rebuild to finish. You can instead watch the status with the list command. - Many problems with gvinum have been reported since 5.x, and some has been hard to fix due to the complicated architecture. Hopefully, it should be more stable and better handle edge cases that previously made gvinum crash. - Failed drives no longer disappears entirely, but now leave behind a dummy drive that makes sure the original state is not forgotten in case the system is rebooted between drive failures/swaps. - Update manpage to reflect new commands and extend it with some examples. Sponsored by: Google Summer of Code 2007 Mentored by: le Tested by: Rick C. Petty <rick-freebsd2008 -at- kiwi-computer.com> Notes: svn path=/head/; revision=190507
* - Import macros used in gmirror for printing gvinum debug messages and makingUlf Lilleengen2008-10-261-11/+10
| | | | | | | | | the output more standardized. - Add a sysctl to set the verbosity of the debug messages. - While there, fixup typos and wording in the messages. Notes: svn path=/head/; revision=184292
* - Fix a logic error when updating plex configuration.Ulf Lilleengen2008-07-111-1/+2
| | | | | | | Approved by: pjd (mentor) Notes: svn path=/head/; revision=180451
* -) Correct sdcount for a plex when removing or adding subdisks.Lukas Ertl2007-04-121-1/+72
| | | | | | | | | -) Set correct sizes for plexes and volumes a subdisk has been removed. Submitted by: Ulf Lilleengen <lulf_AT_freebsd.org> Notes: svn path=/head/; revision=168670
* Protect from creating striped and RAID5 plexes with unequally sizedLukas Ertl2006-03-301-0/+66
| | | | | | | subdisks. Notes: svn path=/head/; revision=157292
* Get rid of the gv_bioq hack in most parts of the I/O path andLukas Ertl2006-01-061-0/+8
| | | | | | | use the standard bioq structures. Notes: svn path=/head/; revision=154075
* Reset object flags after killing off an object's worker thread.Lukas Ertl2005-01-191-0/+6
| | | | Notes: svn path=/head/; revision=140474
* Share gv_roughlength() between kernel and userland, as we will need itLukas Ertl2004-11-151-35/+0
| | | | | | | there later. Notes: svn path=/head/; revision=137727
* Correctly skip the '/dev/' part when creating new drives and prefixLukas Ertl2004-10-021-1/+1
| | | | | | | | | a drive's provider with '/dev/' when printing the config. Reported by: will@ Notes: svn path=/head/; revision=136064
* Re-vamp how I/O is handled in volumes and plexes.Lukas Ertl2004-09-181-2/+15
| | | | | | | | | | | | | Analogous to the drive level, give each volume and plex a worker thread that picks up and processes incoming and completed BIOs. This should fix the data corruption issues that have come up a few weeks ago and improve performance, especially of RAID5 plexes. The volume level needs a little work, though. Notes: svn path=/head/; revision=135426
* Give the DRIVE geom a worker thread that picks up incoming bios,Lukas Ertl2004-09-131-0/+13
| | | | | | | | sends them down, and takes care of the finished bios. This makes it easier to handle I/O errors at drive level. Notes: svn path=/head/; revision=135173
* Rename gv_kill_thread() to gv_kill_plex_thread(), since there are moreLukas Ertl2004-09-131-1/+1
| | | | | | | threads to come. Notes: svn path=/head/; revision=135164
* Add forgotten format specifier in a KASSERT and shut up the compiler.Lukas Ertl2004-08-221-1/+2
| | | | | | | Submitted by: Gavin Atkinson <gavin.atkinson@ury.york.ac.uk> Notes: svn path=/head/; revision=134155
* If we kill the worklist thread of a RAID5 plex we can destroyLukas Ertl2004-08-101-0/+1
| | | | | | | | the worklist mutex at the same time, so move the mtx_destroy() call to gv_kill_thread(). Notes: svn path=/head/; revision=133450
* Propagate size changes upwards.Lukas Ertl2004-07-311-0/+20
| | | | Notes: svn path=/head/; revision=132940
* Mark a plex as 'newborn' when it is created. This is used to indicateLukas Ertl2004-06-251-1/+3
| | | | | | | that new RAID5 plexes need to be initialized first. Notes: svn path=/head/; revision=131107
* Handle dead disks in a somewhat sane way.Lukas Ertl2004-06-161-1/+2
| | | | Notes: svn path=/head/; revision=130597
* Fix several bugs related to subdisk drive_offset calculation.Lukas Ertl2004-06-151-4/+5
| | | | Notes: svn path=/head/; revision=130542
* Add a first version of a GEOMified vinum.Lukas Ertl2004-06-121-0/+804
Notes: svn path=/head/; revision=130389