* Re: [PATCH v2] powerpc: Improve message for vio bus entitlement panic
[not found] <20080815191205.GE20629@austin.ibm.com>
@ 2008-08-18 15:34 ` Robert Jennings
2008-08-20 6:00 ` Paul Mackerras
0 siblings, 1 reply; 2+ messages in thread
From: Robert Jennings @ 2008-08-18 15:34 UTC (permalink / raw)
To: Paul Mackerras, linuxppc-dev list, Benjamin Herrenschmidt
Add information regarding the available and required entitlement amounts
to the message displayed for the panic when insufficient entitlement is
provided at boot.
Signed-off-by: Robert Jennings <rcj@linux.vnet.ibm.com>
---
I had typed "Submitted-by" instead of "Signed-off-by" previously.
---
arch/powerpc/kernel/vio.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Index: b/arch/powerpc/kernel/vio.c
===================================================================
--- a/arch/powerpc/kernel/vio.c
+++ b/arch/powerpc/kernel/vio.c
@@ -899,7 +899,9 @@ static void vio_cmo_bus_init(void)
if (vio_cmo.reserve.size > vio_cmo.entitled) {
printk(KERN_ERR "%s: insufficient system entitlement\n",
__func__);
- panic("%s: Insufficient system entitlement", __func__);
+ panic("%s: Insufficient system entitlement. Available: %lu "
+ "Required: %lu", __func__, vio_cmo.entitled,
+ vio_cmo.reserve.size);
}
/* Set the remaining accounting variables */
^ permalink raw reply [flat|nested] 2+ messages in thread