crypto: qat - The AE id should be less than the maximal AE number
authorPingchao Yang <pingchao.yang@intel.com>
Thu, 18 Feb 2016 03:29:02 +0000 (22:29 -0500)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sat, 27 Feb 2016 19:26:31 +0000 (03:26 +0800)
Signed-off-by: Yang Pingchao <pingchao.yang@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/qat/qat_common/qat_uclo.c

index 25d15f1..9b961b3 100644 (file)
@@ -688,7 +688,7 @@ static int qat_uclo_map_ae(struct icp_qat_fw_loader_handle *handle, int max_ae)
        int mflag = 0;
        struct icp_qat_uclo_objhandle *obj_handle = handle->obj_handle;
 
-       for (ae = 0; ae <= max_ae; ae++) {
+       for (ae = 0; ae < max_ae; ae++) {
                if (!test_bit(ae,
                              (unsigned long *)&handle->hal_handle->ae_mask))
                        continue;