All of lore.kernel.org
 help / color / mirror / Atom feed
From: bluez.test.bot@gmail.com
To: linux-bluetooth@vger.kernel.org,
	devnull+emil.l.velikov.gmail.com@kernel.org
Subject: RE: Remove support for external plugins
Date: Wed, 24 Jan 2024 19:15:13 -0800 (PST)	[thread overview]
Message-ID: <65b1d241.a70a0220.b4b7d.474a@mx.google.com> (raw)
In-Reply-To: <20240125-rm-ext-plugins-v3-1-d141f7870bb6@gmail.com>

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

---Test result---

Test Summary:
CheckPatch                    FAIL      2.89 seconds
GitLint                       PASS      1.83 seconds
BuildEll                      PASS      23.99 seconds
BluezMake                     PASS      735.43 seconds
MakeCheck                     PASS      11.83 seconds
MakeDistcheck                 PASS      163.54 seconds
CheckValgrind                 PASS      226.28 seconds
CheckSmatch                   PASS      330.80 seconds
bluezmakeextell               PASS      107.89 seconds
IncrementalBuild              PASS      5466.84 seconds
ScanBuild                     PASS      954.84 seconds

Details
##############################
Test: CheckPatch - FAIL
Desc: Run checkpatch.pl script
Output:
[BlueZ,v3,2/8] obexd: factor out external plugin support
WARNING:LONG_LINE: line length of 86 exceeds 80 columns
#134: FILE: obexd/src/plugin.c:47:
+static gboolean add_external_plugin(void *handle, const struct obex_plugin_desc *desc)

/github/workspace/src/src/13529768.patch total: 0 errors, 1 warnings, 176 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/src/13529768.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.


[BlueZ,v3,5/8] bluetoothd: factor out external plugin support
WARNING:BLOCK_COMMENT_STYLE: Block comments use a trailing */ on a separate line
#243: FILE: src/plugin.c:190:
+	 * plugins are loaded. */

WARNING:TRAILING_SEMICOLON: macros should not use a trailing semicolon
#318: FILE: src/plugin.h:51:
+#define BLUETOOTH_PLUGIN_DEFINE(name, version, priority, init, exit) \
+		const struct bluetooth_plugin_desc \
+		__bluetooth_builtin_ ## name = { \
+			#name, priority, init, exit \
+		};

/github/workspace/src/src/13529772.patch total: 0 errors, 2 warnings, 211 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/src/13529772.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.


[BlueZ,v3,7/8] bluetoothd: change plugin loading alike obexd
WARNING:ENOSYS: ENOSYS means 'invalid syscall nr' and nothing else
#108: FILE: src/plugin.c:52:
+		if (err == -ENOSYS || err == -ENOTSUP)

/github/workspace/src/src/13529774.patch total: 0 errors, 1 warnings, 106 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/src/13529774.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


  reply	other threads:[~2024-01-25  3:15 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-25  0:07 [PATCH BlueZ v3 0/8] Remove support for external plugins Emil Velikov
2024-01-25  0:07 ` Emil Velikov via B4 Relay
2024-01-25  0:07 ` [PATCH BlueZ v3 1/8] configure, README: introduce --enable-external-plugins Emil Velikov
2024-01-25  0:07   ` Emil Velikov via B4 Relay
2024-01-25  3:15   ` bluez.test.bot [this message]
2024-01-25  0:07 ` [PATCH BlueZ v3 2/8] obexd: factor out external plugin support Emil Velikov
2024-01-25  0:07   ` Emil Velikov via B4 Relay
2024-01-26 18:50   ` Luiz Augusto von Dentz
2024-01-29 14:48     ` Emil Velikov
2024-01-25  0:07 ` [PATCH BlueZ v3 3/8] bluetoothd: remove external-dummy plugin Emil Velikov
2024-01-25  0:07   ` Emil Velikov via B4 Relay
2024-01-25  0:07 ` [PATCH BlueZ v3 4/8] bluetoothd: convert external sixaxis plugin to builtin Emil Velikov
2024-01-25  0:07   ` Emil Velikov via B4 Relay
2024-01-25  0:07 ` [PATCH BlueZ v3 5/8] bluetoothd: factor out external plugin support Emil Velikov
2024-01-25  0:07   ` Emil Velikov via B4 Relay
2024-01-25  0:07 ` [PATCH BlueZ v3 6/8] bluetoothd: don't export internal API Emil Velikov
2024-01-25  0:07   ` Emil Velikov via B4 Relay
2024-01-25  0:07 ` [PATCH BlueZ v3 7/8] bluetoothd: change plugin loading alike obexd Emil Velikov
2024-01-25  0:07   ` Emil Velikov via B4 Relay
2024-01-25  0:07 ` [PATCH BlueZ v3 8/8] android: export only (android) entrypoint from the modules Emil Velikov
2024-01-25  0:07   ` Emil Velikov via B4 Relay
2024-01-25 13:02 ` [PATCH BlueZ v3 0/8] Remove support for external plugins Szymon Janc
2024-01-25 13:48   ` Emil Velikov
2024-01-25 18:30     ` Luiz Augusto von Dentz
2024-01-26 15:43       ` Emil Velikov
  -- strict thread matches above, loose matches on Subject: below --
2024-01-29 14:44 [PATCH BlueZ v4 1/8] configure, README: introduce --enable-external-plugins Emil Velikov
2024-01-29 17:27 ` Remove support for external plugins bluez.test.bot
2024-01-24 16:07 [PATCH BlueZ v2 1/8] configure, README: introduce --enable-external-plugins Emil Velikov
2024-01-24 18:17 ` Remove support for external plugins bluez.test.bot
2024-01-16 14:18 [PATCH BlueZ 1/8] obexd: remove " Emil Velikov
2024-01-16 16:47 ` Remove " bluez.test.bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=65b1d241.a70a0220.b4b7d.474a@mx.google.com \
    --to=bluez.test.bot@gmail.com \
    --cc=devnull+emil.l.velikov.gmail.com@kernel.org \
    --cc=linux-bluetooth@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.