summaryrefslogtreecommitdiff
path: root/sys-fs/btrfs-progs/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-07-27 16:34:32 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-07-27 16:34:32 +0100
commit1a7ba844ad2c84ac4ba0d37f510285e778c7ffc4 (patch)
tree6b0c029b423e831d2d4be3aea13954182623d7f4 /sys-fs/btrfs-progs/files
parenta12f416baa722b8bda57c0d527fb28b3d06b2aeb (diff)
gentoo auto-resync : 27:07:2023 - 16:34:32
Diffstat (limited to 'sys-fs/btrfs-progs/files')
-rw-r--r--sys-fs/btrfs-progs/files/btrfs-progs-6.2.1-blake2-simd.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/sys-fs/btrfs-progs/files/btrfs-progs-6.2.1-blake2-simd.patch b/sys-fs/btrfs-progs/files/btrfs-progs-6.2.1-blake2-simd.patch
deleted file mode 100644
index f2531135c5c4..000000000000
--- a/sys-fs/btrfs-progs/files/btrfs-progs-6.2.1-blake2-simd.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-https://github.com/kdave/btrfs-progs/issues/589
-https://github.com/kdave/btrfs-progs/pull/591
-
-From c7e7e2568b073b6a501eef515f3a4b6402a71211 Mon Sep 17 00:00:00 2001
-From: Tino Mai <mai.tino@gmail.com>
-Date: Sun, 5 Mar 2023 18:15:52 +0100
-Subject: [PATCH] btrfs-progs: crypto: fix SSE2/SSE4.1 implementation of BLAKE2
-
---- a/crypto/blake2b-round.h
-+++ b/crypto/blake2b-round.h
-@@ -136,12 +136,6 @@
-
- #endif
-
--#if defined(HAVE_SSE41)
--#include "blake2b-load-sse41.h"
--#else
--#include "blake2b-load-sse2.h"
--#endif
--
- #define ROUND(r) \
- LOAD_MSG_ ##r ##_1(b0, b1); \
- G1(row1l,row2l,row3l,row4l,row1h,row2h,row3h,row4h,b0,b1); \
---- a/crypto/blake2b-sse2.c
-+++ b/crypto/blake2b-sse2.c
-@@ -30,6 +30,7 @@
- #include <x86intrin.h>
- #endif
-
-+#include "blake2b-load-sse2.h"
- #include "blake2b-round.h"
-
- static const uint64_t blake2b_IV[8] =
---- a/crypto/blake2b-sse41.c
-+++ b/crypto/blake2b-sse41.c
-@@ -34,6 +34,7 @@
- #include <x86intrin.h>
- #endif
-
-+#include "blake2b-load-sse41.h"
- #include "blake2b-round.h"
-
- static const uint64_t blake2b_IV[8] =
-