Age | Commit message (Expand) | Author |
2011-08-26 | Add a dmesg warning about sloppy disk I/O to vnd(4) devices to help | Matthew Dempsky |
2011-07-18 | Revert vnd(4) to its older less strict behavior. | Matthew Dempsky |
2011-07-12 | Range check vnd_secsize, vnd_ntracks, and vnd_nsectors so that later on | Theo de Raadt |
2011-07-08 | Ack, my last change used size_t for file offsets, but size_t is only | Matthew Dempsky |
2011-07-08 | Refactor vnd(4) to use vn_rdwr() instead of setting up the uio/iovec | Matthew Dempsky |
2011-07-08 | Validate DISKUNIT(dev) in vndstrategy() like we do in other | Matthew Dempsky |
2011-07-08 | Add a vndencryptbuf() function, and refactor vndstrategy() slightly to | Matthew Dempsky |
2011-07-06 | vndsize() can just return -1; we don't support swapping to vnd | Matthew Dempsky |
2011-07-06 | Compact the vnd sc_flags bits. | Matthew Dempsky |
2011-07-06 | Eliminate some sanity checks in vndstrategy() that are now handled by | Matthew Dempsky |
2011-07-06 | vndstrategy() should fail if VNF_HAVELABEL isn't set. This simplifies | Matthew Dempsky |
2011-07-06 | Eliminate redundant buf validation checks in xxstrategy() methods now | Matthew Dempsky |
2011-07-04 | move the specfs code to a place people can see it; ok guenther thib krw | Theo de Raadt |
2011-07-03 | Cleanup vnd(4) a bit now that it only has one mode of operation and | Matthew Dempsky |
2011-07-03 | Fix vnd(4) support for read-only files. We can't clear sc_flags | Matthew Dempsky |
2011-06-30 | Refactor some common open/close/detach disk driver code into | Matthew Dempsky |
2011-06-21 | looks like the disk_lock method actually does work | Theo de Raadt |
2011-06-20 | explicit_bzero for the crypto key | Ted Unangst |
2011-06-20 | for now, move back to a private rw_lock rather than the disk_lock. | Theo de Raadt |
2011-06-19 | Use disk_lock_nointr() in the xxclose() routines so that they cannot | Theo de Raadt |
2011-06-19 | Use disk_lock/disk_unlock directly and in the same way in these drivers, | Theo de Raadt |
2011-06-19 | and in debug code, too | Theo de Raadt |
2011-06-19 | stop trying to be clever with the softc name | Theo de Raadt |
2011-06-09 | shorted code with a lovely goto | Theo de Raadt |
2011-06-05 | Drop kernel support for the useless DIOCWLABEL ioctl and prune a lot | Matthew Dempsky |
2011-06-03 | Get rid of the wlabel argument to bounds_check_with_label(). It's | Matthew Dempsky |
2011-06-02 | No need to set error to 0, when it is still 0 from the start of the function. | Theo de Raadt |
2011-06-02 | The vndbufpl is no longer used. | Theo de Raadt |
2011-06-02 | Initialize the dv_xname at attach time, so that we don't have to do | Theo de Raadt |
2011-06-02 | In vndclear(), clear all the flag bits. Leaving around a VNF_WLABEL bit | Theo de Raadt |
2011-06-02 | Initialize the dv_unit, because disk_attach will want it later. Before | Theo de Raadt |
2011-06-02 | Do not bzero the softc when doing VNDIOCCLR, because that trashes the | Theo de Raadt |
2011-06-02 | device_ref() by hand, since this is a pseudo-device and was not attached | Theo de Raadt |
2011-05-31 | Change a few of the more common disk drivers (sd, cd, wd, rd, and vnd) | Matthew Dempsky |
2011-05-30 | Remove vndshutdown. It is unused. | Owain Ainsworth |
2011-04-25 | Remove backwards compatibility for svnd. All new operations must use the | Theo de Raadt |
2011-04-23 | Remove now unused vndiodone(). ok deraadt@ | Miod Vallat |
2011-04-23 | The previous code only prevented the vnd from being opened for write in | Joel Sing |
2011-04-23 | backout the miod change since it is wrong | Theo de Raadt |
2011-04-22 | Fix regression in vndopen() behaviour introduced in previous commit. | Miod Vallat |
2011-04-18 | remove the old style by-pass-the-buffer-cache vnd code. | Thordur I. Bjornsson |
2011-04-02 | Remove bufqs from vnds, as the disk that houses the image | Thordur I. Bjornsson |
2011-02-15 | A vnd buf doesn't only go through the vnd bufq but also the bufq | Thordur I. Bjornsson |
2011-01-06 | init and destory the bufq in the ioctl handler, as | Thordur I. Bjornsson |
2011-01-05 | cut vnd over to using bufq's again. | Thordur I. Bjornsson |
2010-12-22 | When configuring a vnd(4) disk, populate the disk name based on the mode | Joel Sing |
2010-09-22 | All users of physio(9) now pass NULL as the buf pointer argument, so | Matthew Dempsky |
2010-09-08 | Store a struct device pointer within struct disk and populate this when | Joel Sing |
2010-08-28 | Garbage collect struct dkdriver. | Matthew Dempsky |
2010-07-22 | Instead of trying to biowait on a buf that has errored, do the | Thordur I. Bjornsson |