All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] powerpc: crypto/vmx: various build fixes
@ 2016-11-16 15:11 Naveen N. Rao
  2016-11-17  0:51 ` Michael Ellerman
  2016-11-17 15:40   ` Herbert Xu
  0 siblings, 2 replies; 8+ messages in thread
From: Naveen N. Rao @ 2016-11-16 15:11 UTC (permalink / raw)
  To: Leonidas S. Barbosa, Herbert Xu, Michael Ellerman
  Cc: Paulo Flabiano Smorigo, linux-crypto, linuxppc-dev

First up, clean up the generated .S files properly on a 'make clean'.
Secondly, force re-generation of these files when building for different
endian-ness than what was built previously. Finally, generate the new
files in the build tree, rather than the source tree.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
---
Michael,
I've added your SOB here though you didn't explicitly include it in your
previous mail. I hope that's fine from your end.

- Naveen

 drivers/crypto/vmx/Makefile | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/drivers/crypto/vmx/Makefile b/drivers/crypto/vmx/Makefile
index de6e241..55f7c39 100644
--- a/drivers/crypto/vmx/Makefile
+++ b/drivers/crypto/vmx/Makefile
@@ -10,10 +10,12 @@ endif
 quiet_cmd_perl = PERL $@
       cmd_perl = $(PERL) $(<) $(TARGET) > $(@)
 
-$(src)/aesp8-ppc.S: $(src)/aesp8-ppc.pl
-	$(call cmd,perl)
+targets += aesp8-ppc.S ghashp8-ppc.S
+
+$(obj)/aesp8-ppc.S: $(src)/aesp8-ppc.pl FORCE
+	$(call if_changed,perl)
   
-$(src)/ghashp8-ppc.S: $(src)/ghashp8-ppc.pl
-	$(call cmd,perl)
+$(obj)/ghashp8-ppc.S: $(src)/ghashp8-ppc.pl FORCE
+	$(call if_changed,perl)
 
-.PRECIOUS: $(obj)/aesp8-ppc.S $(obj)/ghashp8-ppc.S
+clean-files := aesp8-ppc.S ghashp8-ppc.S
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] powerpc: crypto/vmx: various build fixes
  2016-11-16 15:11 [PATCH] powerpc: crypto/vmx: various build fixes Naveen N. Rao
@ 2016-11-17  0:51 ` Michael Ellerman
  2016-11-17 13:03     ` Herbert Xu
  2016-11-17 15:40   ` Herbert Xu
  1 sibling, 1 reply; 8+ messages in thread
From: Michael Ellerman @ 2016-11-17  0:51 UTC (permalink / raw)
  To: Naveen N. Rao, Leonidas S. Barbosa, Herbert Xu
  Cc: Paulo Flabiano Smorigo, linux-crypto, linuxppc-dev

"Naveen N. Rao" <naveen.n.rao@linux.vnet.ibm.com> writes:

> First up, clean up the generated .S files properly on a 'make clean'.
> Secondly, force re-generation of these files when building for different
> endian-ness than what was built previously. Finally, generate the new
> files in the build tree, rather than the source tree.
>
> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
> Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
> ---
> Michael,
> I've added your SOB here though you didn't explicitly include it in your
> previous mail. I hope that's fine from your end.

Yeah that's fine, thanks.

Crypto patches usually have a subject like:

crypto: vmx - Various build fixes


But maybe Herbert can fix it up for you when he applies this.

cheers

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] powerpc: crypto/vmx: various build fixes
  2016-11-17  0:51 ` Michael Ellerman
@ 2016-11-17 13:03     ` Herbert Xu
  0 siblings, 0 replies; 8+ messages in thread
From: Herbert Xu @ 2016-11-17 13:03 UTC (permalink / raw)
  To: Michael Ellerman
  Cc: Leonidas S. Barbosa, Naveen N. Rao, linuxppc-dev, linux-crypto,
	Paulo Flabiano Smorigo

On Thu, Nov 17, 2016 at 11:51:56AM +1100, Michael Ellerman wrote:
>
> But maybe Herbert can fix it up for you when he applies this.

Sure I can fix it up.

Cheers,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] powerpc: crypto/vmx: various build fixes
@ 2016-11-17 13:03     ` Herbert Xu
  0 siblings, 0 replies; 8+ messages in thread
