summaryrefslogtreecommitdiff
path: root/arch/powerpc/platforms/powernv/opal-msglog.c
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2017-01-13 14:23:49 +1030
committerMichael Ellerman <mpe@ellerman.id.au>2017-01-25 13:33:55 +1100
commit14a41d6b7572026cf8fc88ee72e81b6b40db2ec0 (patch)
tree3774df6ebd4a306fa11a35a6e3e8c9c850a650f1 /arch/powerpc/platforms/powernv/opal-msglog.c
parent8ad43336b5c1ad9ac945148cb5e26a1200ccd45c (diff)
powerpc/powernv: Report size of OPAL memcons log
The OPAL memory console is reported to be size zero, as we do not initialise the struct attr with any size information due to the size being variable. This leads users to think that the console is empty. Instead report the maximum size. Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/platforms/powernv/opal-msglog.c')
-rw-r--r--arch/powerpc/platforms/powernv/opal-msglog.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/powernv/opal-msglog.c b/arch/powerpc/platforms/powernv/opal-msglog.c
index 39d6ff9e5630..7a9cde0cfbd1 100644
--- a/arch/powerpc/platforms/powernv/opal-msglog.c
+++ b/arch/powerpc/platforms/powernv/opal-msglog.c
@@ -123,6 +123,10 @@ void __init opal_msglog_init(void)
return;
}
+ /* Report maximum size */
+ opal_msglog_attr.size = be32_to_cpu(mc->ibuf_size) +
+ be32_to_cpu(mc->obuf_size);
+
opal_memcons = mc;
}