Age | Commit message (Expand) | Author |
2015-08-19 | Stop passing around constants for metadata size and location. Just | Kenneth R Westerback |
2015-07-29 | Zap a SLIST in a more obviously correct/safe way. | Kenneth R Westerback |
2015-07-28 | Tweak a couple of [SLIST|TAILQ]_REMOVE() usages in loops to a more | Kenneth R Westerback |
2015-07-27 | zap trailing linefeeds from sr_error() and panic() calls | Alexander Hall |
2015-07-21 | A few more daddr_t fixes. Rename 'phys_off' variables to 'offset' | Kenneth R Westerback |
2015-07-20 | fix spacing | Mike Larkin |
2015-07-19 | Stop passing daddr_t parameters for lengths. Use long since that's the type | Kenneth R Westerback |
2015-07-19 | Change some obviously incorrect usages of daddr_t (a DEV_BSIZE | Kenneth R Westerback |
2015-07-19 | Stop adding and subtracting data offset. Just keep to chunk relative | Kenneth R Westerback |
2015-07-19 | Use DEV_BSIZE instead of 512 where appropriate. Use DL_SECTOBLK() | Kenneth R Westerback |
2015-05-29 | Nuke annoying whitespace nits to shrink some future diffs. | Kenneth R Westerback |
2015-05-20 | Signed types are bad array indicies - let it panic instead. | Martin Pelikan |
2015-05-11 | Make softraid(4) compile with SR_DEBUG by fixing __kprintf__ specifiers. | Martin Pelikan |
2015-04-11 | Directly handle ioctls issued to a SCSI device associated with a softraid | Joel Sing |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-09 | we want to defer work traditionally (in openbsd) handled in an | David Gwynne |
2015-01-27 | remove the second void * argument on tasks. | David Gwynne |
2014-12-19 | bcopy to memcpy. ok deraadt millert | Ted Unangst |
2014-12-16 | only need lock.h here, not all of uvm_extern.h | Ted Unangst |
2014-12-16 | primary change: move uvm_vnode out of vnode, keeping only a pointer. | Ted Unangst |
2014-11-18 | move arc4random prototype to systm.h. more appropriate for most code | Ted Unangst |
2014-10-30 | muliply to get correct size for free. reported by kspillner | Ted Unangst |
2014-10-30 | add some sizes to free() | Ted Unangst |
2014-10-07 | remove preliminary AOE (ata over ethernet) support. not finished after | Ted Unangst |
2014-09-14 | remove uneeded proc.h includes | Jonathan Gray |
2014-09-13 | Replace all queue *_END macro calls except CIRCLEQ_END with NULL. | Doug Hogan |
2014-08-01 | When attempting to rebuild a softraid volume, use the actual data offset | Joel Sing |
2014-07-20 | spacing glitches | Theo de Raadt |
2014-07-20 | Support hibernating to softraid crypto volumes. | Mike Larkin |
2014-07-13 | Some reallocarray() use; review Jean-Philippe Ouellet, patrick keshishian | Theo de Raadt |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-12 | essentially mechanical conversion of softraid rebuild from | Bret Lambert |
2014-07-10 | Stop using a shutdown hook for softraid(4) and explicitly shutdown | Martin Pieuchot |
2014-01-22 | Add some debug messages to the rebuild process and fix a bogus comment. | Joel Sing |
2014-01-22 | Add a debug flag for rebuild. | Joel Sing |
2014-01-22 | Make rebuild a discipline specific function pointer. For now, this defaults | Joel Sing |
2014-01-22 | The sr_rebuild function does not actually do the rebuild, it only starts | Joel Sing |
2014-01-22 | Move sr_dump from the RAID5 code into shared code. Rename it to | Joel Sing |
2014-01-22 | Switch metadata saves from the system workq to the system taskq. | Joel Sing |
2014-01-21 | Actually use the correct TAILQ field. | Joel Sing |
2014-01-21 | Allow for variable sized work units. | Joel Sing |
2014-01-21 | Use a TAILQ for tracking work units, rather than an array. This will allow | Joel Sing |
2014-01-21 | Stop bzeroing the work unit when it is initialised. Rather, only initialise | Joel Sing |
2014-01-20 | Convert the softraid work unit workqs to taskqs. | Joel Sing |
2014-01-20 | Replace dedicated swu_fake variable with a work unit flag. | Joel Sing |
2014-01-19 | Assert that a workunit has ccbs if it is being scheduled. Otherwise we | Joel Sing |
2014-01-18 | Move the block get/put routines into the common code, instead of having | Joel Sing |
2014-01-18 | Rename softraid RAIDP to softraid RAID5. | Joel Sing |
2014-01-18 | Remove the RAID 4 discipline from softraid. Anyone sensible would use RAID | Joel Sing |
2014-01-05 | On some architectures you can get away with using an uninitialised mutex; | Joel Sing |