diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-26 21:05:23 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-26 21:05:23 -0400 |
commit | d8cc3972b2178f9fe532306330f76bf51cb0d8bd (patch) | |
tree | 9e16fc4ff9ad97d1d5f1f9a2a261a356167ef5eb /drivers/crypto/qat | |
parent | c91d7072952993f96896c2fc9868f55924e7ba6c (diff) | |
parent | 09185e2756a83763bcbfe51b308b85979f0de027 (diff) | |
download | blackbird-obmc-linux-d8cc3972b2178f9fe532306330f76bf51cb0d8bd.tar.gz blackbird-obmc-linux-d8cc3972b2178f9fe532306330f76bf51cb0d8bd.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fixes from Herbert Xu:
"This fixes the following issues:
- check the return value of platform_get_irq as signed int in xgene.
- skip adf_dev_restore on virtual functions in qat.
- fix double-free with backlogged requests in marvell_cesa"
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
hwrng: xgene - fix handling platform_get_irq
crypto: qat - VF should never trigger SBR on PH
crypto: marvell - properly handle CRYPTO_TFM_REQ_MAY_BACKLOG-flagged requests
Diffstat (limited to 'drivers/crypto/qat')
-rw-r--r-- | drivers/crypto/qat/qat_common/adf_aer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/crypto/qat/qat_common/adf_aer.c b/drivers/crypto/qat/qat_common/adf_aer.c index a57b4194de28..0a5ca0ba5d64 100644 --- a/drivers/crypto/qat/qat_common/adf_aer.c +++ b/drivers/crypto/qat/qat_common/adf_aer.c @@ -88,6 +88,9 @@ static void adf_dev_restore(struct adf_accel_dev *accel_dev) struct pci_dev *parent = pdev->bus->self; uint16_t bridge_ctl = 0; + if (accel_dev->is_vf) + return; + dev_info(&GET_DEV(accel_dev), "Resetting device qat_dev%d\n", accel_dev->accel_id); |