Skip to content

Commit 93f83b9

Browse files
tbzatekigaw
authored andcommitted
nbft: Whitespace fixes
Code style fixes to satisfy the checkpatch "please, no space before tabs" warnings. Signed-off-by: Tomas Bzatek <[email protected]>
1 parent 9e74e4f commit 93f83b9

1 file changed

Lines changed: 48 additions & 48 deletions

File tree

src/nvme/nbft.h

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,17 +1002,17 @@ enum nbft_discovery_flags {
10021002
/**
10031003
* enum nbft_info_primary_admin_host_flag - Primary Administrative Host Descriptor Flags
10041004
* @NBFT_INFO_PRIMARY_ADMIN_HOST_FLAG_NOT_INDICATED: Not Indicated by Driver: The driver
1005-
* that created this NBFT provided no
1006-
* administrative priority hint for
1007-
* this NBFT.
1005+
* that created this NBFT provided no
1006+
* administrative priority hint for
1007+
* this NBFT.
10081008
* @NBFT_INFO_PRIMARY_ADMIN_HOST_FLAG_UNSELECTED: Unselected: The driver that created
1009-
* this NBFT explicitly indicated that
1010-
* this NBFT should not be prioritized
1011-
* over any other NBFT.
1009+
* this NBFT explicitly indicated that
1010+
* this NBFT should not be prioritized
1011+
* over any other NBFT.
10121012
* @NBFT_INFO_PRIMARY_ADMIN_HOST_FLAG_SELECTED: Selected: The driver that created
1013-
* this NBFT explicitly indicated that
1014-
* this NBFT should be prioritized over
1015-
* any other NBFT.
1013+
* this NBFT explicitly indicated that
1014+
* this NBFT should be prioritized over
1015+
* any other NBFT.
10161016
* @NBFT_INFO_PRIMARY_ADMIN_HOST_FLAG_RESERVED: Reserved.
10171017
*/
10181018
enum nbft_info_primary_admin_host_flag {
@@ -1027,13 +1027,13 @@ enum nbft_info_primary_admin_host_flag {
10271027
* @id: Host ID (raw UUID, length = 16 bytes).
10281028
* @nqn: Host NQN.
10291029
* @host_id_configured: HostID Configured Flag: value of True indicates that @id
1030-
* contains administratively-configured value, or driver
1031-
* default value if False.
1030+
* contains administratively-configured value, or driver
1031+
* default value if False.
10321032
* @host_nqn_configured: Host NQN Configured Flag: value of True indicates that
1033-
* @nqn contains administratively-configured value,
1034-
* or driver default value if False.
1033+
* @nqn contains administratively-configured value,
1034+
* or driver default value if False.
10351035
* @primary: Primary Administrative Host Descriptor, see
1036-
* &enum nbft_info_primary_admin_host_flag.
1036+
* &enum nbft_info_primary_admin_host_flag.
10371037
*/
10381038
struct nbft_info_host {
10391039
unsigned char *id;
@@ -1047,34 +1047,34 @@ struct nbft_info_host {
10471047
* struct nbft_info_hfi_info_tcp - HFI Transport Info Descriptor - NVMe/TCP
10481048
* @pci_sbdf: PCI Express Routing ID for the HFI Transport Function.
10491049
* @mac_addr: MAC Address: The MAC address of this HFI,
1050-
* in EUI-48TM format.
1050+
* in EUI-48TM format.
10511051
* @vlan: The VLAN identifier if the VLAN is associated with
1052-
* this HFI, as defined in IEEE 802.1q-2018 or zeroes
1053-
* if no VLAN is associated with this HFI.
1052+
* this HFI, as defined in IEEE 802.1q-2018 or zeroes
1053+
* if no VLAN is associated with this HFI.
10541054
* @ip_origin: The source of Ethernet L3 configuration information
1055-
* used by the driver or 0 if not used.
1055+
* used by the driver or 0 if not used.
10561056
* @ipaddr: The IPv4 or IPv6 address of this HFI.
10571057
* @subnet_mask_prefix: The IPv4 or IPv6 subnet mask in CIDR routing prefix
1058-
* notation.
1058+
* notation.
10591059
* @gateway_ipaddr: The IPv4 or IPv6 address of the IP gateway for this
1060-
* HFI or zeroes if no IP gateway is specified.
1060+
* HFI or zeroes if no IP gateway is specified.
10611061
* @route_metric: The cost value for the route indicated by this HFI.
10621062
* @primary_dns_ipaddr: The IPv4 or IPv6 address of the Primary DNS server
1063-
* for this HFI.
1063+
* for this HFI.
10641064
* @secondary_dns_ipaddr: The IPv4 or IPv6 address of the Secondary DNS server
1065-
* for this HFI.
1065+
* for this HFI.
10661066
* @dhcp_server_ipaddr: The IPv4 or IPv6 address of the DHCP server used
1067-
* to assign this HFI address.
1067+
* to assign this HFI address.
10681068
* @host_name: The Host Name string.
10691069
* @this_hfi_is_default_route: If True, then the BIOS utilized this interface
1070-
* described by HFI to be the default route with highest
1071-
* priority. If False, then routes are local to their
1072-
* own scope.
1070+
* described by HFI to be the default route with highest
1071+
* priority. If False, then routes are local to their
1072+
* own scope.
10731073
* @dhcp_override: If True, then HFI information was populated
1074-
* by consuming the DHCP on this interface. If False,
1075-
* then the HFI information was set administratively
1076-
* by a configuration interface to the driver and
1077-
* pre-OS envrionment.
1074+
* by consuming the DHCP on this interface. If False,
1075+
* then the HFI information was set administratively
1076+
* by a configuration interface to the driver and
1077+
* pre-OS envrionment.
10781078
*/
10791079
struct nbft_info_hfi_info_tcp {
10801080
__u32 pci_sbdf;
@@ -1096,7 +1096,7 @@ struct nbft_info_hfi_info_tcp {
10961096
/**
10971097
* struct nbft_info_hfi - Host Fabric Interface (HFI) Descriptor
10981098
* @index: HFI Descriptor Index: indicates the number of this HFI Descriptor
1099-
* in the Host Fabric Interface Descriptor List.
1099+
* in the Host Fabric Interface Descriptor List.
11001100
* @transport: Transport Type string (e.g. 'tcp').
11011101
* @tcp_info: The HFI Transport Info Descriptor, see &struct nbft_info_hfi_info_tcp.
11021102
*/
@@ -1109,12 +1109,12 @@ struct nbft_info_hfi {
11091109
/**
11101110
* struct nbft_info_discovery - Discovery Descriptor
11111111
* @index: The number of this Discovery Descriptor in the Discovery
1112-
* Descriptor List.
1112+
* Descriptor List.
11131113
* @security: The Security Profile Descriptor, see &struct nbft_info_security.
11141114
* @hfi: The HFI Descriptor associated with this Discovery Descriptor.
1115-
* See &struct nbft_info_hfi.
1115+
* See &struct nbft_info_hfi.
11161116
* @uri: A URI which indicates an NVMe Discovery controller associated
1117-
* with this Discovery Descriptor.
1117+
* with this Discovery Descriptor.
11181118
* @nqn: An NVMe Discovery controller NQN.
11191119
*/
11201120
struct nbft_info_discovery {
@@ -1128,7 +1128,7 @@ struct nbft_info_discovery {
11281128
/**
11291129
* struct nbft_info_security - Security Profile Descriptor
11301130
* @index: The number of this Security Profile Descriptor in the Security
1131-
* Profile Descriptor List.
1131+
* Profile Descriptor List.
11321132
*/
11331133
struct nbft_info_security {
11341134
int index;
@@ -1151,35 +1151,35 @@ enum nbft_info_nid_type {
11511151

11521152
/**
11531153
* struct nbft_info_subsystem_ns - Subsystem Namespace (SSNS) info
1154-
* @index: SSNS Descriptor Index in the descriptor list.
1154+
* @index: SSNS Descriptor Index in the descriptor list.
11551155
* @discovery: Primary Discovery Controller associated with
1156-
* this SSNS Descriptor.
1156+
* this SSNS Descriptor.
11571157
* @security: Security Profile Descriptor associated with
1158-
* this namespace.
1158+
* this namespace.
11591159
* @num_hfis: Number of HFIs.
11601160
* @hfis: List of HFIs associated with this namespace.
1161-
* Includes the primary HFI at the first position
1162-
* and all secondary HFIs. This array is null-terminated.
1161+
* Includes the primary HFI at the first position
1162+
* and all secondary HFIs. This array is null-terminated.
11631163
* @transport: Transport Type string (e.g. 'tcp').
11641164
* @traddr: Subsystem Transport Address.
11651165
* @trsvcid: Subsystem Transport Service Identifier.
11661166
* @subsys_port_id: The Subsystem Port ID.
11671167
* @nsid: The Namespace ID of this descriptor or when @nid
1168-
* should be used instead.
1168+
* should be used instead.
11691169
* @nid_type: Namespace Identifier Type, see &enum nbft_info_nid_type.
11701170
* @nid: The Namespace Identifier value.
11711171
* @subsys_nqn: Subsystem and Namespace NQN.
11721172
* @pdu_header_digest_required: PDU Header Digest (HDGST) Flag: the use of NVM Header
1173-
* Digest Enabled is required.
1174-
* @data_digest_required: Data Digest (DDGST) Flag: the use of NVM Data Digest
1175-
* Enabled is required.
1173+
* Digest Enabled is required.
1174+
* @data_digest_required: Data Digest (DDGST) Flag: the use of NVM Data Digest
1175+
* Enabled is required.
11761176
* @controller_id: Controller ID (SSNS Extended Information Descriptor):
1177-
* The controller ID associated with the Admin Queue
1178-
* or 0 if not supported.
1177+
* The controller ID associated with the Admin Queue
1178+
* or 0 if not supported.
11791179
* @asqsz: Admin Submission Queue Size (SSNS Extended Information
1180-
* Descriptor) or 0 if not supported.
1180+
* Descriptor) or 0 if not supported.
11811181
* @dhcp_root_path_string: DHCP Root Path Override string (SSNS Extended
1182-
* Information Descriptor).
1182+
* Information Descriptor).
11831183
* @discovered: Indicates that this namespace was acquired
11841184
* through discovery.
11851185
* @unavailable: Namespace is unavailable as indicated by

0 commit comments

Comments
 (0)