aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/nvme/nvme.c
Commit message (Expand)AuthorAgeFilesLines
* nvme: do not revert o single I/O queue when per-CPU queues not possibleJim Harris2016-01-071-2/+0
* nvme: do not notify a consumer about failures that occur during initializationJim Harris2015-07-291-0/+9
* nvme: remove CHATHAM related codeJim Harris2015-04-081-1/+0
* nvme: add device strings for Intel DC series NVMe SSDsJim Harris2015-04-081-10/+38
* nvme: Close hole where nvd(4) would not be notified of all nvme(4)Jim Harris2014-03-181-26/+62
* Do not leak resources during attach if nvme_ctrlr_construct() or the initialJim Harris2013-10-081-3/+9
* If a controller fails to initialize, do not notify consumers (nvd) of itsJim Harris2013-08-131-0/+9
* Send a shutdown notification in the driver unload path, to ensureJim Harris2013-08-131-17/+1
* Add message when nvd disks are attached and detached.Jim Harris2013-07-191-1/+0
* Update copyright dates.Jim Harris2013-07-091-1/+1
* Add pci_enable_busmaster() and pci_disable_busmaster() calls inJim Harris2013-07-091-0/+3
* Move the busdma mapping functions to nvme_qpair.c.Jim Harris2013-04-121-37/+0
* Do not panic when a busdma mapping operation fails.Jim Harris2013-04-121-1/+7
* Replace usages of mtx_pool_find used for admin commands with a pollingJim Harris2013-03-261-0/+15
* Add the ability to internally mark a controller as failed, if it is unable toJim Harris2013-03-261-1/+17
* Remove the is_started flag from struct nvme_controller.Jim Harris2013-03-261-1/+3
* Cap the number of retry attempts to a configurable number. This ensuresJim Harris2013-03-261-1/+2
* Pass associated log page data to async event consumers, if requested.Jim Harris2013-03-261-2/+5
* Create struct nvme_status.Jim Harris2013-03-261-2/+2
* Add controller reset capability to nvme(4) and ability to explicitlyJim Harris2013-03-261-3/+3
* Add an interface for nvme shim drivers (i.e. nvd) to register forJim Harris2013-03-261-14/+49
* Move controller destruction code from nvme_detach() to new nvme_ctrlr_destruct()Jim Harris2013-03-261-46/+1
* Fix GCC build:David E. O'Brien2013-03-071-5/+3
* Map BAR 4/5, because NVMe spec says devices may place the MSI-X tableJim Harris2012-12-181-0/+5
* Simplify module definition by adding nvme_modevent to DRIVER_MODULE()Jim Harris2012-12-181-9/+2
* Do not use taskqueue to defer completion work when using INTx. INTx nowJim Harris2012-12-181-5/+0
* Add PCI device ID for 8-channel IDT NVMe controller, and clarify that theJim Harris2012-12-061-1/+2
* Cleanup uio-related code to use struct nvme_request andJim Harris2012-10-181-6/+2
* Add nvme_ctrlr_submit_[admin|io]_request functions which consolidatesJim Harris2012-10-181-27/+0
* Add struct nvme_request object which contains all of the parameters passedJim Harris2012-10-181-9/+26
* Merge struct nvme_prp_list into struct nvme_tracker.Jim Harris2012-10-181-19/+3
* Add return codes to all functions used for submitting commands to I/OJim Harris2012-10-181-0/+3
* Revert previous commit...Kevin Lo2012-10-101-1/+1
* Prefer NULL over 0 for pointersKevin Lo2012-10-091-1/+1
* In nvme(4), set device description for BUS_PROBE_GENERIC case.Jim Harris2012-09-191-10/+11
* Report nvme(4) as a generic driver for NVMe devices if PCI class, subclassJim Harris2012-09-191-5/+18
* This is the first of several commits which will add NVM Express (NVMe)Jim Harris2012-09-171-0/+408