blob: 982be2d538b64e64d11ef59d68734b89b3310ea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Nexenta Systems, Inc. All rights reserved.
# Copyright 2019 Western Digital Corporation
#
#
# The driver was tested only against devices supporting v1.0 of the
# NVMe specification. Uncomment this to be able to use devices conforming
# to newer specifications.
#strict-version=0;
#
# The driver does currently not support any vendor specific extension to the
# specification. By default it will fault the device if it receives a vendor-
# specific command status. Uncomment this to disable this behaviour.
#ignore-unknown-vendor-status=1;
#
# The maximum length of the admin queue can be overridden here (16-4096).
#admin-queue-len=256;
#
# The maximum length of the individual I/O submission queues can be
# overriden here (16-65536).
#io-squeue-len=1024;
#
# The maximum length of the individual I/O completion queues can be
# overriden here (16-65536).
#io-cqueue-len=2048;
#
# The number of submission queues can be configured here. The default is
# to match submission queues 1 for 1 with completion queues.
# The range is 1-65535.
#max-submission-queues=65535;
#
# The number of completion queues can be configured here. The default is
# one per interrupt vector. Should there be fewer completion queues than
# vectors, the number of vectors is reduced. The number of completion
# queues will also be limited to the number of submission queues.
# The range is 1-65535.
#max-completion-queues=65535;
#
# The maximum number of outstanding asynchronous event requests can
# overridden here.
#async-event-limit=10;
#
# Enable (1) or Disable (0) the volatile write cache, if present.
#
#volatile-write-cache-enable=1;
#
# The minimum physical block size to be reported to blkdev. This value must
# be a power of 2 greater than or equal to 512.
#
#min-phys-block-size=512;
|