crypto: omap-sham - Use pm_runtime_irq_safe()
authorVutla, Lokesh <lokeshvutla@ti.com>
Tue, 31 Mar 2015 04:22:24 +0000 (09:52 +0530)
committerHerbert Xu <herbert@gondor.apana.org.au>
Wed, 1 Apr 2015 14:22:43 +0000 (22:22 +0800)
commitb0a3d8986a768c8b6a95ea6dd36e975bb3a44c44
tree597b1416d5ca83864e2639df563883e1bde0bbcb
parent555fa17b2b8cc865c203de263443041eb75bc7f7
crypto: omap-sham - Use pm_runtime_irq_safe()

omap_sham_handle_queue() can be called as part of done_task tasklet.
During this its atomic and any calls to pm functions cannot sleep.

But there is a call to pm_runtime_get_sync() (which can sleep) in
omap_sham_handle_queue(), because of which the following appears:
" [  116.169969] BUG: scheduling while atomic: kworker/0:2/2676/0x00000100"

Add pm_runtime_irq_safe() to avoid this.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/omap-sham.c
This page took 0.025959 seconds and 5 git commands to generate.