]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/isa-l/erasure_code/ec_highlevel_func.c
update sources to v12.1.1
[ceph.git] / ceph / src / isa-l / erasure_code / ec_highlevel_func.c
index d777921731eea0de94cd01b1e57e047a68a6f449..baaf20d4305a6ee27455e9c69ad3c552646df2b4 100644 (file)
 #include "erasure_code.h"
 #include "types.h"
 
-void ec_init_tables(int k, int rows, unsigned char *a, unsigned char *g_tbls)
-{
-       int i, j;
-
-       for (i = 0; i < rows; i++) {
-               for (j = 0; j < k; j++) {
-                       gf_vect_mul_init(*a++, g_tbls);
-                       g_tbls += 32;
-               }
-       }
-}
 
 void ec_encode_data_sse(int len, int k, int rows, unsigned char *g_tbls, unsigned char **data,
                        unsigned char **coding)