#include <linux/nvme.h>
#include <linux/bio.h>
#include <linux/bitops.h>
#include <linux/blkdev.h>
#include <linux/delay.h>
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/genhd.h>
#include <linux/idr.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/kdev_t.h>
#include <linux/kthread.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/pci.h>
#include <linux/poison.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/types.h>
#include <asm-generic/io-64-nonatomic-lo-hi.h>
Go to the source code of this file.
#define ADMIN_TIMEOUT (60 * HZ) |
#define BIOVEC_NOT_VIRT_MERGEABLE |
( |
|
vec1, |
|
|
|
vec2 |
|
) |
| |
Value:((vec2)->bv_offset || \
(((vec1)->bv_offset + (vec1)->bv_len) %
PAGE_SIZE))
Definition at line 473 of file nvme.c.
#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE) |
#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE) |
#define CMD_CTX_FLUSH (0x318 + CMD_CTX_BASE) |
#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE) |
#define nvme_dump_registers NULL |
#define nvme_error_detected NULL |
#define nvme_error_resume NULL |
#define NVME_IO_TIMEOUT (5 * HZ) |
#define nvme_link_reset NULL |
#define NVME_Q_DEPTH 1024 |
#define nvme_slot_reset NULL |
#define nvme_suspend NULL |
#define PCI_CLASS_STORAGE_EXPRESS 0x010802 |
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
nvme_id_table |
|
|
) |
| |
module_exit |
( |
nvme_exit |
| ) |
|
module_init |
( |
nvme_init |
| ) |
|
module_param |
( |
nvme_major |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
use_threaded_interrupts |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |