Re: [Qemu-devel] [PATCH for-2.10 01/19] crypto: cipher: introduce context free function

2017-04-10 Thread Longpeng (Mike)
On 2017/4/10 23:01, Eric Blake wrote: > On 04/10/2017 03:59 AM, Longpeng(Mike) wrote: >> Refactors the qcrypto_cipher_free(), splits it into two parts. One >> is gcrypt/nettle__cipher_free_ctx() to free the special context. > > Your mail forgot to include 'In-Reply-To:' and 'References:'

Re: [Qemu-devel] [PATCH for-2.10 01/19] crypto: cipher: introduce context free function

2017-04-10 Thread Eric Blake
On 04/10/2017 03:59 AM, Longpeng(Mike) wrote: > Refactors the qcrypto_cipher_free(), splits it into two parts. One > is gcrypt/nettle__cipher_free_ctx() to free the special context. Your mail forgot to include 'In-Reply-To:' and 'References:' headers; and therefore you resulted in sending 20

[Qemu-devel] [PATCH for-2.10 01/19] crypto: cipher: introduce context free function

2017-04-10 Thread Longpeng(Mike)
Refactors the qcrypto_cipher_free(), splits it into two parts. One is gcrypt/nettle__cipher_free_ctx() to free the special context. This makes code more clear, what's more, it would be used by the later patch. Signed-off-by: Longpeng(Mike) --- crypto/cipher-gcrypt.c | 31