You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
config_parse_string(0) (4 uses) — C parser accepts any string with ltype=0 (no STRING_SAFE/STRING_ASCII flags); a validator here would be functionally equivalent to NullOptionValue and just game the burn-down without helping users.
config_parse_hw_addrs(0) (4 uses) — multi-format MAC parser (xx:yy:zz:aa:bb:cc, xxyy.zzaa.bbcc, xx-yy-zz-aa-bb-cc, IPv4, IPv6, infiniband). Doable but the regex would be sprawling; defer to batch 5 if useful.
config_parse_unit_condition_string(CONDITION_VERSION) (8 uses) — operator version or named-version comparisons, defer (would need specialized grammar per condition variant).
Goal
Batch 4 of 5.
Targets
config_parse_iec_size(0)shared/conf-parser.c:974parse_size(rvalue, 1024, ...)— IEC byte, same shape astbf_sizeconfig_parse_fq_codel_size(QDISC_KIND_FQ_CODEL)network/tc/fq-codel.c:267parse_size(rvalue, 1024, ...)— same IEC byte shapeconfig_parse_int(0)shared/conf-parser.c:959(DEFINE_PARSER(int, ..., safe_atoi))config_parse_job_mode(0)load-fragment.c:144(DEFINE_CONFIG_PARSE_ENUM(... job_mode ...))job_mode_tableconfig_parse_reboot_parameter(0)load-fragment.c:353→reboot_parameter_is_validconfig_parse_unit_mounts_for(0)load-fragment.c:3111Skipped
config_parse_string(0)(4 uses) — C parser accepts any string with ltype=0 (noSTRING_SAFE/STRING_ASCIIflags); a validator here would be functionally equivalent toNullOptionValueand just game the burn-down without helping users.config_parse_hw_addrs(0)(4 uses) — multi-format MAC parser (xx:yy:zz:aa:bb:cc,xxyy.zzaa.bbcc,xx-yy-zz-aa-bb-cc, IPv4, IPv6, infiniband). Doable but the regex would be sprawling; defer to batch 5 if useful.config_parse_socket_listen(SOCKET_SOCKET)(4 uses) — abstract / IPv4 / IPv6 / Unix path / FD variants, defer.config_parse_dhcp_option_tlv(0)(4 uses) — DHCP option TLV byte syntax, defer.config_parse_unit_condition_string(CONDITION_VERSION)(8 uses) —operator versionor named-version comparisons, defer (would need specialized grammar per condition variant).