Skip to content

Commit 4e7327f

Browse files
sc108-leeigaw
authored andcommitted
nvme: telemetry ctrl-init need to clear RAE
if rae default is true, it's always true so it was not possible to issue with RAE=0 If the host is reading the Telemetry Controller-Initiated log page, then the host reads any portion of that log page with the Retain Asynchronous Event bit cleared to ‘0’ to indicate to the controller that the host has completed reading the Telemetry Controller-Initiated log page Signed-off-by: Steven Seungcheol Lee <[email protected]>
1 parent 6f1f902 commit 4e7327f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nvme.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ static int get_telemetry_log(int argc, char **argv, struct command *cmd,
875875
.host_gen = 1,
876876
.ctrl_init = false,
877877
.data_area = 3,
878-
.rae = true,
878+
.rae = false,
879879
};
880880

881881
NVME_ARGS(opts,

0 commit comments

Comments
 (0)