* [PATCH v3] Replace the usage of non-standard GNU-basename with strrchr
@ 2024-09-19 12:02 Ismael Luceno
2024-09-19 13:58 ` [v3] " bluez.test.bot
0 siblings, 1 reply; 2+ messages in thread
From: Ismael Luceno @ 2024-09-19 12:02 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Ismael Luceno
Fixes build against musl libc, since it doesn't provide a GNU-compatible
implementation of basename.
Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
---
Notes:
Changes since v2:
- Fixed style complaint from checkpatch.pl
Changes since v1:
- Fixed missing parameter at mesh/rpl.c:150
mesh/mesh-config-json.c | 4 +++-
mesh/rpl.c | 4 +++-
tools/hex2hcd.c | 7 ++++++-
3 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/mesh/mesh-config-json.c b/mesh/mesh-config-json.c
index a17a48b6d11f..49b9d01a7ef4 100644
--- a/mesh/mesh-config-json.c
+++ b/mesh/mesh-config-json.c
@@ -2708,7 +2708,9 @@ void mesh_config_destroy_nvm(struct mesh_config *cfg)
if (!hex2str(cfg->uuid, 16, uuid, sizeof(uuid)))
return;
- node_name = basename(node_dir);
+ node_name = strrchr(node_dir, '/');
+ if (!node_name++)
+ node_name = node_dir;
/* Make sure path name of node follows expected guidelines */
if (strcmp(node_name, uuid))
diff --git a/mesh/rpl.c b/mesh/rpl.c
index 2fa17d72f6cb..1c58703eae4e 100644
--- a/mesh/rpl.c
+++ b/mesh/rpl.c
@@ -147,7 +147,9 @@ static void get_entries(const char *iv_path, struct l_queue *rpl_list)
if (!dir)
return;
- iv_txt = basename(iv_path);
+ iv_txt = strrchr(iv_path, '/');
+ if (!iv_txt++)
+ iv_txt = iv_path;
if (sscanf(iv_txt, "%08x", &iv_index) != 1) {
closedir(dir);
return;
diff --git a/tools/hex2hcd.c b/tools/hex2hcd.c
index 452ab2beb572..6f7c826b683d 100644
--- a/tools/hex2hcd.c
+++ b/tools/hex2hcd.c
@@ -303,7 +303,12 @@ static void ver_parse_entry(const char *pathname)
}
if (S_ISREG(st.st_mode)) {
- ver_parse_file(basename(pathname));
+ const char *bname;
+
+ bname = strrchr(pathname, '/');
+ if (!bname++)
+ bname = pathname;
+ ver_parse_file(bname);
goto done;
}
--
2.46.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [v3] Replace the usage of non-standard GNU-basename with strrchr
2024-09-19 12:02 [PATCH v3] Replace the usage of non-standard GNU-basename with strrchr Ismael Luceno
@ 2024-09-19 13:58 ` bluez.test.bot
0 siblings, 0 replies; 2+ messages in thread
From: bluez.test.bot @ 2024-09-19 13:58 UTC (permalink / raw)
To: linux-bluetooth, ismael
[-- Attachment #1: Type: text/plain, Size: 2621 bytes --]
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=891413
---Test result---
Test Summary:
CheckPatch FAIL 0.59 seconds
GitLint FAIL 0.47 seconds
BuildEll PASS 25.70 seconds
BluezMake PASS 1722.67 seconds
MakeCheck PASS 12.84 seconds
MakeDistcheck PASS 192.27 seconds
CheckValgrind PASS 266.30 seconds
CheckSmatch WARNING 368.16 seconds
bluezmakeextell PASS 120.80 seconds
IncrementalBuild PASS 1505.35 seconds
ScanBuild PASS 1041.61 seconds
Details
##############################
Test: CheckPatch - FAIL
Desc: Run checkpatch.pl script
Output:
[v3] Replace the usage of non-standard GNU-basename with strrchr
ERROR:TRAILING_WHITESPACE: trailing whitespace
#103: FILE: tools/hex2hcd.c:307:
+^I^I$
/github/workspace/src/src/13807662.patch total: 1 errors, 0 warnings, 33 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.
NOTE: Whitespace errors detected.
You may wish to use scripts/cleanpatch or scripts/cleanfile
/github/workspace/src/src/13807662.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.
##############################
Test: GitLint - FAIL
Desc: Run gitlint
Output:
[v3] Replace the usage of non-standard GNU-basename with strrchr
WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search
12: B2 Line has trailing whitespace: " "
##############################
Test: CheckSmatch - WARNING
Desc: Run smatch tool with source
Output:
tools/hex2hcd.c:136:26: warning: Variable length array is used.
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-19 13:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-19 12:02 [PATCH v3] Replace the usage of non-standard GNU-basename with strrchr Ismael Luceno
2024-09-19 13:58 ` [v3] " bluez.test.bot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.