Commit | Line | Data |
---|---|---|
d4ef8d3f MO |
1 | # SPDX-License-Identifier: GPL-2.0 |
2 | # | |
781121a7 | 3 | # clang-format configuration file. Intended for clang-format >= 11. |
d4ef8d3f MO |
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 | --- | |
12 | AccessModifierOffset: -4 | |
13 | AlignAfterOpenBracket: Align | |
14 | AlignConsecutiveAssignments: false | |
15 | AlignConsecutiveDeclarations: false | |
96232c7d | 16 | AlignEscapedNewlines: Left |
d4ef8d3f MO |
17 | AlignOperands: true |
18 | AlignTrailingComments: false | |
19 | AllowAllParametersOfDeclarationOnNextLine: false | |
20 | AllowShortBlocksOnASingleLine: false | |
21 | AllowShortCaseLabelsOnASingleLine: false | |
22 | AllowShortFunctionsOnASingleLine: None | |
23 | AllowShortIfStatementsOnASingleLine: false | |
24 | AllowShortLoopsOnASingleLine: false | |
25 | AlwaysBreakAfterDefinitionReturnType: None | |
26 | AlwaysBreakAfterReturnType: None | |
27 | AlwaysBreakBeforeMultilineStrings: false | |
28 | AlwaysBreakTemplateDeclarations: false | |
29 | BinPackArguments: true | |
30 | BinPackParameters: true | |
31 | BraceWrapping: | |
32 | AfterClass: false | |
33 | AfterControlStatement: false | |
34 | AfterEnum: false | |
35 | AfterFunction: true | |
36 | AfterNamespace: true | |
37 | AfterObjCDeclaration: false | |
38 | AfterStruct: false | |
39 | AfterUnion: false | |
96232c7d | 40 | AfterExternBlock: false |
d4ef8d3f MO |
41 | BeforeCatch: false |
42 | BeforeElse: false | |
43 | IndentBraces: false | |
96232c7d MS |
44 | SplitEmptyFunction: true |
45 | SplitEmptyRecord: true | |
46 | SplitEmptyNamespace: true | |
d4ef8d3f MO |
47 | BreakBeforeBinaryOperators: None |
48 | BreakBeforeBraces: Custom | |
96232c7d | 49 | BreakBeforeInheritanceComma: false |
d4ef8d3f MO |
50 | BreakBeforeTernaryOperators: false |
51 | BreakConstructorInitializersBeforeComma: false | |
96232c7d | 52 | BreakConstructorInitializers: BeforeComma |
d4ef8d3f MO |
53 | BreakAfterJavaFieldAnnotations: false |
54 | BreakStringLiterals: false | |
55 | ColumnLimit: 80 | |
56 | CommentPragmas: '^ IWYU pragma:' | |
96232c7d | 57 | CompactNamespaces: false |
d4ef8d3f MO |
58 | ConstructorInitializerAllOnOneLineOrOnePerLine: false |
59 | ConstructorInitializerIndentWidth: 8 | |
60 | ContinuationIndentWidth: 8 | |
61 | Cpp11BracedListStyle: false | |
62 | DerivePointerAlignment: false | |
63 | DisableFormat: false | |
64 | ExperimentalAutoDetectBinPacking: false | |
96232c7d | 65 | FixNamespaceComments: false |
d4ef8d3f MO |
66 | |
67 | # Taken from: | |
49bb63a2 | 68 | # git grep -h '^#define [^[:space:]]*for_each[^[:space:]]*(' include/ tools/ \ |
d4ef8d3f | 69 | # | sed "s,^#define \([^[:space:]]*for_each[^[:space:]]*\)(.*$, - '\1'," \ |
72e14aa9 | 70 | # | LC_ALL=C sort -u |
d4ef8d3f | 71 | ForEachMacros: |
43120879 MO |
72 | - '__ata_qc_for_each' |
73 | - '__bio_for_each_bvec' | |
74 | - '__bio_for_each_segment' | |
49bb63a2 MS |
75 | - '__evlist__for_each_entry' |
76 | - '__evlist__for_each_entry_continue' | |
77 | - '__evlist__for_each_entry_from' | |
78 | - '__evlist__for_each_entry_reverse' | |
79 | - '__evlist__for_each_entry_safe' | |
43120879 MO |
80 | - '__for_each_mem_range' |
81 | - '__for_each_mem_range_rev' | |
82 | - '__for_each_thread' | |
83 | - '__hlist_for_each_rcu' | |
49bb63a2 MS |
84 | - '__map__for_each_symbol_by_name' |
85 | - '__perf_evlist__for_each_entry' | |
86 | - '__perf_evlist__for_each_entry_reverse' | |
87 | - '__perf_evlist__for_each_entry_safe' | |
43120879 MO |
88 | - '__rq_for_each_bio' |
89 | - '__shost_for_each_device' | |
d4ef8d3f MO |
90 | - 'apei_estatus_for_each_section' |
91 | - 'ata_for_each_dev' | |
92 | - 'ata_for_each_link' | |
99e309b6 JG |
93 | - 'ata_qc_for_each' |
94 | - 'ata_qc_for_each_raw' | |
95 | - 'ata_qc_for_each_with_internal' | |
d4ef8d3f MO |
96 | - 'ax25_for_each' |
97 | - 'ax25_uid_for_each' | |
f16628d6 | 98 | - 'bio_for_each_bvec' |
1072c12d | 99 | - 'bio_for_each_bvec_all' |
88217894 | 100 | - 'bio_for_each_folio_all' |
d4ef8d3f | 101 | - 'bio_for_each_integrity_vec' |
d4ef8d3f MO |
102 | - 'bio_for_each_segment' |
103 | - 'bio_for_each_segment_all' | |
104 | - 'bio_list_for_each' | |
105 | - 'bip_for_each_vec' | |
d4ef8d3f MO |
106 | - 'bond_for_each_slave' |
107 | - 'bond_for_each_slave_rcu' | |
49bb63a2 MS |
108 | - 'bpf__perf_for_each_map' |
109 | - 'bpf__perf_for_each_map_named' | |
99e309b6 | 110 | - 'bpf_for_each_spilled_reg' |
49bb63a2 MS |
111 | - 'bpf_object__for_each_map' |
112 | - 'bpf_object__for_each_program' | |
113 | - 'bpf_object__for_each_safe' | |
114 | - 'bpf_perf_object__for_each' | |
d4ef8d3f MO |
115 | - 'btree_for_each_safe128' |
116 | - 'btree_for_each_safe32' | |
117 | - 'btree_for_each_safe64' | |
118 | - 'btree_for_each_safel' | |
119 | - 'card_for_each_dev' | |
120 | - 'cgroup_taskset_for_each' | |
121 | - 'cgroup_taskset_for_each_leader' | |
88217894 | 122 | - 'cpufreq_for_each_efficient_entry_idx' |
d4ef8d3f MO |
123 | - 'cpufreq_for_each_entry' |
124 | - 'cpufreq_for_each_entry_idx' | |
125 | - 'cpufreq_for_each_valid_entry' | |
126 | - 'cpufreq_for_each_valid_entry_idx' | |
127 | - 'css_for_each_child' | |
128 | - 'css_for_each_descendant_post' | |
129 | - 'css_for_each_descendant_pre' | |
88217894 MO |
130 | - 'damon_for_each_region' |
131 | - 'damon_for_each_region_safe' | |
132 | - 'damon_for_each_scheme' | |
133 | - 'damon_for_each_scheme_safe' | |
134 | - 'damon_for_each_target' | |
135 | - 'damon_for_each_target_safe' | |
49bb63a2 MS |
136 | - 'data__for_each_file' |
137 | - 'data__for_each_file_new' | |
138 | - 'data__for_each_file_start' | |
d4ef8d3f | 139 | - 'device_for_each_child_node' |
4792f9dd | 140 | - 'displayid_iter_for_each' |
88217894 | 141 | - 'dma_fence_array_for_each' |
52d08347 | 142 | - 'dma_fence_chain_for_each' |
88217894 MO |
143 | - 'dma_fence_unwrap_for_each' |
144 | - 'dma_resv_for_each_fence' | |
145 | - 'dma_resv_for_each_fence_unlocked' | |
4e4bb894 | 146 | - 'do_for_each_ftrace_op' |
d4ef8d3f MO |
147 | - 'drm_atomic_crtc_for_each_plane' |
148 | - 'drm_atomic_crtc_state_for_each_plane' | |
149 | - 'drm_atomic_crtc_state_for_each_plane_state' | |
99e309b6 | 150 | - 'drm_atomic_for_each_plane_damage' |
52d08347 MO |
151 | - 'drm_client_for_each_connector_iter' |
152 | - 'drm_client_for_each_modeset' | |
99e309b6 | 153 | - 'drm_connector_for_each_possible_encoder' |
11a4a8f7 | 154 | - 'drm_for_each_bridge_in_chain' |
d4ef8d3f MO |
155 | - 'drm_for_each_connector_iter' |
156 | - 'drm_for_each_crtc' | |
1074f8ec | 157 | - 'drm_for_each_crtc_reverse' |
d4ef8d3f MO |
158 | - 'drm_for_each_encoder' |
159 | - 'drm_for_each_encoder_mask' | |
160 | - 'drm_for_each_fb' | |
161 | - 'drm_for_each_legacy_plane' | |
162 | - 'drm_for_each_plane' | |
163 | - 'drm_for_each_plane_mask' | |
f16628d6 | 164 | - 'drm_for_each_privobj' |
d4ef8d3f MO |
165 | - 'drm_mm_for_each_hole' |
166 | - 'drm_mm_for_each_node' | |
167 | - 'drm_mm_for_each_node_in_range' | |
168 | - 'drm_mm_for_each_node_safe' | |
88217894 MO |
169 | - 'dsa_switch_for_each_available_port' |
170 | - 'dsa_switch_for_each_cpu_port' | |
171 | - 'dsa_switch_for_each_port' | |
172 | - 'dsa_switch_for_each_port_continue_reverse' | |
173 | - 'dsa_switch_for_each_port_safe' | |
174 | - 'dsa_switch_for_each_user_port' | |
175 | - 'dsa_tree_for_each_user_port' | |
49bb63a2 MS |
176 | - 'dso__for_each_symbol' |
177 | - 'dsos__for_each_with_build_id' | |
178 | - 'elf_hash_for_each_possible' | |
179 | - 'elf_section__for_each_rel' | |
180 | - 'elf_section__for_each_rela' | |
181 | - 'elf_symtab__for_each_symbol' | |
182 | - 'evlist__for_each_cpu' | |
183 | - 'evlist__for_each_entry' | |
184 | - 'evlist__for_each_entry_continue' | |
185 | - 'evlist__for_each_entry_from' | |
186 | - 'evlist__for_each_entry_reverse' | |
187 | - 'evlist__for_each_entry_safe' | |
f16628d6 | 188 | - 'flow_action_for_each' |
4792f9dd | 189 | - 'for_each_acpi_dev_match' |
52d08347 | 190 | - 'for_each_active_dev_scope' |
d4ef8d3f MO |
191 | - 'for_each_active_drhd_unit' |
192 | - 'for_each_active_iommu' | |
4e4bb894 | 193 | - 'for_each_aggr_pgid' |
d4ef8d3f | 194 | - 'for_each_available_child_of_node' |
49bb63a2 | 195 | - 'for_each_bench' |
d4ef8d3f MO |
196 | - 'for_each_bio' |
197 | - 'for_each_board_func_rsrc' | |
49bb63a2 MS |
198 | - 'for_each_btf_ext_rec' |
199 | - 'for_each_btf_ext_sec' | |
d4ef8d3f | 200 | - 'for_each_bvec' |
11a4a8f7 MO |
201 | - 'for_each_card_auxs' |
202 | - 'for_each_card_auxs_safe' | |
99e309b6 | 203 | - 'for_each_card_components' |
5d65a021 | 204 | - 'for_each_card_dapms' |
11a4a8f7 | 205 | - 'for_each_card_pre_auxs' |
99e309b6 JG |
206 | - 'for_each_card_prelinks' |
207 | - 'for_each_card_rtds' | |
208 | - 'for_each_card_rtds_safe' | |
5d65a021 MO |
209 | - 'for_each_card_widgets' |
210 | - 'for_each_card_widgets_safe' | |
99e309b6 | 211 | - 'for_each_cgroup_storage_type' |
d4ef8d3f MO |
212 | - 'for_each_child_of_node' |
213 | - 'for_each_clear_bit' | |
214 | - 'for_each_clear_bit_from' | |
88217894 MO |
215 | - 'for_each_clear_bitrange' |
216 | - 'for_each_clear_bitrange_from' | |
49bb63a2 | 217 | - 'for_each_cmd' |
d4ef8d3f | 218 | - 'for_each_cmsghdr' |
49bb63a2 | 219 | - 'for_each_collection' |
43120879 | 220 | - 'for_each_comp_order' |
d4ef8d3f | 221 | - 'for_each_compatible_node' |
99e309b6 JG |
222 | - 'for_each_component_dais' |
223 | - 'for_each_component_dais_safe' | |
d4ef8d3f MO |
224 | - 'for_each_console' |
225 | - 'for_each_cpu' | |
226 | - 'for_each_cpu_and' | |
227 | - 'for_each_cpu_not' | |
228 | - 'for_each_cpu_wrap' | |
5d65a021 | 229 | - 'for_each_dapm_widgets' |
49bb63a2 | 230 | - 'for_each_dedup_cand' |
d4ef8d3f | 231 | - 'for_each_dev_addr' |
52d08347 | 232 | - 'for_each_dev_scope' |
d4ef8d3f | 233 | - 'for_each_dma_cap_mask' |
99e309b6 JG |
234 | - 'for_each_dpcm_be' |
235 | - 'for_each_dpcm_be_rollback' | |
236 | - 'for_each_dpcm_be_safe' | |
237 | - 'for_each_dpcm_fe' | |
d4ef8d3f MO |
238 | - 'for_each_drhd_unit' |
239 | - 'for_each_dss_dev' | |
240 | - 'for_each_efi_memory_desc' | |
241 | - 'for_each_efi_memory_desc_in_map' | |
f16628d6 MO |
242 | - 'for_each_element' |
243 | - 'for_each_element_extid' | |
244 | - 'for_each_element_id' | |
d4ef8d3f | 245 | - 'for_each_endpoint_of_node' |
49bb63a2 MS |
246 | - 'for_each_event' |
247 | - 'for_each_event_tps' | |
d4ef8d3f MO |
248 | - 'for_each_evictable_lru' |
249 | - 'for_each_fib6_node_rt_rcu' | |
250 | - 'for_each_fib6_walker_rt' | |
52d08347 MO |
251 | - 'for_each_free_mem_pfn_range_in_zone' |
252 | - 'for_each_free_mem_pfn_range_in_zone_from' | |
d4ef8d3f MO |
253 | - 'for_each_free_mem_range' |
254 | - 'for_each_free_mem_range_reverse' | |
255 | - 'for_each_func_rsrc' | |
49bb63a2 MS |
256 | - 'for_each_group_evsel' |
257 | - 'for_each_group_member' | |
d4ef8d3f MO |
258 | - 'for_each_hstate' |
259 | - 'for_each_if' | |
49bb63a2 MS |
260 | - 'for_each_inject_fn' |
261 | - 'for_each_insn' | |
262 | - 'for_each_insn_prefix' | |
263 | - 'for_each_intid' | |
d4ef8d3f MO |
264 | - 'for_each_iommu' |
265 | - 'for_each_ip_tunnel_rcu' | |
266 | - 'for_each_irq_nr' | |
49bb63a2 | 267 | - 'for_each_lang' |
99e309b6 | 268 | - 'for_each_link_codecs' |
5d65a021 | 269 | - 'for_each_link_cpus' |
52d08347 | 270 | - 'for_each_link_platforms' |
d4ef8d3f MO |
271 | - 'for_each_lru' |
272 | - 'for_each_matching_node' | |
273 | - 'for_each_matching_node_and_match' | |
d4ef8d3f MO |
274 | - 'for_each_mem_pfn_range' |
275 | - 'for_each_mem_range' | |
276 | - 'for_each_mem_range_rev' | |
1074f8ec | 277 | - 'for_each_mem_region' |
43120879 | 278 | - 'for_each_member' |
49bb63a2 | 279 | - 'for_each_memory' |
d4ef8d3f | 280 | - 'for_each_migratetype_order' |
49bb63a2 | 281 | - 'for_each_missing_reg' |
d4ef8d3f | 282 | - 'for_each_net' |
11a4a8f7 | 283 | - 'for_each_net_continue_reverse' |
43120879 | 284 | - 'for_each_net_rcu' |
d4ef8d3f MO |
285 | - 'for_each_netdev' |
286 | - 'for_each_netdev_continue' | |
287 | - 'for_each_netdev_continue_rcu' | |
11a4a8f7 | 288 | - 'for_each_netdev_continue_reverse' |
d4ef8d3f MO |
289 | - 'for_each_netdev_feature' |
290 | - 'for_each_netdev_in_bond_rcu' | |
291 | - 'for_each_netdev_rcu' | |
292 | - 'for_each_netdev_reverse' | |
293 | - 'for_each_netdev_safe' | |
d4ef8d3f MO |
294 | - 'for_each_new_connector_in_state' |
295 | - 'for_each_new_crtc_in_state' | |
f16628d6 | 296 | - 'for_each_new_mst_mgr_in_state' |
d4ef8d3f | 297 | - 'for_each_new_plane_in_state' |
88217894 | 298 | - 'for_each_new_plane_in_state_reverse' |
d4ef8d3f | 299 | - 'for_each_new_private_obj_in_state' |
49bb63a2 | 300 | - 'for_each_new_reg' |
d4ef8d3f MO |
301 | - 'for_each_node' |
302 | - 'for_each_node_by_name' | |
303 | - 'for_each_node_by_type' | |
304 | - 'for_each_node_mask' | |
305 | - 'for_each_node_state' | |
306 | - 'for_each_node_with_cpus' | |
307 | - 'for_each_node_with_property' | |
4e4bb894 | 308 | - 'for_each_nonreserved_multicast_dest_pgid' |
d4ef8d3f MO |
309 | - 'for_each_of_allnodes' |
310 | - 'for_each_of_allnodes_from' | |
99e309b6 | 311 | - 'for_each_of_cpu_node' |
d4ef8d3f MO |
312 | - 'for_each_of_pci_range' |
313 | - 'for_each_old_connector_in_state' | |
314 | - 'for_each_old_crtc_in_state' | |
f16628d6 | 315 | - 'for_each_old_mst_mgr_in_state' |
43120879 MO |
316 | - 'for_each_old_plane_in_state' |
317 | - 'for_each_old_private_obj_in_state' | |
d4ef8d3f MO |
318 | - 'for_each_oldnew_connector_in_state' |
319 | - 'for_each_oldnew_crtc_in_state' | |
f16628d6 | 320 | - 'for_each_oldnew_mst_mgr_in_state' |
d4ef8d3f | 321 | - 'for_each_oldnew_plane_in_state' |
99e309b6 | 322 | - 'for_each_oldnew_plane_in_state_reverse' |
d4ef8d3f | 323 | - 'for_each_oldnew_private_obj_in_state' |
d4ef8d3f MO |
324 | - 'for_each_online_cpu' |
325 | - 'for_each_online_node' | |
326 | - 'for_each_online_pgdat' | |
49bb63a2 | 327 | - 'for_each_path' |
d4ef8d3f MO |
328 | - 'for_each_pci_bridge' |
329 | - 'for_each_pci_dev' | |
5d65a021 | 330 | - 'for_each_pcm_streams' |
4e4bb894 | 331 | - 'for_each_physmem_range' |
d4ef8d3f MO |
332 | - 'for_each_populated_zone' |
333 | - 'for_each_possible_cpu' | |
334 | - 'for_each_present_cpu' | |
335 | - 'for_each_prime_number' | |
336 | - 'for_each_prime_number_from' | |
49bb63a2 | 337 | - 'for_each_probe_cache_entry' |
d4ef8d3f MO |
338 | - 'for_each_process' |
339 | - 'for_each_process_thread' | |
4792f9dd MO |
340 | - 'for_each_prop_codec_conf' |
341 | - 'for_each_prop_dai_codec' | |
342 | - 'for_each_prop_dai_cpu' | |
343 | - 'for_each_prop_dlc_codecs' | |
344 | - 'for_each_prop_dlc_cpus' | |
345 | - 'for_each_prop_dlc_platforms' | |
d4ef8d3f | 346 | - 'for_each_property_of_node' |
49bb63a2 MS |
347 | - 'for_each_reg' |
348 | - 'for_each_reg_filtered' | |
99e309b6 | 349 | - 'for_each_registered_fb' |
4e4bb894 MO |
350 | - 'for_each_requested_gpio' |
351 | - 'for_each_requested_gpio_in_range' | |
9f3d5eaa | 352 | - 'for_each_reserved_mem_range' |
cc6de168 | 353 | - 'for_each_reserved_mem_region' |
5d65a021 | 354 | - 'for_each_rtd_codec_dais' |
11a4a8f7 | 355 | - 'for_each_rtd_components' |
5d65a021 | 356 | - 'for_each_rtd_cpu_dais' |
5d65a021 | 357 | - 'for_each_rtd_dais' |
49bb63a2 MS |
358 | - 'for_each_script' |
359 | - 'for_each_sec' | |
d4ef8d3f MO |
360 | - 'for_each_set_bit' |
361 | - 'for_each_set_bit_from' | |
88217894 MO |
362 | - 'for_each_set_bitrange' |
363 | - 'for_each_set_bitrange_from' | |
11a4a8f7 | 364 | - 'for_each_set_clump8' |
d4ef8d3f | 365 | - 'for_each_sg' |
d901b276 | 366 | - 'for_each_sg_dma_page' |
d4ef8d3f | 367 | - 'for_each_sg_page' |
4e4bb894 MO |
368 | - 'for_each_sgtable_dma_page' |
369 | - 'for_each_sgtable_dma_sg' | |
370 | - 'for_each_sgtable_page' | |
371 | - 'for_each_sgtable_sg' | |
49bb63a2 | 372 | - 'for_each_shell_test' |
99e309b6 | 373 | - 'for_each_sibling_event' |
f16628d6 MO |
374 | - 'for_each_subelement' |
375 | - 'for_each_subelement_extid' | |
376 | - 'for_each_subelement_id' | |
49bb63a2 MS |
377 | - 'for_each_sublist' |
378 | - 'for_each_subsystem' | |
379 | - 'for_each_supported_activate_fn' | |
380 | - 'for_each_supported_inject_fn' | |
381 | - 'for_each_test' | |
d4ef8d3f | 382 | - 'for_each_thread' |
49bb63a2 | 383 | - 'for_each_token' |
4e4bb894 | 384 | - 'for_each_unicast_dest_pgid' |
1074f8ec | 385 | - 'for_each_vsi' |
11a4a8f7 | 386 | - 'for_each_wakeup_source' |
d4ef8d3f MO |
387 | - 'for_each_zone' |
388 | - 'for_each_zone_zonelist' | |
389 | - 'for_each_zone_zonelist_nodemask' | |
49bb63a2 | 390 | - 'func_for_each_insn' |
d4ef8d3f MO |
391 | - 'fwnode_for_each_available_child_node' |
392 | - 'fwnode_for_each_child_node' | |
393 | - 'fwnode_graph_for_each_endpoint' | |
394 | - 'gadget_for_each_ep' | |
f16628d6 MO |
395 | - 'genradix_for_each' |
396 | - 'genradix_for_each_from' | |
d4ef8d3f MO |
397 | - 'hash_for_each' |
398 | - 'hash_for_each_possible' | |
399 | - 'hash_for_each_possible_rcu' | |
400 | - 'hash_for_each_possible_rcu_notrace' | |
401 | - 'hash_for_each_possible_safe' | |
402 | - 'hash_for_each_rcu' | |
403 | - 'hash_for_each_safe' | |
49bb63a2 MS |
404 | - 'hashmap__for_each_entry' |
405 | - 'hashmap__for_each_entry_safe' | |
406 | - 'hashmap__for_each_key_entry' | |
407 | - 'hashmap__for_each_key_entry_safe' | |
d4ef8d3f | 408 | - 'hctx_for_each_ctx' |
49bb63a2 MS |
409 | - 'hists__for_each_format' |
410 | - 'hists__for_each_sort_list' | |
d4ef8d3f MO |
411 | - 'hlist_bl_for_each_entry' |
412 | - 'hlist_bl_for_each_entry_rcu' | |
413 | - 'hlist_bl_for_each_entry_safe' | |
414 | - 'hlist_for_each' | |
415 | - 'hlist_for_each_entry' | |
416 | - 'hlist_for_each_entry_continue' | |
417 | - 'hlist_for_each_entry_continue_rcu' | |
418 | - 'hlist_for_each_entry_continue_rcu_bh' | |
419 | - 'hlist_for_each_entry_from' | |
420 | - 'hlist_for_each_entry_from_rcu' | |
421 | - 'hlist_for_each_entry_rcu' | |
422 | - 'hlist_for_each_entry_rcu_bh' | |
423 | - 'hlist_for_each_entry_rcu_notrace' | |
424 | - 'hlist_for_each_entry_safe' | |
1074f8ec | 425 | - 'hlist_for_each_entry_srcu' |
d4ef8d3f MO |
426 | - 'hlist_for_each_safe' |
427 | - 'hlist_nulls_for_each_entry' | |
428 | - 'hlist_nulls_for_each_entry_from' | |
429 | - 'hlist_nulls_for_each_entry_rcu' | |
430 | - 'hlist_nulls_for_each_entry_safe' | |
99e309b6 JG |
431 | - 'i3c_bus_for_each_i2cdev' |
432 | - 'i3c_bus_for_each_i3cdev' | |
d4ef8d3f MO |
433 | - 'idr_for_each_entry' |
434 | - 'idr_for_each_entry_continue' | |
52d08347 | 435 | - 'idr_for_each_entry_continue_ul' |
d4ef8d3f | 436 | - 'idr_for_each_entry_ul' |
52d08347 MO |
437 | - 'in_dev_for_each_ifa_rcu' |
438 | - 'in_dev_for_each_ifa_rtnl' | |
d4ef8d3f | 439 | - 'inet_bind_bucket_for_each' |
88217894 MO |
440 | - 'inet_lhash2_for_each_icsk' |
441 | - 'inet_lhash2_for_each_icsk_continue' | |
d4ef8d3f | 442 | - 'inet_lhash2_for_each_icsk_rcu' |
49bb63a2 MS |
443 | - 'intlist__for_each_entry' |
444 | - 'intlist__for_each_entry_safe' | |
445 | - 'kcore_copy__for_each_phdr' | |
d4ef8d3f MO |
446 | - 'key_for_each' |
447 | - 'key_for_each_safe' | |
448 | - 'klp_for_each_func' | |
f16628d6 MO |
449 | - 'klp_for_each_func_safe' |
450 | - 'klp_for_each_func_static' | |
d4ef8d3f | 451 | - 'klp_for_each_object' |
f16628d6 MO |
452 | - 'klp_for_each_object_safe' |
453 | - 'klp_for_each_object_static' | |
5d65a021 | 454 | - 'kunit_suite_for_each_test_case' |
d4ef8d3f | 455 | - 'kvm_for_each_memslot' |
88217894 | 456 | - 'kvm_for_each_memslot_in_gfn_range' |
d4ef8d3f | 457 | - 'kvm_for_each_vcpu' |
49bb63a2 | 458 | - 'libbpf_nla_for_each_attr' |
d4ef8d3f | 459 | - 'list_for_each' |
99e309b6 JG |
460 | - 'list_for_each_codec' |
461 | - 'list_for_each_codec_safe' | |
11a4a8f7 | 462 | - 'list_for_each_continue' |
d4ef8d3f MO |
463 | - 'list_for_each_entry' |
464 | - 'list_for_each_entry_continue' | |
465 | - 'list_for_each_entry_continue_rcu' | |
466 | - 'list_for_each_entry_continue_reverse' | |
467 | - 'list_for_each_entry_from' | |
99e309b6 | 468 | - 'list_for_each_entry_from_rcu' |
d4ef8d3f MO |
469 | - 'list_for_each_entry_from_reverse' |
470 | - 'list_for_each_entry_lockless' | |
471 | - 'list_for_each_entry_rcu' | |
472 | - 'list_for_each_entry_reverse' | |
473 | - 'list_for_each_entry_safe' | |
474 | - 'list_for_each_entry_safe_continue' | |
475 | - 'list_for_each_entry_safe_from' | |
476 | - 'list_for_each_entry_safe_reverse' | |
1074f8ec | 477 | - 'list_for_each_entry_srcu' |
49bb63a2 | 478 | - 'list_for_each_from' |
d4ef8d3f MO |
479 | - 'list_for_each_prev' |
480 | - 'list_for_each_prev_safe' | |
481 | - 'list_for_each_safe' | |
482 | - 'llist_for_each' | |
483 | - 'llist_for_each_entry' | |
484 | - 'llist_for_each_entry_safe' | |
485 | - 'llist_for_each_safe' | |
49bb63a2 MS |
486 | - 'map__for_each_symbol' |
487 | - 'map__for_each_symbol_by_name' | |
488 | - 'map_for_each_event' | |
489 | - 'map_for_each_metric' | |
490 | - 'maps__for_each_entry' | |
491 | - 'maps__for_each_entry_safe' | |
11a4a8f7 | 492 | - 'mci_for_each_dimm' |
d4ef8d3f MO |
493 | - 'media_device_for_each_entity' |
494 | - 'media_device_for_each_intf' | |
495 | - 'media_device_for_each_link' | |
496 | - 'media_device_for_each_pad' | |
88217894 | 497 | - 'msi_for_each_desc' |
99e309b6 | 498 | - 'nanddev_io_for_each_page' |
d4ef8d3f MO |
499 | - 'netdev_for_each_lower_dev' |
500 | - 'netdev_for_each_lower_private' | |
501 | - 'netdev_for_each_lower_private_rcu' | |
502 | - 'netdev_for_each_mc_addr' | |
503 | - 'netdev_for_each_uc_addr' | |
504 | - 'netdev_for_each_upper_dev_rcu' | |
505 | - 'netdev_hw_addr_list_for_each' | |
506 | - 'nft_rule_for_each_expr' | |
507 | - 'nla_for_each_attr' | |
508 | - 'nla_for_each_nested' | |
509 | - 'nlmsg_for_each_attr' | |
510 | - 'nlmsg_for_each_msg' | |
511 | - 'nr_neigh_for_each' | |
512 | - 'nr_neigh_for_each_safe' | |
513 | - 'nr_node_for_each' | |
514 | - 'nr_node_for_each_safe' | |
515 | - 'of_for_each_phandle' | |
516 | - 'of_property_for_each_string' | |
517 | - 'of_property_for_each_u32' | |
518 | - 'pci_bus_for_each_resource' | |
1074f8ec MO |
519 | - 'pcl_for_each_chunk' |
520 | - 'pcl_for_each_segment' | |
5d65a021 | 521 | - 'pcm_for_each_format' |
49bb63a2 MS |
522 | - 'perf_config_items__for_each_entry' |
523 | - 'perf_config_sections__for_each_entry' | |
524 | - 'perf_config_set__for_each_entry' | |
525 | - 'perf_cpu_map__for_each_cpu' | |
526 | - 'perf_evlist__for_each_entry' | |
527 | - 'perf_evlist__for_each_entry_reverse' | |
528 | - 'perf_evlist__for_each_entry_safe' | |
529 | - 'perf_evlist__for_each_evsel' | |
530 | - 'perf_evlist__for_each_mmap' | |
531 | - 'perf_hpp_list__for_each_format' | |
532 | - 'perf_hpp_list__for_each_format_safe' | |
533 | - 'perf_hpp_list__for_each_sort_list' | |
534 | - 'perf_hpp_list__for_each_sort_list_safe' | |
535 | - 'perf_pmu__for_each_hybrid_pmu' | |
d4ef8d3f MO |
536 | - 'ping_portaddr_for_each_entry' |
537 | - 'plist_for_each' | |
538 | - 'plist_for_each_continue' | |
539 | - 'plist_for_each_entry' | |
540 | - 'plist_for_each_entry_continue' | |
541 | - 'plist_for_each_entry_safe' | |
542 | - 'plist_for_each_safe' | |
543 | - 'pnp_for_each_card' | |
544 | - 'pnp_for_each_dev' | |
545 | - 'protocol_for_each_card' | |
546 | - 'protocol_for_each_dev' | |
547 | - 'queue_for_each_hw_ctx' | |
d4ef8d3f MO |
548 | - 'radix_tree_for_each_slot' |
549 | - 'radix_tree_for_each_tagged' | |
4792f9dd | 550 | - 'rb_for_each' |
d4ef8d3f | 551 | - 'rbtree_postorder_for_each_entry_safe' |
52d08347 | 552 | - 'rdma_for_each_block' |
ea1075ed | 553 | - 'rdma_for_each_port' |
ebc24096 | 554 | - 'rdma_umem_for_each_dma_block' |
49bb63a2 | 555 | - 'resort_rb__for_each_entry' |
d4ef8d3f MO |
556 | - 'resource_list_for_each_entry' |
557 | - 'resource_list_for_each_entry_safe' | |
558 | - 'rhl_for_each_entry_rcu' | |
559 | - 'rhl_for_each_rcu' | |
560 | - 'rht_for_each' | |
d4ef8d3f | 561 | - 'rht_for_each_entry' |
f7ad68bf | 562 | - 'rht_for_each_entry_from' |
d4ef8d3f | 563 | - 'rht_for_each_entry_rcu' |
f7ad68bf | 564 | - 'rht_for_each_entry_rcu_from' |
d4ef8d3f | 565 | - 'rht_for_each_entry_safe' |
52d08347 | 566 | - 'rht_for_each_from' |
d4ef8d3f | 567 | - 'rht_for_each_rcu' |
f7ad68bf | 568 | - 'rht_for_each_rcu_from' |
f16628d6 | 569 | - 'rq_for_each_bvec' |
d4ef8d3f | 570 | - 'rq_for_each_segment' |
88217894 MO |
571 | - 'rq_list_for_each' |
572 | - 'rq_list_for_each_safe' | |
d4ef8d3f MO |
573 | - 'scsi_for_each_prot_sg' |
574 | - 'scsi_for_each_sg' | |
575 | - 'sctp_for_each_hentry' | |
576 | - 'sctp_skb_for_each' | |
49bb63a2 MS |
577 | - 'sec_for_each_insn' |
578 | - 'sec_for_each_insn_continue' | |
579 | - 'sec_for_each_insn_from' | |
d4ef8d3f | 580 | - 'shdma_for_each_chan' |
d4ef8d3f MO |
581 | - 'shost_for_each_device' |
582 | - 'sk_for_each' | |
583 | - 'sk_for_each_bound' | |
584 | - 'sk_for_each_entry_offset_rcu' | |
585 | - 'sk_for_each_from' | |
586 | - 'sk_for_each_rcu' | |
587 | - 'sk_for_each_safe' | |
588 | - 'sk_nulls_for_each' | |
589 | - 'sk_nulls_for_each_from' | |
590 | - 'sk_nulls_for_each_rcu' | |
99e309b6 | 591 | - 'snd_array_for_each' |
d4ef8d3f MO |
592 | - 'snd_pcm_group_for_each_entry' |
593 | - 'snd_soc_dapm_widget_for_each_path' | |
594 | - 'snd_soc_dapm_widget_for_each_path_safe' | |
595 | - 'snd_soc_dapm_widget_for_each_sink_path' | |
596 | - 'snd_soc_dapm_widget_for_each_source_path' | |
49bb63a2 MS |
597 | - 'strlist__for_each_entry' |
598 | - 'strlist__for_each_entry_safe' | |
599 | - 'sym_for_each_insn' | |
600 | - 'sym_for_each_insn_continue_reverse' | |
601 | - 'symbols__for_each_entry' | |
d4ef8d3f | 602 | - 'tb_property_for_each' |
88217894 | 603 | - 'tcf_act_for_each_action' |
99e309b6 | 604 | - 'tcf_exts_for_each_action' |
d4ef8d3f MO |
605 | - 'udp_portaddr_for_each_entry' |
606 | - 'udp_portaddr_for_each_entry_rcu' | |
607 | - 'usb_hub_for_each_child' | |
608 | - 'v4l2_device_for_each_subdev' | |
609 | - 'v4l2_m2m_for_each_dst_buf' | |
610 | - 'v4l2_m2m_for_each_dst_buf_safe' | |
611 | - 'v4l2_m2m_for_each_src_buf' | |
612 | - 'v4l2_m2m_for_each_src_buf_safe' | |
99e309b6 | 613 | - 'virtio_device_for_each_vq' |
4e4bb894 | 614 | - 'while_for_each_ftrace_op' |
99e309b6 | 615 | - 'xa_for_each' |
f16628d6 | 616 | - 'xa_for_each_marked' |
11a4a8f7 | 617 | - 'xa_for_each_range' |
f16628d6 | 618 | - 'xa_for_each_start' |
99e309b6 JG |
619 | - 'xas_for_each' |
620 | - 'xas_for_each_conflict' | |
621 | - 'xas_for_each_marked' | |
11a4a8f7 MO |
622 | - 'xbc_array_for_each_value' |
623 | - 'xbc_for_each_key_value' | |
624 | - 'xbc_node_for_each_array_value' | |
625 | - 'xbc_node_for_each_child' | |
626 | - 'xbc_node_for_each_key_value' | |
88217894 | 627 | - 'xbc_node_for_each_subkey' |
d4ef8d3f MO |
628 | - 'zorro_for_each_dev' |
629 | ||
96232c7d | 630 | IncludeBlocks: Preserve |
d4ef8d3f MO |
631 | IncludeCategories: |
632 | - Regex: '.*' | |
633 | Priority: 1 | |
634 | IncludeIsMainRegex: '(Test)?$' | |
635 | IndentCaseLabels: false | |
d7f66043 | 636 | IndentGotoLabels: false |
96232c7d | 637 | IndentPPDirectives: None |
d4ef8d3f | 638 | IndentWidth: 8 |
7bee9bd2 | 639 | IndentWrappedFunctionNames: false |
d4ef8d3f MO |
640 | JavaScriptQuotes: Leave |
641 | JavaScriptWrapImports: true | |
642 | KeepEmptyLinesAtTheStartOfBlocks: false | |
643 | MacroBlockBegin: '' | |
644 | MacroBlockEnd: '' | |
645 | MaxEmptyLinesToKeep: 1 | |
c90f3b8c | 646 | NamespaceIndentation: None |
96232c7d | 647 | ObjCBinPackProtocolList: Auto |
d4ef8d3f MO |
648 | ObjCBlockIndentWidth: 8 |
649 | ObjCSpaceAfterProperty: true | |
650 | ObjCSpaceBeforeProtocolList: true | |
651 | ||
652 | # Taken from git's rules | |
96232c7d | 653 | PenaltyBreakAssignment: 10 |
d4ef8d3f MO |
654 | PenaltyBreakBeforeFirstCallParameter: 30 |
655 | PenaltyBreakComment: 10 | |
656 | PenaltyBreakFirstLessLess: 0 | |
657 | PenaltyBreakString: 10 | |
658 | PenaltyExcessCharacter: 100 | |
659 | PenaltyReturnTypeOnItsOwnLine: 60 | |
660 | ||
661 | PointerAlignment: Right | |
662 | ReflowComments: false | |
663 | SortIncludes: false | |
96232c7d | 664 | SortUsingDeclarations: false |
d4ef8d3f MO |
665 | SpaceAfterCStyleCast: false |
666 | SpaceAfterTemplateKeyword: true | |
667 | SpaceBeforeAssignmentOperators: true | |
96232c7d MS |
668 | SpaceBeforeCtorInitializerColon: true |
669 | SpaceBeforeInheritanceColon: true | |
781121a7 | 670 | SpaceBeforeParens: ControlStatementsExceptForEachMacros |
96232c7d | 671 | SpaceBeforeRangeBasedForLoopColon: true |
d4ef8d3f MO |
672 | SpaceInEmptyParentheses: false |
673 | SpacesBeforeTrailingComments: 1 | |
674 | SpacesInAngles: false | |
675 | SpacesInContainerLiterals: false | |
676 | SpacesInCStyleCastParentheses: false | |
677 | SpacesInParentheses: false | |
678 | SpacesInSquareBrackets: false | |
679 | Standard: Cpp03 | |
680 | TabWidth: 8 | |
681 | UseTab: Always | |
682 | ... |