All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ] gdbus: Emit InterfacesAdded of parents objects first
@ 2022-02-04  1:36 Luiz Augusto von Dentz
  2022-02-04  3:08 ` [BlueZ] " bluez.test.bot
  2022-02-04 15:39 ` [PATCH BlueZ] " Marijn Suijten
  0 siblings, 2 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2022-02-04  1:36 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This makes InterfacesAdded respect the object hierarchy in case its
parent has pending interfaces to be added.

Fixes: https://github.com/bluez/bluez/issues/284
---
 gdbus/object.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gdbus/object.c b/gdbus/object.c
index 50a8b4ff1..7232c2986 100644
--- a/gdbus/object.c
+++ b/gdbus/object.c
@@ -551,6 +551,12 @@ static void emit_interfaces_added(struct generic_data *data)
 	if (root == NULL || data == root)
 		return;
 
+	/* Emit InterfacesAdded on the parent first so it appears first on the
+	 * bus as chield objects may point to it.
+	 */
+	if (data->parent && data->parent->added)
+		emit_interfaces_added(data->parent);
+
 	signal = dbus_message_new_signal(root->path,
 					DBUS_INTERFACE_OBJECT_MANAGER,
 					"InterfacesAdded");
-- 
2.34.1


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

* RE: [BlueZ] gdbus: Emit InterfacesAdded of parents objects first
  2022-02-04  1:36 [PATCH BlueZ] gdbus: Emit InterfacesAdded of parents objects first Luiz Augusto von Dentz
@ 2022-02-04  3:08 ` bluez.test.bot
  2022-02-04 15:39 ` [PATCH BlueZ] " Marijn Suijten
  1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2022-02-04  3:08 UTC (permalink / raw)
  To: linux-bluetooth, luiz.dentz

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

---Test result---

Test Summary:
CheckPatch                    PASS      1.44 seconds
GitLint                       PASS      1.06 seconds
Prep - Setup ELL              PASS      53.53 seconds
Build - Prep                  PASS      0.81 seconds
Build - Configure             PASS      10.72 seconds
Build - Make                  PASS      1499.10 seconds
Make Check                    PASS      13.01 seconds
Make Check w/Valgrind         PASS      539.50 seconds
Make Distcheck                PASS      285.04 seconds
Build w/ext ELL - Configure   PASS      10.78 seconds
Build w/ext ELL - Make        PASS      1464.28 seconds
Incremental Build with patchesPASS      0.00 seconds



---
Regards,
Linux Bluetooth


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

* Re: [PATCH BlueZ] gdbus: Emit InterfacesAdded of parents objects first
  2022-02-04  1:36 [PATCH BlueZ] gdbus: Emit InterfacesAdded of parents objects first Luiz Augusto von Dentz
  2022-02-04  3:08 ` [BlueZ] " bluez.test.bot
@ 2022-02-04 15:39 ` Marijn Suijten
  1 sibling, 0 replies; 3+ messages in thread
From: Marijn Suijten @ 2022-02-04 15:39 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

On 2022-02-03 17:36:20, Luiz Augusto von Dentz wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> This makes InterfacesAdded respect the object hierarchy in case its
> parent has pending interfaces to be added.
> 
> Fixes: https://github.com/bluez/bluez/issues/284

https://lore.kernel.org/linux-bluetooth/20211215180527.886481-1-claudio.takahasi@gmail.com/T/#mfb2f320363c6cd086f6e92d5f6ad441b23d540fe
too?  This fixees the issue again, thanks!

> ---
>  gdbus/object.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/gdbus/object.c b/gdbus/object.c
> index 50a8b4ff1..7232c2986 100644
> --- a/gdbus/object.c
> +++ b/gdbus/object.c
> @@ -551,6 +551,12 @@ static void emit_interfaces_added(struct generic_data *data)
>  	if (root == NULL || data == root)
>  		return;
>  
> +	/* Emit InterfacesAdded on the parent first so it appears first on the
> +	 * bus as chield objects may point to it.

child*

- Marijn

> +	 */
> +	if (data->parent && data->parent->added)
> +		emit_interfaces_added(data->parent);
> +
>  	signal = dbus_message_new_signal(root->path,
>  					DBUS_INTERFACE_OBJECT_MANAGER,
>  					"InterfacesAdded");
> -- 
> 2.34.1
> 



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

end of thread, other threads:[~2022-02-04 15:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-04  1:36 [PATCH BlueZ] gdbus: Emit InterfacesAdded of parents objects first Luiz Augusto von Dentz
2022-02-04  3:08 ` [BlueZ] " bluez.test.bot
2022-02-04 15:39 ` [PATCH BlueZ] " Marijn Suijten

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.