Skip to content

Commit 23f16ae

Browse files
martin-gpyigaw
authored andcommitted
nvme-print: align print output for get-feature host behavior
The print formatting for get-feature host behavior (0x16) is off. Make minor changes to align the outputs for better readability. Signed-off-by: Martin George <[email protected]>
1 parent fb69b67 commit 23f16ae

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

nvme-print-stdout.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5324,19 +5324,19 @@ static void stdout_feature_show_fields(enum nvme_features_id fid,
53245324
if (buf) {
53255325
struct nvme_feat_host_behavior *host_behavior =
53265326
(struct nvme_feat_host_behavior *)buf;
5327-
printf("\tAdvanced Command Retry Enable (ACRE): %s\n",
5327+
printf("\tAdvanced Command Retry Enable (ACRE) : %s\n",
53285328
host_behavior->acre ? "True" : "False");
5329-
printf("\tExtended Telemetry Data Area 4 Supported (ETDAS): %s\n",
5329+
printf("\tExtended Telemetry Data Area 4 Supported (ETDAS) : %s\n",
53305330
host_behavior->etdas ? "True" : "False");
5331-
printf("\tLBA Format Extension Enable (LBAFEE): %s\n",
5331+
printf("\tLBA Format Extension Enable (LBAFEE) : %s\n",
53325332
host_behavior->lbafee ? "True" : "False");
5333-
printf("\tHost Dispersed Namespace Support (HDISNS) : %s\n",
5333+
printf("\tHost Dispersed Namespace Support (HDISNS) : %s\n",
53345334
host_behavior->hdisns ? "Enabled" : "Disabled");
5335-
printf("\tCopy Descriptor Format 2h Enabled (CDF2E) : %s\n",
5335+
printf("\tCopy Descriptor Format 2h Enabled (CDF2E) : %s\n",
53365336
host_behavior->cdfe & (1 << 2) ? "True" : "False");
5337-
printf("\tCopy Descriptor Format 3h Enabled (CDF3E) : %s\n",
5337+
printf("\tCopy Descriptor Format 3h Enabled (CDF3E) : %s\n",
53385338
host_behavior->cdfe & (1 << 3) ? "True" : "False");
5339-
printf("\tCopy Descriptor Format 4h Enabled (CDF4E) : %s\n",
5339+
printf("\tCopy Descriptor Format 4h Enabled (CDF4E) : %s\n",
53405340
host_behavior->cdfe & (1 << 4) ? "True" : "False");
53415341
}
53425342
break;

0 commit comments

Comments
 (0)