[PATCH v3] powerpc/powernv: Add queue mechanism for early messages

2018-05-21 Thread Deb McLemore
registration until we have a handler registered for all the critical types. 3 - Buffering messages, if we receive a message and do not yet have a handler for that type, store the message and replay when a handler for that type is registered. Signed-off-by: Deb McLemore --- arch/powerpc/platforms

[PATCH v2] powerpc/powernv: Add queue mechanism for early messages

2017-11-29 Thread Deb McLemore
registration until we have a handler registered for all the critical types. 3 - Buffering messages, if we receive a message and do not yet have a handler for that type, store the message and replay when a handler for that type is registered. Signed-off-by: Deb McLemore --- arch/powerpc/platforms

Re: [PATCH] powerpc/powernv: Add queue mechanism for early messages

2017-11-28 Thread Deb McLemore
gt; Thanks for the patch. > > Some comments below ... > > Deb McLemore writes: >> Add a check for do_notify to confirm that a message handler >> has been registered before an attempt is made to call notifier >> call chain. >> >> If the message handler has not been

[PATCH] powerpc/powernv: Add queue mechanism for early messages

2017-11-26 Thread Deb McLemore
Add a check for do_notify to confirm that a message handler has been registered before an attempt is made to call notifier call chain. If the message handler has not been registered queue up the message to be replayed when the proper registration is called. Signed-off-by: Deb McLemore --- arch