public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] cmd: host: fix seg fault at "host info"
@ 2019-08-22  7:47 AKASHI Takahiro
  2019-08-27  1:12 ` Bin Meng
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: AKASHI Takahiro @ 2019-08-22  7:47 UTC (permalink / raw)
  To: u-boot

With the patch below applied, host_block_dev structure was switched
to be placed in platdata rather than priv. The command "host info"
must be aligned with this change. Otherwise, we will see "Segmentation
Fault."

Fixes: 8f994c860d91 ("sandbox: blk: Switch to use platdata_auto_alloc_size for the driver data")
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
---
 cmd/host.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/host.c b/cmd/host.c
index f7d3eae5b1ad..98c4d2a099e9 100644
--- a/cmd/host.c
+++ b/cmd/host.c
@@ -89,7 +89,7 @@ static int do_host_info(cmd_tbl_t *cmdtp, int flag, int argc,
 		struct host_block_dev *host_dev;
 
 #ifdef CONFIG_BLK
-		host_dev = dev_get_priv(blk_dev->bdev);
+		host_dev = dev_get_platdata(blk_dev->bdev);
 #else
 		host_dev = blk_dev->priv;
 #endif
-- 
2.21.0

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

end of thread, other threads:[~2019-10-06 22:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-22  7:47 [U-Boot] [PATCH] cmd: host: fix seg fault at "host info" AKASHI Takahiro
2019-08-27  1:12 ` Bin Meng
2019-08-27  2:54 ` Heinrich Schuchardt
2019-10-03  6:04 ` AKASHI Takahiro
2019-10-03  7:27   ` Bin Meng
2019-10-06 22:03 ` Tom Rini

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