Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: coredump: Do not export hci_devcd_rx() and hci_devcd_timeout()
@ 2026-07-09  4:14 Zijun Hu
  2026-07-09  5:51 ` bluez.test.bot
  2026-07-10 20:10 ` [PATCH] " patchwork-bot+bluetooth
  0 siblings, 2 replies; 3+ messages in thread
From: Zijun Hu @ 2026-07-09  4:14 UTC (permalink / raw)
  To: Marcel Holtmann, Luiz Augusto von Dentz
  Cc: Zijun Hu, linux-bluetooth, linux-kernel, Zijun Hu

Do not export both functions since they are only used internally
within the bluetooth module.

Signed-off-by: Zijun Hu <zijun.hu@oss.qualcomm.com>
---
 net/bluetooth/coredump.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/net/bluetooth/coredump.c b/net/bluetooth/coredump.c
index 720cb79adf96..c0f027fab583 100644
--- a/net/bluetooth/coredump.c
+++ b/net/bluetooth/coredump.c
@@ -390,7 +390,6 @@ void hci_devcd_rx(struct work_struct *work)
 		hci_dev_unlock(hdev);
 	}
 }
-EXPORT_SYMBOL(hci_devcd_rx);
 
 void hci_devcd_timeout(struct work_struct *work)
 {
@@ -416,7 +415,6 @@ void hci_devcd_timeout(struct work_struct *work)
 
 	hci_dev_unlock(hdev);
 }
-EXPORT_SYMBOL(hci_devcd_timeout);
 
 int hci_devcd_register(struct hci_dev *hdev, coredump_t coredump,
 		       dmp_hdr_t dmp_hdr, notify_change_t notify_change)

---
base-commit: ca75417ab1793f23b3ddc91869f0809b593d6954
change-id: 20260708-unexport_symbol-7649c4f1846d

Best regards,
-- 
Zijun Hu <zijun.hu@oss.qualcomm.com>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: Bluetooth: coredump: Do not export hci_devcd_rx() and hci_devcd_timeout()
  2026-07-09  4:14 [PATCH] Bluetooth: coredump: Do not export hci_devcd_rx() and hci_devcd_timeout() Zijun Hu
@ 2026-07-09  5:51 ` bluez.test.bot
  2026-07-10 20:10 ` [PATCH] " patchwork-bot+bluetooth
  1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2026-07-09  5:51 UTC (permalink / raw)
  To: linux-bluetooth, zijun.hu

[-- Attachment #1: Type: text/plain, Size: 2389 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=1124277

---Test result---

Test Summary:
CheckPatch                    PASS      0.51 seconds
VerifyFixes                   PASS      0.10 seconds
VerifySignedoff               PASS      0.07 seconds
GitLint                       PASS      0.20 seconds
SubjectPrefix                 PASS      0.06 seconds
BuildKernel                   PASS      26.74 seconds
CheckAllWarning               PASS      29.65 seconds
CheckSparse                   PASS      31.39 seconds
BuildKernel32                 PASS      26.32 seconds
CheckKernelLLVM               SKIP      0.00 seconds
TestRunnerSetup               PASS      503.52 seconds
TestRunner_l2cap-tester       PASS      58.07 seconds
TestRunner_iso-tester         PASS      76.38 seconds
TestRunner_bnep-tester        PASS      18.74 seconds
TestRunner_mgmt-tester        FAIL      208.50 seconds
TestRunner_rfcomm-tester      PASS      24.68 seconds
TestRunner_sco-tester         PASS      32.02 seconds
TestRunner_ioctl-tester       PASS      25.30 seconds
TestRunner_mesh-tester        FAIL      25.82 seconds
TestRunner_smp-tester         PASS      26.82 seconds
TestRunner_userchan-tester    PASS      19.93 seconds
TestRunner_6lowpan-tester     PASS      22.47 seconds
IncrementalBuild              PASS      25.13 seconds

Details
##############################
Test: CheckKernelLLVM - SKIP
Desc: Build kernel with LLVM + context analysis
Output:
Clang not found
##############################
Test: TestRunner_mgmt-tester - FAIL
Desc: Run mgmt-tester with test-runner
Output:
Total: 494, Passed: 489 (99.0%), Failed: 1, Not Run: 4

Failed Test Cases
Read Exp Feature - Success                           Failed       0.228 seconds
##############################
Test: TestRunner_mesh-tester - FAIL
Desc: Run mesh-tester with test-runner
Output:
Total: 10, Passed: 8 (80.0%), Failed: 2, Not Run: 0

Failed Test Cases
Mesh - Send cancel - 1                               Timed out    2.647 seconds
Mesh - Send cancel - 2                               Timed out    1.996 seconds


https://github.com/bluez/bluetooth-next/pull/413

---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Bluetooth: coredump: Do not export hci_devcd_rx() and hci_devcd_timeout()
  2026-07-09  4:14 [PATCH] Bluetooth: coredump: Do not export hci_devcd_rx() and hci_devcd_timeout() Zijun Hu
  2026-07-09  5:51 ` bluez.test.bot
@ 2026-07-10 20:10 ` patchwork-bot+bluetooth
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2026-07-10 20:10 UTC (permalink / raw)
  To: Zijun Hu; +Cc: marcel, luiz.dentz, zijun_hu, linux-bluetooth, linux-kernel

Hello:

This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Wed, 08 Jul 2026 21:14:53 -0700 you wrote:
> Do not export both functions since they are only used internally
> within the bluetooth module.
> 
> Signed-off-by: Zijun Hu <zijun.hu@oss.qualcomm.com>
> ---
>  net/bluetooth/coredump.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> [...]

Here is the summary with links:
  - Bluetooth: coredump: Do not export hci_devcd_rx() and hci_devcd_timeout()
    https://git.kernel.org/bluetooth/bluetooth-next/c/e3421a0feec0

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-07-10 20:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-09  4:14 [PATCH] Bluetooth: coredump: Do not export hci_devcd_rx() and hci_devcd_timeout() Zijun Hu
2026-07-09  5:51 ` bluez.test.bot
2026-07-10 20:10 ` [PATCH] " patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox