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