Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-31 | Add support for key disks. This allows a crypto volume to be constructed | Joel Sing | |
without using a passphrase - instead the encryption mask key is stored on the specified key disk partition (ideally being one on a removable device). This also enables automatic assembly of crypto volumes at boot time. ok marco@ | |||
2009-12-15 | Allow auto assemble flag to be toggled for disciplines that support it. | Joel Sing | |
"Love it!" marco@ | |||
2009-12-15 | Factor out discipline specific create/assemble code. | Joel Sing | |
"in, in, in!" marco@ | |||
2009-12-15 | Explicitly lock the vnode when deleting a volume. This avoids a potential | Joel Sing | |
panic that is caused by vnode aliasing, where checkalias() switches the vnode ops for our vnode. This means that we end up using ufs unlocking rather than specfs unlocking (which is a no-op). ok marco@ | |||
2009-12-07 | Cleanup discipline initialisation. | Joel Sing | |
ok marco@ | |||
2009-12-07 | Define discipline capabilities using a set of flags. | Joel Sing | |
"shiny!!" marco@ | |||
2009-11-24 | Allow the passphrase to be changed on softraid crypto volumes. Ensure that | Joel Sing | |
you backup your data and lock up your pets prior to using this. Tested by todd@ ok marco@ | |||
2009-11-23 | Improve discipline specific ioctl framework and attach to softraid ioctl. | Joel Sing | |
ok marco@ | |||
2009-11-22 | Add a framework for discipline specific ioctls. | Joel Sing | |
ok marco@ | |||
2009-11-22 | Ensure that chunks are not already in use when creating a volume. | Joel Sing | |
ok marco@ | |||
2009-11-15 | Fix memory leak in error case. Found by Parfait. | Joel Sing | |
ok marco@ deraadt@ | |||
2009-10-29 | When probing devices at boot, compare against the full device driver name | Joel Sing | |
rather than the start of the device name. Also, be inclusive with devices probed rather than exclusive - this means we now only look for RAID partitions on sd(4) and wd(4) devices. prodded by deraadt@ ok marco@ deraadt@ | |||
2009-10-28 | Remove FWRITE from closes that aren't opened with FWRITE. | Marco Peereboom | |
spotted and ok jsing | |||
2009-10-13 | Get rid of devact enum, substitute it with an int and coresponding defines. | Paul Irofti | |
This is needed for the addition of further suspend/resume actions. Okay deraadt@, marco@. | |||
2009-09-21 | Fix use before init on wu. | Marco Peereboom | |
Found by jsing, tested and ok jsing. | |||
2009-09-03 | Check the return value of copyin(). | Joel Sing | |
ok marco@ | |||
2009-09-03 | Don't call VOP_CLOSE() with a null pointer, if the VOP_OPEN() call failed. | Joel Sing | |
ok marco@ | |||
2009-08-17 | the null check makes more sense when it's done before deref | Martynas Venckus | |
ok marco@, jsing@ | |||
2009-08-09 | Switch softraid to vnodes to prevent bad things from happening when using | Marco Peereboom | |
d_open/d_close. tested by many, ok jsing, thib, krw | |||
2009-07-31 | Factor out code for checking if a chunk is already in use. | Joel Sing | |
ok marco@ | |||
2009-07-23 | Adding disabled framework for RAID6 | Jordan Hargrave | |
ok marco@ | |||
2009-07-12 | Assert copyright. | Joel Sing | |
suggested by and ok marco@ | |||
2009-07-12 | Fix rebuild percentage so that it ranges from 0-99% rather than 1-100%. | Joel Sing | |
ok marco@ | |||
2009-07-12 | Add support for global hotspares to softraid. | Joel Sing | |
ok marco@ | |||
2009-07-12 | If devices have roamed, complain once then update the metadata, just like | Joel Sing | |
we do for roaming volumes. ok marco@ | |||
2009-07-11 | Ensure that we hold the appropriate lock before calling | Joel Sing | |
sr_ioctl_createraid(). ok marco@ | |||
2009-07-09 | Be sure we don't hit a NULL deref. Pointed out by | Marcus Glocker | |
remco at d-compu dot dyndns dot org. OK marco@ | |||
2009-06-26 | Overhaul sr_boot_assembly(). The original code had a number of problems, | Joel Sing | |
including a "chunk id already in use" bug that occurred when assembling more than one volume at boot. Volumes are now kept in order, as are the chunks which they are assembled from. Duplicated chunk IDs are now handled appropriately, with the chunk that has the most recent ondisk metadata being used. Also tested by nicm@ who got bitten by the "chunk id already in use" bug. ok marco@ | |||
2009-06-24 | Reset the rebuild counter when initiating a rebuild. | Joel Sing | |
ok marco@ | |||
2009-06-24 | Abort the current rebuild if the rebuild chunk disappears. Whilst here also | Joel Sing | |
rename the abort flag so that it is more generalised. ok marco@ | |||
2009-06-23 | Make sure that the metadata level matches the requested assembly level when | Joel Sing | |
creating a volume. ok marco@ | |||
2009-06-23 | Fix some more whitespace issues. | Joel Sing | |
2009-06-19 | Either jordan or jsing left some debug prints behind. tsk tsk. | Marco Peereboom | |
pointed out by todd. | |||
2009-06-18 | Check the set state status rather than always assuming a rebuild has been | Joel Sing | |
requested. Also move the rebuild initialisation code into a separate function whilst here. ok marco@ | |||
2009-06-18 | Fix some typos and whitespace issues. | Joel Sing | |
ok marco@ | |||
2009-06-17 | Enabled EXPERIMENTAL RAID4/5 discipline | Jordan Hargrave | |
ok marco@ | |||
2009-06-17 | Make openings variable instead of maxwu; needed for more exotic raid sets. | Marco Peereboom | |
ok jordan | |||
2009-06-17 | Force Raid0/4/5 volume size to multiple of stripe size | Jordan Hargrave | |
ok marco@ | |||
2009-06-12 | KNF and wrap at 80 columns. | Joel Sing | |
ok marco@ | |||
2009-06-12 | Allow chunks marked as offline to be used for rebuild (ie. once disk has | Joel Sing | |
been replaced). ok marco@ | |||
2009-06-11 | Create a hotplug callback mechanism. | Marco Peereboom | |
2009-06-10 | Typo | Marco Peereboom | |
2009-06-10 | Add framework for raid 4 & 5 so that we can work in tree. | Marco Peereboom | |
2009-06-03 | Slay the running out of wu during rebuild dragon and some cleanup | Marco Peereboom | |
2009-06-03 | whitespace. "Sure" marco@ | Chris Kuethe | |
2009-06-03 | Oops need to kill the XXX comment that we are not enabling softraid rebuild | Marco Peereboom | |
2009-06-03 | Start using the shiny new function pointer to determine if we have disk | Marco Peereboom | |
arrivals or departures. | |||
2009-06-03 | Make sure we don't stomp on a RAID partition that is already in use. | Marco Peereboom | |
Code is now enabled and ready for general testing. | |||
2009-06-02 | Abuse bio layer a little less by marking fake buffers with B_PHYS. | Marco Peereboom | |
From beck with lots of squealing and ear bleeds. Issue originally reported by todd. ok beck | |||
2009-06-02 | space | Marco Peereboom | |