Message ID | 20220405154226.nejyr5twrhsqrzim@pelzflorian.localdomain |
---|---|
State | Superseded |
Headers | show |
Series | main: Remove unused main.conf option NameResolving | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=629300 ---Test result--- Test Summary: CheckPatch FAIL 1.54 seconds GitLint PASS 0.98 seconds Prep - Setup ELL PASS 43.41 seconds Build - Prep PASS 0.73 seconds Build - Configure PASS 8.74 seconds Build - Make PASS 1421.17 seconds Make Check PASS 11.57 seconds Make Check w/Valgrind PASS 449.08 seconds Make Distcheck PASS 235.85 seconds Build w/ext ELL - Configure PASS 8.83 seconds Build w/ext ELL - Make PASS 1419.89 seconds Incremental Build with patchesPASS 0.00 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script with rule in .checkpatch.conf Output: main: Remove unused main.conf option NameResolving WARNING:UNKNOWN_COMMIT_ID: Unknown commit id '826023de56896e83f35ae69a73d6a120a2f5b11e', maybe rebased or not pulled? #51: Commit 826023de56896e83f35ae69a73d6a120a2f5b11e removed the last use /github/workspace/src/12802245.patch total: 0 errors, 1 warnings, 37 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. /github/workspace/src/12802245.patch has style problems, please review. NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. --- Regards, Linux Bluetooth
diff --git a/src/btd.h b/src/btd.h index d13646889..c11076cce 100644 --- a/src/btd.h +++ b/src/btd.h @@ -109,7 +109,6 @@ struct btd_opts { struct btd_defaults defaults; gboolean reverse_discovery; - gboolean name_resolv; gboolean debug_keys; gboolean fast_conn; gboolean refresh_discovery; diff --git a/src/main.c b/src/main.c index a448320c1..52fa4829b 100644 --- a/src/main.c +++ b/src/main.c @@ -766,13 +766,6 @@ static void parse_config(GKeyFile *config) } else btd_opts.reverse_discovery = boolean; - boolean = g_key_file_get_boolean(config, "General", - "NameResolving", &err); - if (err) - g_clear_error(&err); - else - btd_opts.name_resolv = boolean; - boolean = g_key_file_get_boolean(config, "General", "DebugKeys", &err); if (err) @@ -954,7 +947,6 @@ static void init_defaults(void) btd_opts.discovto = DEFAULT_DISCOVERABLE_TIMEOUT; btd_opts.tmpto = DEFAULT_TEMPORARY_TIMEOUT; btd_opts.reverse_discovery = TRUE; - btd_opts.name_resolv = TRUE; btd_opts.debug_keys = FALSE; btd_opts.refresh_discovery = TRUE; btd_opts.name_request_retry_delay = DEFAULT_NAME_REQUEST_RETRY_DELAY; diff --git a/src/main.conf b/src/main.conf index 401796235..337dc77e5 100644 --- a/src/main.conf +++ b/src/main.conf @@ -37,10 +37,6 @@ # Defaults to 'true'. #ReverseServiceDiscovery = true -# Enable name resolving after inquiry. Set it to 'false' if you don't need -# remote devices name and want shorter discovery cycle. Defaults to 'true'. -#NameResolving = true - # Enable runtime persistency of debug link keys. Default is false which # makes debug link keys valid only for the duration of the connection # that they were created for.