linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] crypto: mips: add poly1305-core.S to .gitignore
@ 2021-03-28  1:40 Ilya Lipnitskiy
  2021-03-28  1:50 ` [PATCH v2] " Ilya Lipnitskiy
  2021-03-28  2:39 ` [PATCH v3] " Ilya Lipnitskiy
  0 siblings, 2 replies; 4+ messages in thread
From: Ilya Lipnitskiy @ 2021-03-28  1:40 UTC (permalink / raw)
  To: Herbert Xu, David S. Miller, Thomas Bogendoerfer, linux-crypto,
	linux-mips, linux-kernel
  Cc: Ilya Lipnitskiy, Ard Biesheuvel

poly1305-core.S is an auto-generated file, so it should be ignored.

Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
---
 arch/mips/crypto/.gitignore | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 arch/mips/crypto/.gitignore

diff --git a/arch/mips/crypto/.gitignore b/arch/mips/crypto/.gitignore
new file mode 100644
index 000000000000..4882ba199071
--- /dev/null
+++ b/arch/mips/crypto/.gitignore
@@ -0,0 +1 @@
+poly1305-core.S
-- 
2.31.0


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

* [PATCH v2] crypto: mips: add poly1305-core.S to .gitignore
  2021-03-28  1:40 [PATCH] crypto: mips: add poly1305-core.S to .gitignore Ilya Lipnitskiy
@ 2021-03-28  1:50 ` Ilya Lipnitskiy
  2021-03-28  2:39 ` [PATCH v3] " Ilya Lipnitskiy
  1 sibling, 0 replies; 4+ messages in thread
From: Ilya Lipnitskiy @ 2021-03-28  1:50 UTC (permalink / raw)
  To: ilya.lipnitskiy
  Cc: ardb, davem, herbert, linux-crypto, linux-kernel, linux-mips, tsbogend

poly1305-core.S is an auto-generated file, so it should be ignored.

Fixes: a11d055e7a64 ("crypto: mips/poly1305 - incorporate OpenSSL/CRYPTOGAMS optimized implementation")
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
---
 arch/mips/crypto/.gitignore | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 arch/mips/crypto/.gitignore

diff --git a/arch/mips/crypto/.gitignore b/arch/mips/crypto/.gitignore
new file mode 100644
index 000000000000..4882ba199071
--- /dev/null
+++ b/arch/mips/crypto/.gitignore
@@ -0,0 +1 @@
+poly1305-core.S
-- 
2.31.0


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

* [PATCH v3] crypto: mips: add poly1305-core.S to .gitignore
  2021-03-28  1:40 [PATCH] crypto: mips: add poly1305-core.S to .gitignore Ilya Lipnitskiy
  2021-03-28  1:50 ` [PATCH v2] " Ilya Lipnitskiy
@ 2021-03-28  2:39 ` Ilya Lipnitskiy
  2021-03-29  9:26   ` Thomas Bogendoerfer
  1 sibling, 1 reply; 4+ messages in thread
From: Ilya Lipnitskiy @ 2021-03-28  2:39 UTC (permalink / raw)
  To: davem, herbert, linux-crypto, linux-kernel, linux-mips, tsbogend
  Cc: ilya.lipnitskiy, ardb

poly1305-core.S is an auto-generated file, so it should be ignored.

Fixes: a11d055e7a64 ("crypto: mips/poly1305 - incorporate OpenSSL/CRYPTOGAMS optimized implementation")
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
---
 arch/mips/crypto/.gitignore | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 arch/mips/crypto/.gitignore

diff --git a/arch/mips/crypto/.gitignore b/arch/mips/crypto/.gitignore
new file mode 100644
index 000000000000..0d47d4f21c6d
--- /dev/null
+++ b/arch/mips/crypto/.gitignore
@@ -0,0 +1,2 @@
+# SPDX-License-Identifier: GPL-2.0-only
+poly1305-core.S
-- 
2.31.0


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

* Re: [PATCH v3] crypto: mips: add poly1305-core.S to .gitignore
  2021-03-28  2:39 ` [PATCH v3] " Ilya Lipnitskiy
@ 2021-03-29  9:26   ` Thomas Bogendoerfer
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Bogendoerfer @ 2021-03-29  9:26 UTC (permalink / raw)
  To: Ilya Lipnitskiy
  Cc: davem, herbert, linux-crypto, linux-kernel, linux-mips, ardb

On Sat, Mar 27, 2021 at 07:39:43PM -0700, Ilya Lipnitskiy wrote:
> poly1305-core.S is an auto-generated file, so it should be ignored.
> 
> Fixes: a11d055e7a64 ("crypto: mips/poly1305 - incorporate OpenSSL/CRYPTOGAMS optimized implementation")
> Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
> Cc: Ard Biesheuvel <ardb@kernel.org>
> ---
>  arch/mips/crypto/.gitignore | 2 ++
>  1 file changed, 2 insertions(+)
>  create mode 100644 arch/mips/crypto/.gitignore

applied to mips-next.

Thomas.

-- 
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea.                                                [ RFC1925, 2.3 ]

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

end of thread, other threads:[~2021-03-29  9:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-28  1:40 [PATCH] crypto: mips: add poly1305-core.S to .gitignore Ilya Lipnitskiy
2021-03-28  1:50 ` [PATCH v2] " Ilya Lipnitskiy
2021-03-28  2:39 ` [PATCH v3] " Ilya Lipnitskiy
2021-03-29  9:26   ` Thomas Bogendoerfer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).