| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add new opcodes and statuses from NVMe 1.3a. | Alexander Motin | 2018-03-11 | 1 | -0/+65 |
* | NVMe: Add big-endian support | Wojciech Macek | 2018-02-22 | 1 | -36/+55 |
* | sys/dev: further adoption of SPDX licensing ID tags. | Pedro F. Giffuni | 2017-11-27 | 1 | -0/+2 |
* | Add CAM/NVMe support for CAM_DATA_SG | Warner Losh | 2017-08-29 | 1 | -0/+8 |
* | Avoid dereferencing unintialized elements in the error path. | Warner Losh | 2017-03-07 | 1 | -0/+3 |
* | Convert the Q-Pair and PRP list memory allocations to use BUSDMA. Add a | Scott Long | 2016-11-08 | 1 | -63/+91 |
* | nvme: do not pre-allocate MSI-X IRQ resources | Jim Harris | 2016-01-07 | 1 | -1/+2 |
* | nvme: use BUS_SPACE_MAXSIZE for bus_dma_tag_create maxsize parameter | Jim Harris | 2015-04-09 | 1 | -1/+1 |
* | nvme: remove CHATHAM related code | Jim Harris | 2015-04-08 | 1 | -9/+0 |
* | nvme: create separate DMA tag for non-payload DMA buffers | Jim Harris | 2015-04-08 | 1 | -9/+38 |
* | nvme: Allocate all MSI resources up front so that we can fall back to | Jim Harris | 2014-03-18 | 1 | -4/+2 |
* | nvme: NVMe specification dictates 4-byte alignment for PRPs (not 8). | Jim Harris | 2014-03-17 | 1 | -1/+2 |
* | Update copyright dates. | Jim Harris | 2013-07-09 | 1 | -1/+1 |
* | Remove remaining uio-related code. | Jim Harris | 2013-06-26 | 1 | -16/+0 |
* | Fail any passthrough command whose transfer size exceeds the controller's | Jim Harris | 2013-06-26 | 1 | -0/+7 |
* | Use MAXPHYS to specify the maximum I/O size for nvme(4). | Jim Harris | 2013-06-26 | 1 | -4/+3 |
* | Move the busdma mapping functions to nvme_qpair.c. | Jim Harris | 2013-04-12 | 1 | -0/+45 |
* | Do not panic when a busdma mapping operation fails. | Jim Harris | 2013-04-12 | 1 | -4/+21 |
* | Add unmapped bio support to nvme(4) and nvd(4). | Jim Harris | 2013-04-01 | 1 | -0/+8 |
* | Add "type" to nvme_request, signifying if its payload is a VADDR, UIO, or | Jim Harris | 2013-03-29 | 1 | -15/+19 |
* | Fix printf format issue on i386. | Jim Harris | 2013-03-27 | 1 | -2/+3 |
* | Clean up debug prints. | Jim Harris | 2013-03-26 | 1 | -16/+223 |
* | Change a number of malloc(9) calls to use M_WAITOK instead of | Jim Harris | 2013-03-26 | 1 | -11/+4 |
* | Abort and do not retry any outstanding admin commands left over after | Jim Harris | 2013-03-26 | 1 | -0/+15 |
* | Add the ability to internally mark a controller as failed, if it is unable to | Jim Harris | 2013-03-26 | 1 | -11/+90 |
* | Just disable the controller instead of deleting IO queues during detach. | Jim Harris | 2013-03-26 | 1 | -59/+16 |
* | Cap the number of retry attempts to a configurable number. This ensures | Jim Harris | 2013-03-26 | 1 | -10/+24 |
* | Create struct nvme_status. | Jim Harris | 2013-03-26 | 1 | -13/+6 |
* | Make nvme_ctrlr_reset a nop if a reset is already in progress. | Jim Harris | 2013-03-26 | 1 | -4/+15 |
* | By default, always escalate to controller reset when an I/O times out. | Jim Harris | 2013-03-26 | 1 | -11/+10 |
* | Add a tunable for the I/O timeout interval. Default is still 30 seconds, | Jim Harris | 2013-03-26 | 1 | -4/+7 |
* | Add handling for controller fatal status (csts.cfs). | Jim Harris | 2013-03-26 | 1 | -2/+18 |
* | Add controller reset capability to nvme(4) and ability to explicitly | Jim Harris | 2013-03-26 | 1 | -68/+139 |
* | Keep a doubly-linked list of outstanding trackers. | Jim Harris | 2013-03-26 | 1 | -8/+11 |
* | Enable asynchronous event requests on non-Chatham devices. | Jim Harris | 2013-03-26 | 1 | -8/+54 |
* | Specify command timeout interval on a per-command type basis. | Jim Harris | 2013-03-26 | 1 | -3/+4 |
* | Explicitly abort a timed out command, if the ABORT command sent to the | Jim Harris | 2013-03-26 | 1 | -1/+29 |
* | Break out the code for completing an nvme_tracker object into a separate | Jim Harris | 2013-03-26 | 1 | -43/+59 |
* | Add support for ABORT commands, including issuing these commands when | Jim Harris | 2013-03-26 | 1 | -5/+6 |
* | Add an internal _nvme_qpair_submit_request function, which performs | Jim Harris | 2013-03-26 | 1 | -6/+15 |
* | Use callout_reset_curcpu to allow the callout to be handled by the | Jim Harris | 2012-10-31 | 1 | -0/+5 |
* | Fix build after r241659. | Gleb Smirnoff | 2012-10-18 | 1 | -1/+1 |
* | Add ability to queue nvme_request objects if no nvme_trackers are available. | Jim Harris | 2012-10-18 | 1 | -9/+29 |
* | Preallocate a limited number of nvme_tracker objects per qpair, rather | Jim Harris | 2012-10-18 | 1 | -49/+40 |
* | Create nvme_qpair_submit_request() which eliminates all of the code | Jim Harris | 2012-10-18 | 1 | -0/+32 |
* | Simplify how the qpair lock is acquired and released. | Jim Harris | 2012-10-18 | 1 | -9/+2 |
* | Cleanup uio-related code to use struct nvme_request and | Jim Harris | 2012-10-18 | 1 | -1/+1 |
* | Add nvme_ctrlr_submit_[admin|io]_request functions which consolidates | Jim Harris | 2012-10-18 | 1 | -0/+1 |
* | Add struct nvme_request object which contains all of the parameters passed | Jim Harris | 2012-10-18 | 1 | -6/+12 |
* | Merge struct nvme_prp_list into struct nvme_tracker. | Jim Harris | 2012-10-18 | 1 | -42/+11 |