]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'net-ipa-gsi-interrupt-handling-fixes'
authorJakub Kicinski <kuba@kernel.org>
Wed, 23 Dec 2020 20:17:50 +0000 (12:17 -0800)
committerJakub Kicinski <kuba@kernel.org>
Wed, 23 Dec 2020 20:17:51 +0000 (12:17 -0800)
commit7b35b9bddbe8a557b35368d6e103a2a4f8924431
tree6c22041443915b6f694c275062603eb4d831aa9b
parente1a50a13c67bb02b4a5b8021f1167c620798413b
parent6f85eac8812af4548134084d713e5d6caf339044
Merge branch 'net-ipa-gsi-interrupt-handling-fixes'

Alex Elder says:

====================
net: ipa: GSI interrupt handling fixes

This series implements fixes for some issues related to handling
interrupts when GSI channel and event ring commands complete.

The first issue is that the completion condition for an event ring
or channel command could occur while the associated interrupt is
disabled.  This would cause the interrupt to fire when it is
subsequently enabled, even if the condition it signals had already
been handled.  The fix is to clear any pending interrupt conditions
before re-enabling the interrupt.

The second and third patches change how the success of an event ring
or channel command is determined.  These commands change the state
of an event ring or channel.  Previously the receipt of a completion
interrupt was required to consider a command successful.  Instead, a
command is successful if it changes the state of the target event
ring or channel in the way expected.  This way the command can
succeed even if the completion interrupt did not arrive while it was
enabled.
====================

Link: https://lore.kernel.org/r/20201222180012.22489-1-elder@linaro.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>