HASH_CACHE_SIZE
u8 cache[HASH_CACHE_SIZE];
if (queued <= HASH_CACHE_SIZE)
extra = queued & (HASH_CACHE_SIZE - 1);
extra = HASH_CACHE_SIZE;
u8 cache[HASH_CACHE_SIZE] __aligned(sizeof(u32));
u8 cache_next[HASH_CACHE_SIZE] __aligned(sizeof(u32));
if (cache_len + areq->nbytes <= HASH_CACHE_SIZE) {
memcpy(export->cache, req->cache, HASH_CACHE_SIZE);
memcpy(req->cache, export->cache, HASH_CACHE_SIZE);