Age | Commit message (Expand) | Author |
2013-11-01 | Sprinkle (long long) casts where %lld is being used to print daddr_t | Kenneth R Westerback |
2013-10-03 | Print daddr_t variables with %lld, u_int64_t variables with %llu. | Kenneth R Westerback |
2013-10-02 | Use u_int64_t instead of daddr_t parameters to sd_cmd_rw*() functions. | Kenneth R Westerback |
2013-09-19 | Tweak types to keep daddr_t address and sector address separate. | Kenneth R Westerback |
2013-09-15 | Use DL_SECTOBLK() and DL_BLKTOSEC() to clarify code and remove | Kenneth R Westerback |
2013-06-11 | final removal of daddr64_t. daddr_t has been 64 bit for a long enough | Theo de Raadt |
2012-12-19 | Temporarily bring back the shutdown hook, but only use it to flush the disk | Mark Kettenis |
2012-10-15 | In DVACT_SUSPEND, do a flush of the disk. We do this in DVACT_POWERDOWN | Theo de Raadt |
2012-10-08 | Revamp the sequences for suspend/hibernate -> resume so that the code | Theo de Raadt |
2012-07-09 | Revert previous. | Kenneth R Westerback |
2012-07-08 | Return EROFS when a read-write mount of a read-only sd(4) device | Kenneth R Westerback |
2012-06-10 | Do NOT make all check condition results report EIO. Only use EIO | Kenneth R Westerback |
2011-10-10 | Put the drive in standby mode when we're powering down the machine. | Mark Kettenis |
2011-07-18 | Fix an off-by-1 error and a 32-bit integer arithmetic overflow bug | Matthew Dempsky |
2011-07-12 | fix some notyet code | David Gwynne |
2011-07-12 | now that we know if a disk is thin provisioned (or an ssd), we can choose | David Gwynne |
2011-07-11 | ask the disk about unmap (read trim) parameters. check if we have the | David Gwynne |
2011-07-11 | disks report trim^Wunmap^Wif theyre thin provisioned via a bit in | David Gwynne |
2011-07-06 | Eliminate redundant buf validation checks in xxstrategy() methods now | Matthew Dempsky |
2011-07-03 | Remove config_activate() and DVACT_ACTIVATE. PCMCIA's the only thing | Matthew Dempsky |
2011-06-30 | Refactor some common open/close/detach disk driver code into | Matthew Dempsky |
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-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-05-31 | Change a few of the more common disk drivers (sd, cd, wd, rd, and vnd) | Matthew Dempsky |
2011-04-08 | Since we don't print "drive offline" anymore, there is no need to | Kenneth R Westerback |
2011-04-07 | Do not use NULL in integer comparisons. No functional change. | Miod Vallat |
2011-04-07 | 'disk offline' is not helpful. Silence is golden. | Kenneth R Westerback |
2011-03-31 | - use nitems(); no binary change. | Jasper Lievisse Adriaanse |
2011-03-17 | use dma_alloc/dma_free instead of malloc to allocate buffers which need | Theo de Raadt |
2011-02-21 | If a spin up command can't be started becaause of a lack of openings, | Kenneth R Westerback |
2010-12-24 | Have sd(4) devices check for and respect read-only information the | Kenneth R Westerback |
2010-09-24 | init err to 0 in sd_get_parms to avoid confusion when checking rigid | David Gwynne |
2010-09-22 | All users of physio(9) now pass NULL as the buf pointer argument, so | Matthew Dempsky |
2010-09-21 | Add a real DIOCGPDINFO, allowing access to the physical information | Kenneth R Westerback |
2010-09-20 | bufq_drain() does not need to be done in deactivate; we only need | Theo de Raadt |
2010-09-12 | Garbage collect rot_rate from disk_parms. No longer in disk label so no | Kenneth R Westerback |
2010-09-11 | Be more ruthlessly consistent in variable names for blk/block == | Kenneth R Westerback |
2010-09-10 | scsi_xsh_del the io handler in deactivate to prevent it from being run on | David Gwynne |
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 | Restore compilability after bufq changes | Miod Vallat |
2010-09-01 | make struct bufq a member of the softc for devices that use it, | David Gwynne |
2010-08-31 | in the activate function, order the DVACT_ functions in the order they | Theo de Raadt |
2010-08-28 | Garbage collect struct dkdriver. | Matthew Dempsky |
2010-08-03 | Don't attempt to set the read or write caches on usb disks. It | Kenneth R Westerback |
2010-07-07 | Pull out disk sort. I committed the wrong version of the diff and it | Marco Peereboom |
2010-07-06 | Enable FIFO IO for sd devices. This time committed against the actual tree. | Marco Peereboom |
2010-07-03 | Stop disk on suspend and start it again upon resume. Gets rid of the loud | Mark Kettenis |