From: Inga Stotland <inga.stotland@intel.com>
To: linux-bluetooth@vger.kernel.org
Cc: brian.gix@intel.com, Inga Stotland <inga.stotland@intel.com>
Subject: [PATCH BlueZ 3/5] mesh: Remove debug-only related callback for packet send
Date: Thu, 28 May 2020 23:37:48 -0700 [thread overview]
Message-ID: <20200529063750.186278-4-inga.stotland@intel.com> (raw)
In-Reply-To: <20200529063750.186278-1-inga.stotland@intel.com>
This removes callback for sending every single access layer packet
since the callback does nothing but print debug satement. This
functionality is mature enough not to require such heavy debugging.
---
mesh/model.c | 27 ++-------------------------
mesh/net.c | 20 +-------------------
mesh/net.h | 9 ++-------
3 files changed, 5 insertions(+), 51 deletions(-)
diff --git a/mesh/model.c b/mesh/model.c
index dc6f28eb8..49e7c50fa 100644
--- a/mesh/model.c
+++ b/mesh/model.c
@@ -508,29 +508,6 @@ static int virt_packet_decrypt(struct mesh_net *net, const uint8_t *data,
return -1;
}
-static void cmplt(uint16_t remote, uint8_t status,
- void *data, uint16_t size,
- void *user_data)
-{
- struct timeval tx_end;
-
- gettimeofday(&tx_end, NULL);
-
- if (tx_end.tv_sec == tx_start.tv_sec) {
- l_debug("Duration 0.%6.6lu seconds",
- tx_end.tv_usec - tx_start.tv_usec);
- } else {
- if (tx_start.tv_usec > tx_end.tv_usec)
- l_debug("Duration %lu.%6.6lu seconds",
- tx_end.tv_sec - tx_start.tv_sec - 1,
- tx_end.tv_usec + 1000000 - tx_start.tv_usec);
- else
- l_debug("Duration %lu.%6.6lu seconds",
- tx_end.tv_sec - tx_start.tv_sec,
- tx_end.tv_usec - tx_start.tv_usec);
- }
-}
-
static bool msg_send(struct mesh_node *node, bool credential, uint16_t src,
uint32_t dst, uint16_t app_idx, uint16_t net_idx,
uint8_t *label, uint8_t ttl, bool segmented,
@@ -585,9 +562,9 @@ static bool msg_send(struct mesh_node *node, bool credential, uint16_t src,
goto done;
}
- ret = mesh_net_app_send(net, credential, src, dst, key_aid, net_idx,
+ ret = mesh_net_app_send(net, credential, src, dst, key_aid, net_idx,
ttl, seq_num, iv_index, segmented,
- szmic, out, out_len, cmplt, NULL);
+ szmic, out, out_len);
done:
l_free(out);
return ret;
diff --git a/mesh/net.c b/mesh/net.c
index f9e7bce4c..08544ad61 100644
--- a/mesh/net.c
+++ b/mesh/net.c
@@ -171,8 +171,6 @@ struct mesh_sar {
unsigned int id;
struct l_timeout *seg_timeout;
struct l_timeout *msg_timeout;
- mesh_net_status_func_t status_func;
- void *user_data;
uint32_t flags;
uint32_t last_nak;
uint32_t iv_index;
@@ -1657,12 +1655,6 @@ static void outmsg_to(struct l_timeout *msg_timeout, void *user_data)
return;
sar->msg_timeout = NULL;
-
- if (sar->status_func)
- sar->status_func(sar->remote, 1,
- sar->buf, sar->len - 4,
- sar->user_data);
-
mesh_sar_free(sar);
}
@@ -1712,10 +1704,6 @@ static void ack_received(struct mesh_net *net, bool timeout,
l_debug("ob_sar_removal (%x)", outgoing->flags);
/* Note: ack_flags == 0x00000000 is a remote Cancel request */
- if (outgoing->status_func)
- outgoing->status_func(src, ack_flag ? 0 : 1,
- outgoing->buf,
- outgoing->len - 4, outgoing->user_data);
l_queue_remove(net->sar_out, outgoing);
send_queued_sar(net, outgoing->remote);
@@ -3154,9 +3142,7 @@ bool mesh_net_app_send(struct mesh_net *net, bool frnd_cred, uint16_t src,
uint16_t dst, uint8_t key_aid, uint16_t net_idx,
uint8_t ttl, uint32_t seq, uint32_t iv_index,
bool segmented, bool szmic,
- const void *msg, uint16_t msg_len,
- mesh_net_status_func_t status_func,
- void *user_data)
+ const void *msg, uint16_t msg_len)
{
struct mesh_sar *payload = NULL;
uint8_t seg, seg_max;
@@ -3214,8 +3200,6 @@ bool mesh_net_app_send(struct mesh_net *net, bool frnd_cred, uint16_t src,
if (segmented) {
payload->flags = 0xffffffff >> (31 - seg_max);
payload->seqZero = seq & SEQ_ZERO_MASK;
- payload->status_func = status_func;
- payload->user_data = user_data;
payload->id = ++net->sar_id_next;
/* Single thread SAR messages to same Unicast DST */
@@ -3251,8 +3235,6 @@ bool mesh_net_app_send(struct mesh_net *net, bool frnd_cred, uint16_t src,
l_timeout_create(SEG_TO, outseg_to, net, NULL);
payload->msg_timeout =
l_timeout_create(MSG_TO, outmsg_to, net, NULL);
- payload->status_func = status_func;
- payload->user_data = user_data;
payload->id = ++net->sar_id_next;
} else
mesh_sar_free(payload);
diff --git a/mesh/net.h b/mesh/net.h
index 8646d5aef..12808ce38 100644
--- a/mesh/net.h
+++ b/mesh/net.h
@@ -260,9 +260,6 @@ struct mesh_friend_msg {
};
typedef void (*mesh_status_func_t)(void *user_data, bool result);
-typedef void (*mesh_net_status_func_t)(uint16_t remote, uint8_t status,
- void *data, uint16_t size,
- void *user_data);
struct mesh_net *mesh_net_new(struct mesh_node *node);
void mesh_net_free(void *net);
@@ -313,10 +310,8 @@ void mesh_net_transport_send(struct mesh_net *net, uint32_t key_id,
bool mesh_net_app_send(struct mesh_net *net, bool frnd_cred, uint16_t src,
uint16_t dst, uint8_t key_id, uint16_t net_idx,
uint8_t ttl, uint32_t seq, uint32_t iv_index,
- bool segmented, bool szmic,
- const void *msg, uint16_t msg_len,
- mesh_net_status_func_t status_func,
- void *user_data);
+ bool segmented, bool szmic, const void *msg,
+ uint16_t msg_len);
void mesh_net_ack_send(struct mesh_net *net, uint32_t key_id,
uint32_t iv_index, uint8_t ttl, uint32_t seq,
uint16_t src, uint16_t dst, bool rly,
--
2.26.2
next prev parent reply other threads:[~2020-05-29 6:37 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-29 6:37 [PATCH BlueZ 0/5] Mesh clean up Inga Stotland
2020-05-29 6:37 ` [PATCH BlueZ 1/5] mesh: Make helper packet print depends on debug setting Inga Stotland
2020-05-29 6:37 ` [PATCH BlueZ 2/5] mesh: Debug output clean up Inga Stotland
2020-05-29 17:22 ` Gix, Brian
2020-05-29 6:37 ` Inga Stotland [this message]
2020-05-29 6:37 ` [PATCH BlueZ 4/5] mesh: Clean up style in net.c Inga Stotland
2020-05-29 7:08 ` [BlueZ,4/5] " bluez.test.bot
2020-05-29 6:37 ` [PATCH BlueZ 5/5] mesh: Remove unused functions from net.c Inga Stotland
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=20200529063750.186278-4-inga.stotland@intel.com \
--to=inga.stotland@intel.com \
--cc=brian.gix@intel.com \
--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.