Re: [PATCH 1/9] x86/crypto: Remove X86_FEATURE_EAGER_FPU ifdef from the crc32c code

2016-10-04 Thread Rik van Riel
On Tue, 2016-10-04 at 20:34 -0400, r...@redhat.com wrote: > From: Rik van Riel > > From : Andy Lutomirski OK, I am not sure why "guilt patchbomb" (which invokes git patchbomb) would do that :( Obviously these first four patches are Andy's, not my own. -- All Rights Reversed. signature.asc D

[PATCH 1/9] x86/crypto: Remove X86_FEATURE_EAGER_FPU ifdef from the crc32c code

2016-10-04 Thread riel
From: Rik van Riel >From : Andy Lutomirski The crypto code was checking both use_eager_fpu() and defined(X86_FEATURE_EAGER_FPU). The latter was nonsensical, so remove it. This will avoid breakage when we remove X86_FEATURE_EAGER_FPU. Signed-off-by: Rik van Riel Signed-off-by: Andy Lutomirsk