From: Herbert Xu @ 2016-11-17 13:03 UTC (permalink / raw)
  To: Michael Ellerman
  Cc: Naveen N. Rao, Leonidas S. Barbosa, Paulo Flabiano Smorigo,
	linux-crypto, linuxppc-dev

On Thu, Nov 17, 2016 at 11:51:56AM +1100, Michael Ellerman wrote:
>
> But maybe Herbert can fix it up for you when he applies this.

Sure I can fix it up.

Cheers,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] powerpc: crypto/vmx: various build fixes
  2016-11-17 13:03     ` Herbert Xu
@ 2016-11-17 14:22       ` Naveen N. Rao
  -1 siblings, 0 replies; 8+ messages in thread
From: Naveen N. Rao @ 2016-11-17 14:22 UTC (permalink / raw)
  To: Herbert Xu
  Cc: Leonidas S. Barbosa, linuxppc-dev, linux-crypto, Paulo Flabiano Smorigo

On 2016/11/17 09:03PM, Herbert Xu wrote:
> On Thu, Nov 17, 2016 at 11:51:56AM +1100, Michael Ellerman wrote:
> > 
> > Crypto patches usually have a subject like:
> > 
> > crypto: vmx - Various build fixes

Ok.

> >
> > But maybe Herbert can fix it up for you when he applies this.
> 
> Sure I can fix it up.

Thanks,
- Naveen

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] powerpc: crypto/vmx: various build fixes
@ 2016-11-17 14:22       ` Naveen N. Rao
  0 siblings, 0 replies; 8+ messages in thread
From: Naveen N. Rao @ 2016-11-17 14:22 UTC (permalink / raw)
  To: Herbert Xu
  Cc: Michael Ellerman, Leonidas S. Barbosa, Paulo Flabiano Smorigo,
	linux-crypto, linuxppc-dev

On 2016/11/17 09:03PM, Herbert Xu wrote:
> On Thu, Nov 17, 2016 at 11:51:56AM +1100, Michael Ellerman wrote:
> > 
> > Crypto patches usually have a subject like:
> > 
> > crypto: vmx - Various build fixes

Ok.

> >
> > But maybe Herbert can fix it up for you when he applies this.
> 
> Sure I can fix it up.

Thanks,
- Naveen

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] powerpc: crypto/vmx: various build fixes
  2016-11-16 15:11 [PATCH] powerpc: crypto/vmx: various build fixes Naveen N. Rao
@ 2016-11-17 15:40   ` Herbert Xu
  2016-11-17 15:40   ` Herbert Xu
  1 sibling, 0 replies; 8+ messages in thread
From: Herbert Xu @ 2016-11-17 15:40 UTC (permalink / raw)
  To: Naveen N. Rao
  Cc: Leonidas S. Barbosa, linuxppc-dev, linux-crypto, Paulo Flabiano Smorigo

On Wed, Nov 16, 2016 at 08:41:46PM +0530, Naveen N. Rao wrote:
> First up, clean up the generated .S files properly on a 'make clean'.
> Secondly, force re-generation of these files when building for different
> endian-ness than what was built previously. Finally, generate the new
> files in the build tree, rather than the source tree.
> 
> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
> Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>

Patch applied.  Thanks.
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] powerpc: crypto/vmx: various build fixes
@ 2016-11-17 15:40   ` Herbert Xu
  0 siblings, 0 replies; 8+ messages in thread
From: Herbert Xu @ 2016-11-17 15:40 UTC (permalink / raw)
  To: Naveen N. Rao
  Cc: Leonidas S. Barbosa, Michael Ellerman, Paulo Flabiano Smorigo,
	linux-crypto, linuxppc-dev

On Wed, Nov 16, 2016 at 08:41:46PM +0530, Naveen N. Rao wrote:
> First up, clean up the generated .S files properly on a 'make clean'.
> Secondly, force re-generation of these files when building for different
> endian-ness than what was built previously. Finally, generate the new
> files in the build tree, rather than the source tree.
> 
> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
> Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>

Patch applied.  Thanks.
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-11-17 15:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-16 15:11 [PATCH] powerpc: crypto/vmx: various build fixes Naveen N. Rao
2016-11-17  0:51 ` Michael Ellerman
2016-11-17 13:03   ` Herbert Xu
2016-11-17 13:03     ` Herbert Xu
2016-11-17 14:22     ` Naveen N. Rao
2016-11-17 14:22       ` Naveen N. Rao
2016-11-17 15:40 ` Herbert Xu
2016-11-17 15:40   ` Herbert Xu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.