hashstate        1093 crypto/testmgr.c 			      u8 *hashstate)
hashstate        1199 crypto/testmgr.c 			testmgr_poison(hashstate + statesize,
hashstate        1201 crypto/testmgr.c 			err = crypto_shash_export(desc, hashstate);
hashstate        1206 crypto/testmgr.c 			if (!testmgr_is_poison(hashstate + statesize,
hashstate        1213 crypto/testmgr.c 			err = crypto_shash_import(desc, hashstate);
hashstate        1276 crypto/testmgr.c 			      u8 *hashstate)
hashstate        1377 crypto/testmgr.c 			testmgr_poison(hashstate + statesize,
hashstate        1379 crypto/testmgr.c 			err = crypto_ahash_export(req, hashstate);
hashstate        1385 crypto/testmgr.c 			if (!testmgr_is_poison(hashstate + statesize,
hashstate        1393 crypto/testmgr.c 			err = crypto_ahash_import(req, hashstate);
hashstate        1442 crypto/testmgr.c 			     u8 *hashstate)
hashstate        1454 crypto/testmgr.c 					 hashstate);
hashstate        1460 crypto/testmgr.c 				  hashstate);
hashstate        1466 crypto/testmgr.c 			 u8 *hashstate)
hashstate        1477 crypto/testmgr.c 					req, desc, tsgl, hashstate);
hashstate        1491 crypto/testmgr.c 						req, desc, tsgl, hashstate);
hashstate        1553 crypto/testmgr.c 				     u8 *hashstate)
hashstate        1647 crypto/testmgr.c 					req, desc, tsgl, hashstate);
hashstate        1669 crypto/testmgr.c 				     u8 *hashstate)
hashstate        1718 crypto/testmgr.c 	u8 *hashstate = NULL;
hashstate        1764 crypto/testmgr.c 	hashstate = kmalloc(statesize + TESTMGR_POISON_LEN, GFP_KERNEL);
hashstate        1765 crypto/testmgr.c 	if (!hashstate) {
hashstate        1774 crypto/testmgr.c 				    hashstate);
hashstate        1780 crypto/testmgr.c 					desc, tsgl, hashstate);
hashstate        1782 crypto/testmgr.c 	kfree(hashstate);
hashstate         280 fs/verity/enable.c 	kfree(params.hashstate);
hashstate          45 fs/verity/fsverity_private.h 	const u8 *hashstate;		/* initial hash state or NULL */
hashstate         107 fs/verity/hash_algs.c 	u8 *hashstate = NULL;
hashstate         118 fs/verity/hash_algs.c 	hashstate = kmalloc(crypto_ahash_statesize(alg->tfm), GFP_KERNEL);
hashstate         119 fs/verity/hash_algs.c 	if (!hashstate)
hashstate         157 fs/verity/hash_algs.c 	err = crypto_ahash_export(req, hashstate);
hashstate         163 fs/verity/hash_algs.c 	return hashstate;
hashstate         166 fs/verity/hash_algs.c 	kfree(hashstate);
hashstate         167 fs/verity/hash_algs.c 	hashstate = ERR_PTR(err);
hashstate         202 fs/verity/hash_algs.c 	if (params->hashstate) {
hashstate         203 fs/verity/hash_algs.c 		err = crypto_ahash_import(req, params->hashstate);
hashstate          48 fs/verity/open.c 	params->hashstate = fsverity_prepare_hash_state(hash_alg, salt,
hashstate          50 fs/verity/open.c 	if (IS_ERR(params->hashstate)) {
hashstate          51 fs/verity/open.c 		err = PTR_ERR(params->hashstate);
hashstate          52 fs/verity/open.c 		params->hashstate = NULL;
hashstate         120 fs/verity/open.c 	kfree(params->hashstate);
hashstate         234 fs/verity/open.c 	kfree(vi->tree_params.hashstate);