1NVME-SANITIZE-LOG(1) NVMe Manual NVME-SANITIZE-LOG(1)
2
3
4
6 nvme-sanitize-log - Send NVMe sanitize-log Command, return result
7
9 nvme sanitize-log <device> [--output-format=<fmt> | -o <fmt>]
10 [--human-readable | -H]
11 [--raw-binary | -b]
12
14 Retrieves the NVMe Sanitize log page from an NVMe device and provides
15 the status of sanitize command.
16
17 The <device> parameter is mandatory NVMe character device (ex:
18 /dev/nvme0).
19
20 Expected status and description :-
21
22 ┌────────────┬────────────────────────────┐
23 │Status Code │ Description │
24 ├────────────┼────────────────────────────┤
25 │ │ │
26 │0x0000 │ NVM subsystem has never │
27 │ │ been sanitized. │
28 ├────────────┼────────────────────────────┤
29 │ │ │
30 │0x0001 │ The most recent sanitize │
31 │ │ operation completed │
32 │ │ successfully. │
33 ├────────────┼────────────────────────────┤
34 │ │ │
35 │0x0002 │ A sanitize operation is │
36 │ │ currently in progress. │
37 ├────────────┼────────────────────────────┤
38 │ │ │
39 │0x0003 │ The most recent sanitize │
40 │ │ operation failed. │
41 ├────────────┼────────────────────────────┤
42 │ │ │
43 │0x0100 │ Global Data Erased bit If │
44 │ │ set to 1 then non-volatile │
45 │ │ storage in the NVM │
46 │ │ subsystem has not been │
47 │ │ written to: a) since being │
48 │ │ manufactured and the NVM │
49 │ │ subsystem has never been │
50 │ │ sanitized; or b) since the │
51 │ │ most recent successful │
52 │ │ sanitize operation. If │
53 │ │ cleared to 0, then │
54 │ │ non-volatile storage in │
55 │ │ the NVM subsystem has been │
56 │ │ written to: a) since being │
57 │ │ manufactured and the NVM │
58 │ │ subsystem has never been │
59 │ │ sanitized; or b) since the │
60 │ │ most recent successful │
61 │ │ sanitize operation of the │
62 │ │ NVM subsystem. │
63 └────────────┴────────────────────────────┘
64
65 Sanitize Progress - percentage complete
66
67 On success it returns 0, error code otherwise.
68
70 -o <format>, --output-format=<format>
71 Set the reporting format to normal, json, or binary. Only one
72 output format can be used at a time.
73
74 -H, --human-readable
75 This option will parse and format many of the bit fields into
76 human-readable formats.
77
78 -b, --raw-binary
79 Print the raw buffer to stdout. Structure is not parsed by program.
80 This overrides the vendor specific and human readable options.
81
83 · Has the program issue Sanitize-log Command :
84
85 # nvme sanitize-log /dev/nvme0
86
88 Part of the nvme-user suite.
89
90
91
92NVMe 04/24/2020 NVME-SANITIZE-LOG(1)