Age | Commit message (Expand) | Author |
2012-04-07 | Tweak FAT detection/usage. Recognize 'bare' FAT media that lacks | Kenneth R Westerback |
2012-03-31 | Some whitespace/paren tweaks. Rename the mbr testing variable from | Kenneth R Westerback |
2012-02-10 | DUIDs are only valid when booting off of a disk, so make sure we are | Peter Hessler |
2012-01-21 | When disklabels can't be read before attempting to mount root, make | Kenneth R Westerback |
2012-01-21 | Do not wait for DKF_OPENED to be set if we never actually created a | Joel Sing |
2012-01-16 | Ensure that all disk attach callbacks have completed before attempting | Joel Sing |
2012-01-13 | Always set DKF_OPENED in the disk attach callback. | Joel Sing |
2012-01-13 | Restore previous behaviour - only print the DUID if we used it to | Joel Sing |
2012-01-11 | If the DUID of the boot disk has not been provided, attempt to locate it | Joel Sing |
2012-01-11 | Move softraid root mapping to later in the boot process - this will allow | Joel Sing |
2011-12-28 | Avoid the use of an invalid disklabel by setting a DK_LABELVALID flag | Joel Sing |
2011-12-28 | An all-zero DUID is considered to be a blank DUID - ensure that we do not | Joel Sing |
2011-09-21 | Move the prototype for disk_readlabel to the .h file so that hibernate | Theo de Raadt |
2011-09-18 | Do not use the `hh' modifier in printf format strings, as the kernel printf | Miod Vallat |
2011-07-26 | No need to byte-swap d_checksum just before setting it to zero. | Kenneth R Westerback |
2011-07-06 | On several archs (e.g. hppa, sgi, macppc) readdoslabel() is called after an a... | Kenneth R Westerback |
2011-07-06 | Eliminate redundant buf validation checks in xxstrategy() methods now | Matthew Dempsky |
2011-07-05 | Add checks for sector-alignment and whole number of sectors to | Matthew Dempsky |
2011-06-30 | Refactor some common open/close/detach disk driver code into | Matthew Dempsky |
2011-06-19 | Minor cleanup for disk_lock() and disk_unlock(). | Matthew Dempsky |
2011-06-19 | Add disk_lock_nointr() as a way to acquire the disk lock without being | Matthew Dempsky |
2011-06-19 | Kill the "lockname" argument to disk_construct(). | Matthew Dempsky |
2011-06-03 | Get rid of the wlabel argument to bounds_check_with_label(). It's | Matthew Dempsky |
2011-06-01 | Add device_ref/device_unref calls to prevent a possible use-after-free | Matthew Dempsky |
2011-04-28 | spaces | Marco Peereboom |
2011-04-26 | Allow the root device to be identified via its disklabel UID. | Joel Sing |
2011-04-16 | Use 'CLR(<buf>->b_flags, B_READ | B_WRITE | B_DONE)' regardless of | Kenneth R Westerback |
2011-04-15 | In days of yore one could arbitrarily whack buffer flags. Those days | Kenneth R Westerback |
2011-03-19 | Repair spoofing. We want to start at 'i', not 'j'. | Kenneth R Westerback |
2011-03-17 | Uncommitted bits. Spotted by deraadt@, who theorizes I have insuffient | Kenneth R Westerback |
2011-03-14 | Don't confuse limiting spoofed partitions with limiting how many | Kenneth R Westerback |
2010-11-24 | Ensure that hw.disknames gets updated whenever a disklabel is set, since | Joel Sing |
2010-11-18 | Do not #include <sys/dkstat.h> if you don't need anything from it. | Miod Vallat |
2010-09-24 | Fixes before-boot umass hangs on units without media. | Theo de Raadt |
2010-09-23 | The only sensible argument for VOP_* calls that take a struct proc pointer is | Owain Ainsworth |
2010-09-23 | When a disk is attached create a workq task to read the disklabel, | Joel Sing |
2010-09-08 | Introduce a disk_lookup() function which calls device_lookup(), before | Joel Sing |
2010-09-08 | Store a struct device pointer within struct disk and populate this when | Joel Sing |
2010-09-01 | Do not panic in parsedisk() for ``second class'' block devices (which we can't | Miod Vallat |
2010-08-30 | Add a device number to struct disk and populate it on disk attach. Whilst | Joel Sing |
2010-08-18 | - fix compilation of kernel without FFS...don't ask ;-) | Jasper Lievisse Adriaanse |
2010-06-27 | Factor out code used to read a disklabel. We'll be making use of this soon. | Joel Sing |
2010-05-03 | Provide a disk_map() function which attempts to map a disklabel UID to the | Joel Sing |
2010-04-28 | When setting a disklabel automatically generate a new UID if it does not | Joel Sing |
2010-04-25 | introducing a 64-bit type to the disklabel structure leads some architectures | Theo de Raadt |
2010-04-23 | Recycle unused disklabel fields in order to create a disklabel unique | Joel Sing |
2010-01-14 | fix typos in comments, no code changes; | Ingo Schwarze |
2010-01-11 | Negative offset or negative size in a buf is invalid. Treat just like other | Kenneth R Westerback |
2009-08-13 | Replace the error strings that were being passed around with much simpler | Theo de Raadt |
2009-08-09 | Make dk_mmountroot use vnodes instead of d_open/d_close. This does ugly | Marco Peereboom |