All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rilmodem: fix sim_status_cb debug logging
@ 2015-12-04 21:15 Tony Espy
  2015-12-04 22:27 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: Tony Espy @ 2015-12-04 21:15 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1511 bytes --]

During the re-factoring of rilmodem's sim atom
messaging code, the sim_status_cb function's
RIL tracing code was converted to DBG calls.
This change adds the same prefix to DBG/trace
calls when a single message's parameters span
more than one DBG call. This makes it easier
to filter out trace messages when looking at a
log file.
---
 drivers/rilmodem/sim.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/rilmodem/sim.c b/drivers/rilmodem/sim.c
index ada7c20..5307d67 100644
--- a/drivers/rilmodem/sim.c
+++ b/drivers/rilmodem/sim.c
@@ -777,9 +777,11 @@ static void sim_status_cb(struct ril_msg *message, gpointer user_data)
 				message->serial_no,
 				"RIL_REQUEST_GET_SIM_STATUS");
 
-	DBG("card_state=%d,universal_pin_state=%d,"
+	DBG("[%d,%04d]< card_state=%d,universal_pin_state=%d,"
 			"gsm_umts_index=%d,cdma_index=%d,ims_index=%d,"
 			"num_apps=%d",
+			g_ril_get_slot(sd->ril),
+			message->serial_no,
 			card_state, universal_pin_state,
 			gsm_umts_app_index, cdma_app_index, ims_app_index,
 			num_apps);
@@ -886,7 +888,8 @@ static void sim_status_cb(struct ril_msg *message, gpointer user_data)
 	g_free(sd->aid_str);
 	sd->aid_str = parcel_r_string(&rilp);	/* AID */
 
-	DBG("app_type: %d, passwd_state: %d, aid_str (AID): %s",
+	DBG("[%d,%04d]< app_type: %d, passwd_state: %d, aid_str (AID): %s",
+		g_ril_get_slot(sd->ril), message->serial_no,
 		sd->app_type, sd->passwd_state, sd->aid_str);
 
 	/*
-- 
2.1.4


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

* Re: [PATCH] rilmodem: fix sim_status_cb debug logging
  2015-12-04 21:15 [PATCH] rilmodem: fix sim_status_cb debug logging Tony Espy
@ 2015-12-04 22:27 ` Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2015-12-04 22:27 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 554 bytes --]

Hi Tony,

On 12/04/2015 03:15 PM, Tony Espy wrote:
> During the re-factoring of rilmodem's sim atom
> messaging code, the sim_status_cb function's
> RIL tracing code was converted to DBG calls.
> This change adds the same prefix to DBG/trace
> calls when a single message's parameters span
> more than one DBG call. This makes it easier
> to filter out trace messages when looking at a
> log file.
> ---
>   drivers/rilmodem/sim.c | 7 +++++--
>   1 file changed, 5 insertions(+), 2 deletions(-)
>

Applied, thanks.

Regards,
-Denis


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

end of thread, other threads:[~2015-12-04 22:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-04 21:15 [PATCH] rilmodem: fix sim_status_cb debug logging Tony Espy
2015-12-04 22:27 ` Denis Kenzior

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.