Thread (56 messages) 56 messages, 7 authors, 2021-05-25

Re: [PATCH 01/23] media: imx: imx7_mipi_csis: Fix logging of only error event counters

From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Date: 2021-05-15 21:54:46

Hi Frieder,

On Mon, Apr 26, 2021 at 01:01:50PM +0200, Frieder Schrempf wrote:
On 13.04.21 04:29, Laurent Pinchart wrote:
quoted
The mipi_csis_events array ends with 6 non-error events, not 4. Update
mipi_csis_log_counters() accordingly. While at it, log event counters in
forward order, as there's no reason to log them backward.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
As there is currently no user of mipi_csis_log_counters() with 
non_errors set to false, maybe we should just remove this path?

If you think we should keep it, I'm fine with that, too:
I'd rather keep it, and add a patch that logs non-error counters only
when debugging is enabled. It can get too verbose otherwise.
Reviewed-by: Frieder Schrempf <redacted>
quoted
---
  drivers/staging/media/imx/imx7-mipi-csis.c | 6 ++++--
  1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/media/imx/imx7-mipi-csis.c b/drivers/staging/media/imx/imx7-mipi-csis.c
index 025fdc488bd6..25d0f89b2e53 100644
--- a/drivers/staging/media/imx/imx7-mipi-csis.c
+++ b/drivers/staging/media/imx/imx7-mipi-csis.c
@@ -666,13 +666,15 @@ static void mipi_csis_clear_counters(struct csi_state *state)
  
  static void mipi_csis_log_counters(struct csi_state *state, bool non_errors)
  {
-	int i = non_errors ? MIPI_CSIS_NUM_EVENTS : MIPI_CSIS_NUM_EVENTS - 4;
+	unsigned int num_events = non_errors ? MIPI_CSIS_NUM_EVENTS
+				: MIPI_CSIS_NUM_EVENTS - 6;
  	struct device *dev = &state->pdev->dev;
  	unsigned long flags;
+	unsigned int i;
  
  	spin_lock_irqsave(&state->slock, flags);
  
-	for (i--; i >= 0; i--) {
+	for (i = 0; i < num_events; ++i) {
  		if (state->events[i].counter > 0 || state->debug)
  			dev_info(dev, "%s events: %d\n", state->events[i].name,
  				 state->events[i].counter);
-- 
Regards,

Laurent Pinchart
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help