| Commit message (Expand) | Author | Age | Files | Lines |
* | MFC r263311: | jimharris | 2014-05-07 | 1 | -0/+2 |
* | MFC r263310: | jimharris | 2014-05-07 | 1 | -2/+5 |
* | Log and then disable asynchronous notification of persistent events after | jimharris | 2013-10-08 | 1 | -0/+3 |
* | Add driver-assisted striping for upcoming Intel NVMe controllers that can | jimharris | 2013-10-08 | 1 | -0/+1 |
* | Send a shutdown notification in the driver unload path, to ensure | jimharris | 2013-08-13 | 1 | -0/+1 |
* | Add comment explaining why CACHE_LINE_SIZE is defined in nvme_private.h | jimharris | 2013-07-09 | 1 | -0/+4 |
* | Update copyright dates. | jimharris | 2013-07-09 | 1 | -1/+1 |
* | Remove remaining uio-related code. | jimharris | 2013-06-26 | 1 | -16/+0 |
* | Use MAXPHYS to specify the maximum I/O size for nvme(4). | jimharris | 2013-06-26 | 1 | -5/+2 |
* | Move the busdma mapping functions to nvme_qpair.c. | jimharris | 2013-04-12 | 1 | -4/+0 |
* | Add a mutex to each namespace, for general locking operations on the namespace. | jimharris | 2013-04-12 | 1 | -0/+1 |
* | Rename the controller's fail_req_lock, so that it can be used for other | jimharris | 2013-04-12 | 1 | -1/+2 |
* | Add unmapped bio support to nvme(4) and nvd(4). | jimharris | 2013-04-01 | 1 | -0/+34 |
* | Add "type" to nvme_request, signifying if its payload is a VADDR, UIO, or | jimharris | 2013-03-29 | 1 | -7/+28 |
* | Clean up debug prints. | jimharris | 2013-03-26 | 1 | -0/+4 |
* | Move common code from the different nvme_allocate_request functions into a | jimharris | 2013-03-26 | 1 | -18/+21 |
* | Replace usages of mtx_pool_find used for admin commands with a polling | jimharris | 2013-03-26 | 1 | -0/+7 |
* | Add the ability to internally mark a controller as failed, if it is unable to | jimharris | 2013-03-26 | 1 | -1/+16 |
* | Remove the is_started flag from struct nvme_controller. | jimharris | 2013-03-26 | 1 | -4/+1 |
* | Ensure the controller's MDTS is accounted for in max_xfer_size. | jimharris | 2013-03-26 | 1 | -0/+3 |
* | Cap the number of retry attempts to a configurable number. This ensures | jimharris | 2013-03-26 | 1 | -1/+6 |
* | Pass associated log page data to async event consumers, if requested. | jimharris | 2013-03-26 | 1 | -1/+4 |
* | When an asynchronous event request is completed, automatically fetch the | jimharris | 2013-03-26 | 1 | -0/+6 |
* | Add structure definitions and controller command function for firmware | jimharris | 2013-03-26 | 1 | -0/+4 |
* | Add structure definitions and a controller command function for | jimharris | 2013-03-26 | 1 | -0/+5 |
* | Make nvme_ctrlr_reset a nop if a reset is already in progress. | jimharris | 2013-03-26 | 1 | -1/+3 |
* | By default, always escalate to controller reset when an I/O times out. | jimharris | 2013-03-26 | 1 | -1/+2 |
* | Add a tunable for the I/O timeout interval. Default is still 30 seconds, | jimharris | 2013-03-26 | 1 | -4/+9 |
* | Add handling for controller fatal status (csts.cfs). | jimharris | 2013-03-26 | 1 | -0/+3 |
* | Add controller reset capability to nvme(4) and ability to explicitly | jimharris | 2013-03-26 | 1 | -6/+12 |
* | Keep a doubly-linked list of outstanding trackers. | jimharris | 2013-03-26 | 1 | -2/+3 |
* | Expose the get/set features API to nvme consumers. | jimharris | 2013-03-26 | 1 | -8/+0 |
* | Add an interface for nvme shim drivers (i.e. nvd) to register for | jimharris | 2013-03-26 | 1 | -0/+6 |
* | Enable asynchronous event requests on non-Chatham devices. | jimharris | 2013-03-26 | 1 | -7/+16 |
* | Move controller destruction code from nvme_detach() to new nvme_ctrlr_destruct() | jimharris | 2013-03-26 | 1 | -0/+1 |
* | Specify command timeout interval on a per-command type basis. | jimharris | 2013-03-26 | 1 | -0/+3 |
* | Add support for ABORT commands, including issuing these commands when | jimharris | 2013-03-26 | 1 | -0/+2 |
* | Map BAR 4/5, because NVMe spec says devices may place the MSI-X table | jimharris | 2012-12-18 | 1 | -0/+8 |
* | Do not use taskqueue to defer completion work when using INTx. INTx now | jimharris | 2012-12-18 | 1 | -3/+0 |
* | Add PCI device ID for 8-channel IDT NVMe controller, and clarify that the | jimharris | 2012-12-06 | 1 | -1/+2 |
* | Add ability to queue nvme_request objects if no nvme_trackers are available. | jimharris | 2012-10-18 | 1 | -1/+2 |
* | Preallocate a limited number of nvme_tracker objects per qpair, rather | jimharris | 2012-10-18 | 1 | -7/+16 |
* | Create nvme_qpair_submit_request() which eliminates all of the code | jimharris | 2012-10-18 | 1 | -0/+2 |
* | Cleanup uio-related code to use struct nvme_request and | jimharris | 2012-10-18 | 1 | -0/+19 |
* | Add nvme_ctrlr_submit_[admin|io]_request functions which consolidates | jimharris | 2012-10-18 | 1 | -3/+4 |
* | Add struct nvme_request object which contains all of the parameters passed | jimharris | 2012-10-18 | 1 | -7/+36 |
* | Merge struct nvme_prp_list into struct nvme_tracker. | jimharris | 2012-10-18 | 1 | -17/+9 |
* | Count number of times each queue pair's interrupt handler is invoked. | jimharris | 2012-10-10 | 1 | -0/+1 |
* | Put the nvme_qpair mutex on its own cacheline. | jimharris | 2012-10-10 | 1 | -3/+8 |
* | This is the first of several commits which will add NVM Express (NVMe) | jimharris | 2012-09-17 | 1 | -0/+369 |