mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-16 23:40:43 +01:00
device: Add additional debugs
This commit is contained in:
parent
d95f9a29c5
commit
cec2104ffa
@ -533,6 +533,8 @@ void device_disassociated(struct device *device)
|
|||||||
struct network *network = device->connected_network;
|
struct network *network = device->connected_network;
|
||||||
struct l_dbus *dbus = dbus_get_bus();
|
struct l_dbus *dbus = dbus_get_bus();
|
||||||
|
|
||||||
|
l_debug("%d", device->index);
|
||||||
|
|
||||||
if (network) {
|
if (network) {
|
||||||
if (device->state == DEVICE_STATE_CONNECTED)
|
if (device->state == DEVICE_STATE_CONNECTED)
|
||||||
network_disconnected(network);
|
network_disconnected(network);
|
||||||
@ -582,6 +584,8 @@ static void device_connect_cb(struct netdev *netdev, enum netdev_result result,
|
|||||||
{
|
{
|
||||||
struct device *device = user_data;
|
struct device *device = user_data;
|
||||||
|
|
||||||
|
l_debug("%d, result: %d", device->index, result);
|
||||||
|
|
||||||
if (device->connect_pending) {
|
if (device->connect_pending) {
|
||||||
struct l_dbus_message *reply;
|
struct l_dbus_message *reply;
|
||||||
|
|
||||||
@ -770,6 +774,8 @@ static void device_disconnect_cb(struct netdev *netdev, bool success,
|
|||||||
struct device *device = user_data;
|
struct device *device = user_data;
|
||||||
struct l_dbus_message *reply;
|
struct l_dbus_message *reply;
|
||||||
|
|
||||||
|
l_debug("%d, success: %d", device->index, success);
|
||||||
|
|
||||||
if (!success) {
|
if (!success) {
|
||||||
if (!device->disconnect_pending)
|
if (!device->disconnect_pending)
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user