Age | Commit message (Expand) | Author |
2014-07-13 | Initial support to read GPT partition tables in the kernel, if option GPT. | Miod Vallat |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-12 | Remove the temporary dospartoff work around. | Joel Sing |
2014-07-11 | reboot(9): Add MI reboot entry function | Masao Uebayashi |
2014-07-02 | this doesnt talk to uvm directly, so doesnt need uvm_extern.h | David Gwynne |
2014-01-24 | When a disklabel is read from a MBR partitioned disk, don't | Kenneth R Westerback |
2014-01-23 | Delete spurious if statement. | Kenneth R Westerback |
2014-01-22 | Write disklabel in correct spot on devices with non-512-byte sectors. | Kenneth R Westerback |
2014-01-21 | bzero -> memset | Ted Unangst |
2013-11-20 | now that all the direct users of disksort have been removed, we can now | David Gwynne |
2013-11-18 | panic expects a format string | Theo de Raadt |
2013-11-01 | Sprinkle (long long) casts where %lld is being used to print daddr_t | Kenneth R Westerback |
2013-10-20 | KNF a long line. | Kenneth R Westerback |
2013-10-19 | Use daddr_t * instead of int * for the partoffp parameter to | Kenneth R Westerback |
2013-10-14 | Display correct values (i.e. blocks where blocks are meant) in | Kenneth R Westerback |
2013-10-07 | disk sizes, partition sizes and partition offsets are u_int64_t | Kenneth R Westerback |
2013-09-03 | When a partition is changing to UNUSED, we try to save kernel-set | Kenneth R Westerback |
2013-08-08 | Uncomment kprintf format attributes for sys/kern | Sylvestre Gallon |
2013-07-03 | don't use empty format string | Stefan Fritsch |
2013-06-11 | final removal of daddr64_t. daddr_t has been 64 bit for a long enough | Theo de Raadt |
2013-04-24 | When attaching disks, feed the disklabel's checksum to | Bret Lambert |
2013-02-17 | Comment out recently added __attribute__((__format__(__kprintf__))) annotations | Miod Vallat |
2013-02-09 | Add explicit __attribute__ ((__format__(__kprintf__)))) to the functions and | Miod Vallat |
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 |