Searched refs:sp_aligned (Results 1 – 1 of 1) sorted by relevance
160 u_int8_t sbuf[AES_BLOCKLEN] __attribute__((aligned(4))), *sp, *sp_unaligned, *sp_aligned = NULL; in esp_cbc_decrypt_aes() local299 if (sp_aligned != NULL) { in esp_cbc_decrypt_aes()300 kfree_data(sp_aligned, MAX_REALIGN_LEN); in esp_cbc_decrypt_aes()301 sp_aligned = NULL; in esp_cbc_decrypt_aes()305 if (sp_aligned == NULL) { in esp_cbc_decrypt_aes()306 sp_aligned = (u_int8_t *)kalloc_data(MAX_REALIGN_LEN, Z_NOWAIT); in esp_cbc_decrypt_aes()307 if (sp_aligned == NULL) { in esp_cbc_decrypt_aes()315 sp = sp_aligned; in esp_cbc_decrypt_aes()348 if (sp_aligned != NULL) { in esp_cbc_decrypt_aes()349 kfree_data(sp_aligned, MAX_REALIGN_LEN); in esp_cbc_decrypt_aes()[all …]