public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][davinci] ccdc_update_raw_params() frees the wrong thing
@ 2015-12-13  0:32 Al Viro
  2016-01-05 17:37 ` Lad, Prabhakar
  0 siblings, 1 reply; 4+ messages in thread
From: Al Viro @ 2015-12-13  0:32 UTC (permalink / raw)
  To: Lad, Prabhakar; +Cc: Mauro Carvalho Chehab, linux-media

	Passing a physical address to free_pages() is a bad idea.
config_params->fault_pxl.fpc_table_addr is set to virt_to_phys()
of __get_free_pages() return value; what we should pass to free_pages()
is its phys_to_virt().  ccdc_close() does that properly, but
ccdc_update_raw_params() doesn't.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

diff --git a/drivers/media/platform/davinci/dm644x_ccdc.c b/drivers/media/platform/davinci/dm644x_ccdc.c
index ffbefdf..6fba32b 100644
--- a/drivers/media/platform/davinci/dm644x_ccdc.c
+++ b/drivers/media/platform/davinci/dm644x_ccdc.c
@@ -261,7 +261,7 @@ static int ccdc_update_raw_params(struct ccdc_config_params_raw *raw_params)
 	 */
 	if (raw_params->fault_pxl.fp_num != config_params->fault_pxl.fp_num) {
 		if (fpc_physaddr != NULL) {
-			free_pages((unsigned long)fpc_physaddr,
+			free_pages((unsigned long)fpc_virtaddr,
 				   get_order
 				   (config_params->fault_pxl.fp_num *
 				   FP_NUM_BYTES));

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

end of thread, other threads:[~2016-01-06 17:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-13  0:32 [PATCH][davinci] ccdc_update_raw_params() frees the wrong thing Al Viro
2016-01-05 17:37 ` Lad, Prabhakar
2016-01-06 16:34   ` Al Viro
2016-01-06 17:14     ` Lad, Prabhakar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox