Re: [PATCH] crypto, x86: aesni: add compatibility with IAS

2020-07-03 Thread Sedat Dilek
On Fri, Jul 3, 2020 at 3:00 PM Herbert Xu wrote: > > On Fri, Jul 03, 2020 at 10:36:43AM +0200, Sedat Dilek wrote: > > > > Can you please apply my patch, too? > > Please repost your patch without the 5.7 tag. > Sent out a v5: Changes v4->v5: - Drop "5.7" tag from subject line as requested by Herb

Re: [PATCH] crypto, x86: aesni: add compatibility with IAS

2020-07-03 Thread Herbert Xu
On Fri, Jul 03, 2020 at 10:36:43AM +0200, Sedat Dilek wrote: > > Can you please apply my patch, too? Please repost your patch without the 5.7 tag. Thanks, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Re: [PATCH] crypto, x86: aesni: add compatibility with IAS

2020-07-03 Thread Sedat Dilek
On Fri, Jul 3, 2020 at 6:49 AM Herbert Xu wrote: > > On Mon, Jun 22, 2020 at 04:24:33PM -0700, Jian Cai wrote: > > Clang's integrated assembler complains "invalid reassignment of > > non-absolute variable 'var_ddq_add'" while assembling > > arch/x86/crypto/aes_ctrby8_avx-x86_64.S. It was because v

Re: [PATCH] crypto, x86: aesni: add compatibility with IAS

2020-07-02 Thread Herbert Xu
On Mon, Jun 22, 2020 at 04:24:33PM -0700, Jian Cai wrote: > Clang's integrated assembler complains "invalid reassignment of > non-absolute variable 'var_ddq_add'" while assembling > arch/x86/crypto/aes_ctrby8_avx-x86_64.S. It was because var_ddq_add was > reassigned with non-absolute values several

[PATCH] crypto, x86: aesni: add compatibility with IAS

2020-06-22 Thread Jian Cai
Clang's integrated assembler complains "invalid reassignment of non-absolute variable 'var_ddq_add'" while assembling arch/x86/crypto/aes_ctrby8_avx-x86_64.S. It was because var_ddq_add was reassigned with non-absolute values several times, which IAS did not support. We can avoid the reassignment b