blob: fa959436bcfd0fdc41d69e15496289bc998a07e6 [file] [log] [blame]
Miguel Ojedad4ef8d32018-04-10 16:32:40 -07001# SPDX-License-Identifier: GPL-2.0
2#
3# clang-format configuration file. Intended for clang-format >= 4.
4#
5# For more information, see:
6#
7# Documentation/process/clang-format.rst
8# https://clang.llvm.org/docs/ClangFormat.html
9# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
10#
11---
12AccessModifierOffset: -4
13AlignAfterOpenBracket: Align
14AlignConsecutiveAssignments: false
15AlignConsecutiveDeclarations: false
16#AlignEscapedNewlines: Left # Unknown to clang-format-4.0
17AlignOperands: true
18AlignTrailingComments: false
19AllowAllParametersOfDeclarationOnNextLine: false
20AllowShortBlocksOnASingleLine: false
21AllowShortCaseLabelsOnASingleLine: false
22AllowShortFunctionsOnASingleLine: None
23AllowShortIfStatementsOnASingleLine: false
24AllowShortLoopsOnASingleLine: false
25AlwaysBreakAfterDefinitionReturnType: None
26AlwaysBreakAfterReturnType: None
27AlwaysBreakBeforeMultilineStrings: false
28AlwaysBreakTemplateDeclarations: false
29BinPackArguments: true
30BinPackParameters: true
31BraceWrapping:
32 AfterClass: false
33 AfterControlStatement: false
34 AfterEnum: false
35 AfterFunction: true
36 AfterNamespace: true
37 AfterObjCDeclaration: false
38 AfterStruct: false
39 AfterUnion: false
40 #AfterExternBlock: false # Unknown to clang-format-5.0
41 BeforeCatch: false
42 BeforeElse: false
43 IndentBraces: false
44 #SplitEmptyFunction: true # Unknown to clang-format-4.0
45 #SplitEmptyRecord: true # Unknown to clang-format-4.0
46 #SplitEmptyNamespace: true # Unknown to clang-format-4.0
47BreakBeforeBinaryOperators: None
48BreakBeforeBraces: Custom
49#BreakBeforeInheritanceComma: false # Unknown to clang-format-4.0
50BreakBeforeTernaryOperators: false
51BreakConstructorInitializersBeforeComma: false
52#BreakConstructorInitializers: BeforeComma # Unknown to clang-format-4.0
53BreakAfterJavaFieldAnnotations: false
54BreakStringLiterals: false
55ColumnLimit: 80
56CommentPragmas: '^ IWYU pragma:'
57#CompactNamespaces: false # Unknown to clang-format-4.0
58ConstructorInitializerAllOnOneLineOrOnePerLine: false
59ConstructorInitializerIndentWidth: 8
60ContinuationIndentWidth: 8
61Cpp11BracedListStyle: false
62DerivePointerAlignment: false
63DisableFormat: false
64ExperimentalAutoDetectBinPacking: false
65#FixNamespaceComments: false # Unknown to clang-format-4.0
66
67# Taken from:
68# git grep -h '^#define [^[:space:]]*for_each[^[:space:]]*(' include/ \
69# | sed "s,^#define \([^[:space:]]*for_each[^[:space:]]*\)(.*$, - '\1'," \
70# | sort | uniq
71ForEachMacros:
72 - 'apei_estatus_for_each_section'
73 - 'ata_for_each_dev'
74 - 'ata_for_each_link'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +000075 - '__ata_qc_for_each'
76 - 'ata_qc_for_each'
77 - 'ata_qc_for_each_raw'
78 - 'ata_qc_for_each_with_internal'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -070079 - 'ax25_for_each'
80 - 'ax25_uid_for_each'
Miguel Ojedaf16628d2019-03-30 09:20:16 +010081 - '__bio_for_each_bvec'
82 - 'bio_for_each_bvec'
Omar Sandoval1072c122020-04-16 14:46:11 -070083 - 'bio_for_each_bvec_all'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -070084 - 'bio_for_each_integrity_vec'
85 - '__bio_for_each_segment'
86 - 'bio_for_each_segment'
87 - 'bio_for_each_segment_all'
88 - 'bio_list_for_each'
89 - 'bip_for_each_vec'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +010090 - 'bitmap_for_each_clear_region'
91 - 'bitmap_for_each_set_region'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -070092 - 'blkg_for_each_descendant_post'
93 - 'blkg_for_each_descendant_pre'
94 - 'blk_queue_for_each_rl'
95 - 'bond_for_each_slave'
96 - 'bond_for_each_slave_rcu'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +000097 - 'bpf_for_each_spilled_reg'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -070098 - 'btree_for_each_safe128'
99 - 'btree_for_each_safe32'
100 - 'btree_for_each_safe64'
101 - 'btree_for_each_safel'
102 - 'card_for_each_dev'
103 - 'cgroup_taskset_for_each'
104 - 'cgroup_taskset_for_each_leader'
105 - 'cpufreq_for_each_entry'
106 - 'cpufreq_for_each_entry_idx'
107 - 'cpufreq_for_each_valid_entry'
108 - 'cpufreq_for_each_valid_entry_idx'
109 - 'css_for_each_child'
110 - 'css_for_each_descendant_post'
111 - 'css_for_each_descendant_pre'
112 - 'device_for_each_child_node'
Miguel Ojeda4792f9dd2021-05-12 23:32:39 +0200113 - 'displayid_iter_for_each'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200114 - 'dma_fence_chain_for_each'
Miguel Ojeda4e4bb892020-09-01 12:53:42 +0200115 - 'do_for_each_ftrace_op'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700116 - 'drm_atomic_crtc_for_each_plane'
117 - 'drm_atomic_crtc_state_for_each_plane'
118 - 'drm_atomic_crtc_state_for_each_plane_state'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000119 - 'drm_atomic_for_each_plane_damage'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200120 - 'drm_client_for_each_connector_iter'
121 - 'drm_client_for_each_modeset'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000122 - 'drm_connector_for_each_possible_encoder'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100123 - 'drm_for_each_bridge_in_chain'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700124 - 'drm_for_each_connector_iter'
125 - 'drm_for_each_crtc'
Miguel Ojeda1074f8e2021-01-29 15:00:23 +0100126 - 'drm_for_each_crtc_reverse'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700127 - 'drm_for_each_encoder'
128 - 'drm_for_each_encoder_mask'
129 - 'drm_for_each_fb'
130 - 'drm_for_each_legacy_plane'
131 - 'drm_for_each_plane'
132 - 'drm_for_each_plane_mask'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100133 - 'drm_for_each_privobj'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700134 - 'drm_mm_for_each_hole'
135 - 'drm_mm_for_each_node'
136 - 'drm_mm_for_each_node_in_range'
137 - 'drm_mm_for_each_node_safe'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100138 - 'flow_action_for_each'
Miguel Ojeda4792f9dd2021-05-12 23:32:39 +0200139 - 'for_each_acpi_dev_match'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200140 - 'for_each_active_dev_scope'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700141 - 'for_each_active_drhd_unit'
142 - 'for_each_active_iommu'
Miguel Ojeda4e4bb892020-09-01 12:53:42 +0200143 - 'for_each_aggr_pgid'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700144 - 'for_each_available_child_of_node'
145 - 'for_each_bio'
146 - 'for_each_board_func_rsrc'
147 - 'for_each_bvec'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100148 - 'for_each_card_auxs'
149 - 'for_each_card_auxs_safe'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000150 - 'for_each_card_components'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200151 - 'for_each_card_dapms'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100152 - 'for_each_card_pre_auxs'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000153 - 'for_each_card_prelinks'
154 - 'for_each_card_rtds'
155 - 'for_each_card_rtds_safe'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200156 - 'for_each_card_widgets'
157 - 'for_each_card_widgets_safe'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000158 - 'for_each_cgroup_storage_type'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700159 - 'for_each_child_of_node'
160 - 'for_each_clear_bit'
161 - 'for_each_clear_bit_from'
162 - 'for_each_cmsghdr'
163 - 'for_each_compatible_node'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000164 - 'for_each_component_dais'
165 - 'for_each_component_dais_safe'
166 - 'for_each_comp_order'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700167 - 'for_each_console'
168 - 'for_each_cpu'
169 - 'for_each_cpu_and'
170 - 'for_each_cpu_not'
171 - 'for_each_cpu_wrap'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200172 - 'for_each_dapm_widgets'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700173 - 'for_each_dev_addr'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200174 - 'for_each_dev_scope'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700175 - 'for_each_dma_cap_mask'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000176 - 'for_each_dpcm_be'
177 - 'for_each_dpcm_be_rollback'
178 - 'for_each_dpcm_be_safe'
179 - 'for_each_dpcm_fe'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700180 - 'for_each_drhd_unit'
181 - 'for_each_dss_dev'
Miguel Ojeda4792f9dd2021-05-12 23:32:39 +0200182 - 'for_each_dtpm_table'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700183 - 'for_each_efi_memory_desc'
184 - 'for_each_efi_memory_desc_in_map'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100185 - 'for_each_element'
186 - 'for_each_element_extid'
187 - 'for_each_element_id'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700188 - 'for_each_endpoint_of_node'
189 - 'for_each_evictable_lru'
190 - 'for_each_fib6_node_rt_rcu'
191 - 'for_each_fib6_walker_rt'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200192 - 'for_each_free_mem_pfn_range_in_zone'
193 - 'for_each_free_mem_pfn_range_in_zone_from'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700194 - 'for_each_free_mem_range'
195 - 'for_each_free_mem_range_reverse'
196 - 'for_each_func_rsrc'
197 - 'for_each_hstate'
198 - 'for_each_if'
199 - 'for_each_iommu'
200 - 'for_each_ip_tunnel_rcu'
201 - 'for_each_irq_nr'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000202 - 'for_each_link_codecs'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200203 - 'for_each_link_cpus'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200204 - 'for_each_link_platforms'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700205 - 'for_each_lru'
206 - 'for_each_matching_node'
207 - 'for_each_matching_node_and_match'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100208 - 'for_each_member'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700209 - 'for_each_memcg_cache_index'
210 - 'for_each_mem_pfn_range'
Mike Rapoport6e245ad2020-10-13 16:57:59 -0700211 - '__for_each_mem_range'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700212 - 'for_each_mem_range'
Mike Rapoport6e245ad2020-10-13 16:57:59 -0700213 - '__for_each_mem_range_rev'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700214 - 'for_each_mem_range_rev'
Miguel Ojeda1074f8e2021-01-29 15:00:23 +0100215 - 'for_each_mem_region'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700216 - 'for_each_migratetype_order'
217 - 'for_each_msi_entry'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000218 - 'for_each_msi_entry_safe'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700219 - 'for_each_net'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100220 - 'for_each_net_continue_reverse'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700221 - 'for_each_netdev'
222 - 'for_each_netdev_continue'
223 - 'for_each_netdev_continue_rcu'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100224 - 'for_each_netdev_continue_reverse'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700225 - 'for_each_netdev_feature'
226 - 'for_each_netdev_in_bond_rcu'
227 - 'for_each_netdev_rcu'
228 - 'for_each_netdev_reverse'
229 - 'for_each_netdev_safe'
230 - 'for_each_net_rcu'
231 - 'for_each_new_connector_in_state'
232 - 'for_each_new_crtc_in_state'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100233 - 'for_each_new_mst_mgr_in_state'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700234 - 'for_each_new_plane_in_state'
235 - 'for_each_new_private_obj_in_state'
236 - 'for_each_node'
237 - 'for_each_node_by_name'
238 - 'for_each_node_by_type'
239 - 'for_each_node_mask'
240 - 'for_each_node_state'
241 - 'for_each_node_with_cpus'
242 - 'for_each_node_with_property'
Miguel Ojeda4e4bb892020-09-01 12:53:42 +0200243 - 'for_each_nonreserved_multicast_dest_pgid'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700244 - 'for_each_of_allnodes'
245 - 'for_each_of_allnodes_from'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000246 - 'for_each_of_cpu_node'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700247 - 'for_each_of_pci_range'
248 - 'for_each_old_connector_in_state'
249 - 'for_each_old_crtc_in_state'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100250 - 'for_each_old_mst_mgr_in_state'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700251 - 'for_each_oldnew_connector_in_state'
252 - 'for_each_oldnew_crtc_in_state'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100253 - 'for_each_oldnew_mst_mgr_in_state'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700254 - 'for_each_oldnew_plane_in_state'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000255 - 'for_each_oldnew_plane_in_state_reverse'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700256 - 'for_each_oldnew_private_obj_in_state'
257 - 'for_each_old_plane_in_state'
258 - 'for_each_old_private_obj_in_state'
259 - 'for_each_online_cpu'
260 - 'for_each_online_node'
261 - 'for_each_online_pgdat'
262 - 'for_each_pci_bridge'
263 - 'for_each_pci_dev'
264 - 'for_each_pci_msi_entry'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200265 - 'for_each_pcm_streams'
Miguel Ojeda4e4bb892020-09-01 12:53:42 +0200266 - 'for_each_physmem_range'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700267 - 'for_each_populated_zone'
268 - 'for_each_possible_cpu'
269 - 'for_each_present_cpu'
270 - 'for_each_prime_number'
271 - 'for_each_prime_number_from'
272 - 'for_each_process'
273 - 'for_each_process_thread'
Miguel Ojeda4792f9dd2021-05-12 23:32:39 +0200274 - 'for_each_prop_codec_conf'
275 - 'for_each_prop_dai_codec'
276 - 'for_each_prop_dai_cpu'
277 - 'for_each_prop_dlc_codecs'
278 - 'for_each_prop_dlc_cpus'
279 - 'for_each_prop_dlc_platforms'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700280 - 'for_each_property_of_node'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000281 - 'for_each_registered_fb'
Miguel Ojeda4e4bb892020-09-01 12:53:42 +0200282 - 'for_each_requested_gpio'
283 - 'for_each_requested_gpio_in_range'
Mike Rapoport9f3d5ea2020-10-13 16:58:25 -0700284 - 'for_each_reserved_mem_range'
Mike Rapoportcc6de162020-10-13 16:58:30 -0700285 - 'for_each_reserved_mem_region'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200286 - 'for_each_rtd_codec_dais'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100287 - 'for_each_rtd_components'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200288 - 'for_each_rtd_cpu_dais'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200289 - 'for_each_rtd_dais'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700290 - 'for_each_set_bit'
291 - 'for_each_set_bit_from'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100292 - 'for_each_set_clump8'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700293 - 'for_each_sg'
Jason Gunthorped901b272019-01-04 11:40:21 -0700294 - 'for_each_sg_dma_page'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700295 - 'for_each_sg_page'
Miguel Ojeda4e4bb892020-09-01 12:53:42 +0200296 - 'for_each_sgtable_dma_page'
297 - 'for_each_sgtable_dma_sg'
298 - 'for_each_sgtable_page'
299 - 'for_each_sgtable_sg'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000300 - 'for_each_sibling_event'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100301 - 'for_each_subelement'
302 - 'for_each_subelement_extid'
303 - 'for_each_subelement_id'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700304 - '__for_each_thread'
305 - 'for_each_thread'
Miguel Ojeda4e4bb892020-09-01 12:53:42 +0200306 - 'for_each_unicast_dest_pgid'
Miguel Ojeda1074f8e2021-01-29 15:00:23 +0100307 - 'for_each_vsi'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100308 - 'for_each_wakeup_source'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700309 - 'for_each_zone'
310 - 'for_each_zone_zonelist'
311 - 'for_each_zone_zonelist_nodemask'
312 - 'fwnode_for_each_available_child_node'
313 - 'fwnode_for_each_child_node'
314 - 'fwnode_graph_for_each_endpoint'
315 - 'gadget_for_each_ep'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100316 - 'genradix_for_each'
317 - 'genradix_for_each_from'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700318 - 'hash_for_each'
319 - 'hash_for_each_possible'
320 - 'hash_for_each_possible_rcu'
321 - 'hash_for_each_possible_rcu_notrace'
322 - 'hash_for_each_possible_safe'
323 - 'hash_for_each_rcu'
324 - 'hash_for_each_safe'
325 - 'hctx_for_each_ctx'
326 - 'hlist_bl_for_each_entry'
327 - 'hlist_bl_for_each_entry_rcu'
328 - 'hlist_bl_for_each_entry_safe'
329 - 'hlist_for_each'
330 - 'hlist_for_each_entry'
331 - 'hlist_for_each_entry_continue'
332 - 'hlist_for_each_entry_continue_rcu'
333 - 'hlist_for_each_entry_continue_rcu_bh'
334 - 'hlist_for_each_entry_from'
335 - 'hlist_for_each_entry_from_rcu'
336 - 'hlist_for_each_entry_rcu'
337 - 'hlist_for_each_entry_rcu_bh'
338 - 'hlist_for_each_entry_rcu_notrace'
339 - 'hlist_for_each_entry_safe'
Miguel Ojeda1074f8e2021-01-29 15:00:23 +0100340 - 'hlist_for_each_entry_srcu'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700341 - '__hlist_for_each_rcu'
342 - 'hlist_for_each_safe'
343 - 'hlist_nulls_for_each_entry'
344 - 'hlist_nulls_for_each_entry_from'
345 - 'hlist_nulls_for_each_entry_rcu'
346 - 'hlist_nulls_for_each_entry_safe'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000347 - 'i3c_bus_for_each_i2cdev'
348 - 'i3c_bus_for_each_i3cdev'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700349 - 'ide_host_for_each_port'
350 - 'ide_port_for_each_dev'
351 - 'ide_port_for_each_present_dev'
352 - 'idr_for_each_entry'
353 - 'idr_for_each_entry_continue'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200354 - 'idr_for_each_entry_continue_ul'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700355 - 'idr_for_each_entry_ul'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200356 - 'in_dev_for_each_ifa_rcu'
357 - 'in_dev_for_each_ifa_rtnl'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700358 - 'inet_bind_bucket_for_each'
359 - 'inet_lhash2_for_each_icsk_rcu'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700360 - 'key_for_each'
361 - 'key_for_each_safe'
362 - 'klp_for_each_func'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100363 - 'klp_for_each_func_safe'
364 - 'klp_for_each_func_static'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700365 - 'klp_for_each_object'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100366 - 'klp_for_each_object_safe'
367 - 'klp_for_each_object_static'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200368 - 'kunit_suite_for_each_test_case'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700369 - 'kvm_for_each_memslot'
370 - 'kvm_for_each_vcpu'
371 - 'list_for_each'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000372 - 'list_for_each_codec'
373 - 'list_for_each_codec_safe'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100374 - 'list_for_each_continue'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700375 - 'list_for_each_entry'
376 - 'list_for_each_entry_continue'
377 - 'list_for_each_entry_continue_rcu'
378 - 'list_for_each_entry_continue_reverse'
379 - 'list_for_each_entry_from'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000380 - 'list_for_each_entry_from_rcu'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700381 - 'list_for_each_entry_from_reverse'
382 - 'list_for_each_entry_lockless'
383 - 'list_for_each_entry_rcu'
384 - 'list_for_each_entry_reverse'
385 - 'list_for_each_entry_safe'
386 - 'list_for_each_entry_safe_continue'
387 - 'list_for_each_entry_safe_from'
388 - 'list_for_each_entry_safe_reverse'
Miguel Ojeda1074f8e2021-01-29 15:00:23 +0100389 - 'list_for_each_entry_srcu'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700390 - 'list_for_each_prev'
391 - 'list_for_each_prev_safe'
392 - 'list_for_each_safe'
393 - 'llist_for_each'
394 - 'llist_for_each_entry'
395 - 'llist_for_each_entry_safe'
396 - 'llist_for_each_safe'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100397 - 'mci_for_each_dimm'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700398 - 'media_device_for_each_entity'
399 - 'media_device_for_each_intf'
400 - 'media_device_for_each_link'
401 - 'media_device_for_each_pad'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000402 - 'nanddev_io_for_each_page'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700403 - 'netdev_for_each_lower_dev'
404 - 'netdev_for_each_lower_private'
405 - 'netdev_for_each_lower_private_rcu'
406 - 'netdev_for_each_mc_addr'
407 - 'netdev_for_each_uc_addr'
408 - 'netdev_for_each_upper_dev_rcu'
409 - 'netdev_hw_addr_list_for_each'
410 - 'nft_rule_for_each_expr'
411 - 'nla_for_each_attr'
412 - 'nla_for_each_nested'
413 - 'nlmsg_for_each_attr'
414 - 'nlmsg_for_each_msg'
415 - 'nr_neigh_for_each'
416 - 'nr_neigh_for_each_safe'
417 - 'nr_node_for_each'
418 - 'nr_node_for_each_safe'
419 - 'of_for_each_phandle'
420 - 'of_property_for_each_string'
421 - 'of_property_for_each_u32'
422 - 'pci_bus_for_each_resource'
Miguel Ojeda1074f8e2021-01-29 15:00:23 +0100423 - 'pcl_for_each_chunk'
424 - 'pcl_for_each_segment'
Miguel Ojeda5d65a022020-04-18 13:49:33 +0200425 - 'pcm_for_each_format'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700426 - 'ping_portaddr_for_each_entry'
427 - 'plist_for_each'
428 - 'plist_for_each_continue'
429 - 'plist_for_each_entry'
430 - 'plist_for_each_entry_continue'
431 - 'plist_for_each_entry_safe'
432 - 'plist_for_each_safe'
433 - 'pnp_for_each_card'
434 - 'pnp_for_each_dev'
435 - 'protocol_for_each_card'
436 - 'protocol_for_each_dev'
437 - 'queue_for_each_hw_ctx'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700438 - 'radix_tree_for_each_slot'
439 - 'radix_tree_for_each_tagged'
Miguel Ojeda4792f9dd2021-05-12 23:32:39 +0200440 - 'rb_for_each'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700441 - 'rbtree_postorder_for_each_entry_safe'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200442 - 'rdma_for_each_block'
Jason Gunthorpeea1075e2019-02-12 21:12:47 -0700443 - 'rdma_for_each_port'
Jason Gunthorpeebc24092020-09-04 19:41:45 -0300444 - 'rdma_umem_for_each_dma_block'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700445 - 'resource_list_for_each_entry'
446 - 'resource_list_for_each_entry_safe'
447 - 'rhl_for_each_entry_rcu'
448 - 'rhl_for_each_rcu'
449 - 'rht_for_each'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700450 - 'rht_for_each_entry'
NeilBrownf7ad68b2019-03-21 14:42:40 +1100451 - 'rht_for_each_entry_from'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700452 - 'rht_for_each_entry_rcu'
NeilBrownf7ad68b2019-03-21 14:42:40 +1100453 - 'rht_for_each_entry_rcu_from'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700454 - 'rht_for_each_entry_safe'
Miguel Ojeda52d08342019-08-31 10:00:11 +0200455 - 'rht_for_each_from'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700456 - 'rht_for_each_rcu'
NeilBrownf7ad68b2019-03-21 14:42:40 +1100457 - 'rht_for_each_rcu_from'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700458 - '__rq_for_each_bio'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100459 - 'rq_for_each_bvec'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700460 - 'rq_for_each_segment'
461 - 'scsi_for_each_prot_sg'
462 - 'scsi_for_each_sg'
463 - 'sctp_for_each_hentry'
464 - 'sctp_skb_for_each'
465 - 'shdma_for_each_chan'
466 - '__shost_for_each_device'
467 - 'shost_for_each_device'
468 - 'sk_for_each'
469 - 'sk_for_each_bound'
470 - 'sk_for_each_entry_offset_rcu'
471 - 'sk_for_each_from'
472 - 'sk_for_each_rcu'
473 - 'sk_for_each_safe'
474 - 'sk_nulls_for_each'
475 - 'sk_nulls_for_each_from'
476 - 'sk_nulls_for_each_rcu'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000477 - 'snd_array_for_each'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700478 - 'snd_pcm_group_for_each_entry'
479 - 'snd_soc_dapm_widget_for_each_path'
480 - 'snd_soc_dapm_widget_for_each_path_safe'
481 - 'snd_soc_dapm_widget_for_each_sink_path'
482 - 'snd_soc_dapm_widget_for_each_source_path'
483 - 'tb_property_for_each'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000484 - 'tcf_exts_for_each_action'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700485 - 'udp_portaddr_for_each_entry'
486 - 'udp_portaddr_for_each_entry_rcu'
487 - 'usb_hub_for_each_child'
488 - 'v4l2_device_for_each_subdev'
489 - 'v4l2_m2m_for_each_dst_buf'
490 - 'v4l2_m2m_for_each_dst_buf_safe'
491 - 'v4l2_m2m_for_each_src_buf'
492 - 'v4l2_m2m_for_each_src_buf_safe'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000493 - 'virtio_device_for_each_vq'
Miguel Ojeda4e4bb892020-09-01 12:53:42 +0200494 - 'while_for_each_ftrace_op'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000495 - 'xa_for_each'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100496 - 'xa_for_each_marked'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100497 - 'xa_for_each_range'
Miguel Ojedaf16628d2019-03-30 09:20:16 +0100498 - 'xa_for_each_start'
Jason Gunthorpe99e309b2019-01-18 22:57:04 +0000499 - 'xas_for_each'
500 - 'xas_for_each_conflict'
501 - 'xas_for_each_marked'
Miguel Ojeda11a4a8f2020-03-06 21:50:00 +0100502 - 'xbc_array_for_each_value'
503 - 'xbc_for_each_key_value'
504 - 'xbc_node_for_each_array_value'
505 - 'xbc_node_for_each_child'
506 - 'xbc_node_for_each_key_value'
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700507 - 'zorro_for_each_dev'
508
509#IncludeBlocks: Preserve # Unknown to clang-format-5.0
510IncludeCategories:
511 - Regex: '.*'
512 Priority: 1
513IncludeIsMainRegex: '(Test)?$'
514IndentCaseLabels: false
515#IndentPPDirectives: None # Unknown to clang-format-5.0
516IndentWidth: 8
Jason Gunthorpe7bee9bd2018-06-25 16:44:30 -0600517IndentWrappedFunctionNames: false
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700518JavaScriptQuotes: Leave
519JavaScriptWrapImports: true
520KeepEmptyLinesAtTheStartOfBlocks: false
521MacroBlockBegin: ''
522MacroBlockEnd: ''
523MaxEmptyLinesToKeep: 1
Ian Rogersc90f3b82020-04-08 17:13:52 -0700524NamespaceIndentation: None
Miguel Ojedad4ef8d32018-04-10 16:32:40 -0700525#ObjCBinPackProtocolList: Auto # Unknown to clang-format-5.0
526ObjCBlockIndentWidth: 8
527ObjCSpaceAfterProperty: true
528ObjCSpaceBeforeProtocolList: true
529
530# Taken from git's rules
531#PenaltyBreakAssignment: 10 # Unknown to clang-format-4.0
532PenaltyBreakBeforeFirstCallParameter: 30
533PenaltyBreakComment: 10
534PenaltyBreakFirstLessLess: 0
535PenaltyBreakString: 10
536PenaltyExcessCharacter: 100
537PenaltyReturnTypeOnItsOwnLine: 60
538
539PointerAlignment: Right
540ReflowComments: false
541SortIncludes: false
542#SortUsingDeclarations: false # Unknown to clang-format-4.0
543SpaceAfterCStyleCast: false
544SpaceAfterTemplateKeyword: true
545SpaceBeforeAssignmentOperators: true
546#SpaceBeforeCtorInitializerColon: true # Unknown to clang-format-5.0
547#SpaceBeforeInheritanceColon: true # Unknown to clang-format-5.0
548SpaceBeforeParens: ControlStatements
549#SpaceBeforeRangeBasedForLoopColon: true # Unknown to clang-format-5.0
550SpaceInEmptyParentheses: false
551SpacesBeforeTrailingComments: 1
552SpacesInAngles: false
553SpacesInContainerLiterals: false
554SpacesInCStyleCastParentheses: false
555SpacesInParentheses: false
556SpacesInSquareBrackets: false
557Standard: Cpp03
558TabWidth: 8
559UseTab: Always
560...