| Commit message (Expand) | Author | Age | Files | Lines |
* | Re-enable IO_NOCACHE, and use is in vnd. |  beck | 2019-11-27 | 1 | -3/+6 |
* | Correctly re-initialize the nameinfo struct that is re-used for |  beck | 2019-11-03 | 1 | -1/+2 |
* | Fix vn_open to require an op of 0, and 0 or KERNELPATH only as flags. |  beck | 2019-10-06 | 1 | -2/+2 |
* | Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always |  visa | 2018-04-28 | 1 | -3/+3 |
* | Remove almost unused `flags' argument of suser(). |  mpi | 2018-02-19 | 1 | -2/+2 |
* | Don't pull in <sys/file.h> just to get fcntl.h |  guenther | 2017-12-30 | 1 | -2/+2 |
* | Avoid additional div0 in case both ntracks & nsectors passed in |  deraadt | 2017-07-19 | 1 | -2/+3 |
* | Avoid division by zero of vnd_secsize |  deraadt | 2017-07-19 | 1 | -1/+2 |
* | p_comm is the process's command and isn't per thread, so move it from |  guenther | 2017-01-21 | 1 | -3/+3 |
* | Kill compat for old VNDIOCSET; ok deraadt@ |  jca | 2016-12-14 | 1 | -31/+1 |
* | Revert unrelated bits that snuck in previous. |  jca | 2016-11-12 | 1 | -3/+3 |
* | Bump VNDNLEN from 90 to 1024 bytes, to avoid "VNDIOCSET: File name too long" |  jca | 2016-11-12 | 1 | -3/+33 |
* | Various printf claim to report the PID, so actually report that and not the TID |  guenther | 2016-10-08 | 1 | -4/+4 |
* | Remove the unused flags argument from VOP_UNLOCK(). |  natano | 2016-03-19 | 1 | -3/+3 |
* | Simple size for free(). These are a pleasure to convert when the |  deraadt | 2015-08-26 | 1 | -2/+2 |
* | obvious sizes for free() |  deraadt | 2015-08-25 | 1 | -3/+3 |
* | yet more mallocarray() changes. |  doug | 2014-12-13 | 1 | -4/+3 |
* | convert old b functions to mem functions |  tedu | 2014-10-17 | 1 | -5/+5 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -4/+4 |
* | Use %llu+DL_GETPSIZE() to show partition size. Replace %li+(long) with |  krw | 2013-11-12 | 1 | -4/+4 |
* | Sprinkle (long long) casts where %lld is being used to print daddr_t |  krw | 2013-11-01 | 1 | -2/+3 |
* | final removal of daddr64_t. daddr_t has been 64 bit for a long enough |  deraadt | 2013-06-11 | 1 | -5/+5 |
* | Add a dmesg warning about sloppy disk I/O to vnd(4) devices to help |  matthew | 2011-08-26 | 1 | -1/+10 |
* | Revert vnd(4) to its older less strict behavior. |  matthew | 2011-07-18 | 1 | -3/+29 |
* | Range check vnd_secsize, vnd_ntracks, and vnd_nsectors so that later on |  deraadt | 2011-07-12 | 1 | -2/+9 |
* | Ack, my last change used size_t for file offsets, but size_t is only |  matthew | 2011-07-08 | 1 | -2/+2 |
* | Refactor vnd(4) to use vn_rdwr() instead of setting up the uio/iovec |  matthew | 2011-07-08 | 1 | -58/+31 |
* | Validate DISKUNIT(dev) in vndstrategy() like we do in other |  matthew | 2011-07-08 | 1 | -31/+15 |
* | Add a vndencryptbuf() function, and refactor vndstrategy() slightly to |  matthew | 2011-07-08 | 1 | -7/+11 |
* | vndsize() can just return -1; we don't support swapping to vnd |  matthew | 2011-07-06 | 1 | -8/+3 |
* | Compact the vnd sc_flags bits. |  matthew | 2011-07-06 | 1 | -4/+4 |
* | Eliminate some sanity checks in vndstrategy() that are now handled by |  matthew | 2011-07-06 | 1 | -26/+3 |
* | vndstrategy() should fail if VNF_HAVELABEL isn't set. This simplifies |  matthew | 2011-07-06 | 1 | -19/+14 |
* | Eliminate redundant buf validation checks in xxstrategy() methods now |  matthew | 2011-07-06 | 1 | -2/+2 |
* | move the specfs code to a place people can see it; ok guenther thib krw |  deraadt | 2011-07-04 | 1 | -3/+2 |
* | Cleanup vnd(4) a bit now that it only has one mode of operation and |  matthew | 2011-07-03 | 1 | -22/+11 |
* | Fix vnd(4) support for read-only files. We can't clear sc_flags |  matthew | 2011-07-03 | 1 | -2/+2 |
* | Refactor some common open/close/detach disk driver code into |  matthew | 2011-06-30 | 1 | -36/+5 |
* | looks like the disk_lock method actually does work |  deraadt | 2011-06-21 | 1 | -20/+18 |
* | explicit_bzero for the crypto key |  tedu | 2011-06-20 | 1 | -3/+3 |
* | for now, move back to a private rw_lock rather than the disk_lock. |  deraadt | 2011-06-20 | 1 | -18/+20 |
* | Use disk_lock_nointr() in the xxclose() routines so that they cannot |  deraadt | 2011-06-19 | 1 | -4/+3 |
* | Use disk_lock/disk_unlock directly and in the same way in these drivers, |  deraadt | 2011-06-19 | 1 | -23/+18 |
* | and in debug code, too |  deraadt | 2011-06-19 | 1 | -2/+2 |
* | stop trying to be clever with the softc name |  deraadt | 2011-06-19 | 1 | -108/+108 |
* | shorted code with a lovely goto |  deraadt | 2011-06-09 | 1 | -19/+7 |
* | Drop kernel support for the useless DIOCWLABEL ioctl and prune a lot |  matthew | 2011-06-05 | 1 | -14/+1 |
* | Get rid of the wlabel argument to bounds_check_with_label(). It's |  matthew | 2011-06-03 | 1 | -2/+2 |
* | No need to set error to 0, when it is still 0 from the start of the function. |  deraadt | 2011-06-02 | 1 | -2/+1 |
* | The vndbufpl is no longer used. |  deraadt | 2011-06-02 | 1 | -13/+1 |