File: nvme_mi_admin_get_log.2

package info (click to toggle)
libnvme 1.13-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 7,336 kB
  • sloc: ansic: 30,501; perl: 1,834; sh: 436; python: 190; cpp: 64; makefile: 54
file content (25 lines) | stat: -rw-r--r-- 935 bytes parent folder | download
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
.TH "nvme_mi_admin_get_log" 9 "nvme_mi_admin_get_log" "April 2025" "libnvme API manual" LINUX
.SH NAME
nvme_mi_admin_get_log \- Retrieve log page data from controller
.SH SYNOPSIS
.B "int" nvme_mi_admin_get_log
.BI "(nvme_mi_ctrl_t ctrl "  ","
.BI "struct nvme_get_log_args *args "  ");"
.SH ARGUMENTS
.IP "ctrl" 12
Controller to query
.IP "args" 12
Get Log Page command arguments
.SH "DESCRIPTION"
Performs a Get Log Page Admin command as specified by \fIargs\fP. Response data
is stored in \fIargs->data\fP, which should be a buffer of \fIargs->data_len\fP bytes.
Resulting data length is stored in \fIargs->data_len\fP on successful
command completion.

This request may be implemented as multiple log page commands, in order
to fit within MI message-size limits.

See: \fIstruct nvme_get_log_args\fP
.SH "RETURN"
The nvme command status if a response was received (see
\fIenum nvme_status_field\fP) or -1 with errno set otherwise.