From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1gSN28-00043M-TF for barebox@lists.infradead.org; Thu, 29 Nov 2018 14:11:26 +0000 Date: Thu, 29 Nov 2018 15:11:00 +0100 From: Roland Hieber Message-ID: <20181129141100.yhexyeerzlqdwo3s@pengutronix.de> References: <20181125225952.16159-1-r.hieber@pengutronix.de> <20181126090140.k443kixpzmcxhjim@pengutronix.de> <20181126105347.dlfdxjwdas3s57ia@pengutronix.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20181126105347.dlfdxjwdas3s57ia@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: Re: [PATCH 1/2] drivers: caam: add RNG software self-test To: Sascha Hauer Cc: barebox@lists.infradead.org On Mon, Nov 26, 2018 at 11:53:47AM +0100, Roland Hieber wrote: > > > + pr_vdebug("Result\n"); > > > + for (i = 0; i < RESULT_SIZE; i++) { > > > + pr_vdebug("%02X\n", result[i]); > > > + } > > > + > > > + pr_vdebug("Expected Result:\n"); > > > + for (i = 0; i < RESULT_SIZE; i++) { > > > + pr_vdebug("%02X\n", exp_result[i]); > > > + } > > > > Use memory_display to display this. Also this is only interesting if > > both differ, so better print it in the failure path. > > I thought about that too, but I didn't see a way to make memory_display > use pr_vdebug, or otherwise make its output depend on the debug level. I have several solutions in mind: one would be to introduce a function log_level() to get the current log level and decide on that whether to call memory_display. However then memory dump won't pick up the pr_* prefixes and use plain printf nevertheless. So my second thought is to add a callback function to memory_display to pass pr_debug or else to it which it can use to print stuff. However then we need to remodel memory_display so it always prints full lines (or uses pr_cont which it would need to know about, and you wanted to get rid of pr_cont anyway). We could also use a third way and implement a custom printf escape, say %md, that gets replaced with memory_display output when calling pr_printk, and move the core formatting of memory_display into a helper. I'm not sure which one is best. - Roland -- Roland Hieber | r.hieber@pengutronix.de | Pengutronix e.K. | https://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox