summaryrefslogtreecommitdiffstats
path: root/src/erasure-code/jerasure/jerasure_init.cc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
commit483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch)
treee5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/erasure-code/jerasure/jerasure_init.cc
parentInitial commit. (diff)
downloadceph-upstream.tar.xz
ceph-upstream.zip
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/erasure-code/jerasure/jerasure_init.cc')
-rw-r--r--src/erasure-code/jerasure/jerasure_init.cc37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/erasure-code/jerasure/jerasure_init.cc b/src/erasure-code/jerasure/jerasure_init.cc
new file mode 100644
index 00000000..4c8c0e49
--- /dev/null
+++ b/src/erasure-code/jerasure/jerasure_init.cc
@@ -0,0 +1,37 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+/*
+ * Ceph distributed storage system
+ *
+ * Copyright (C) 2013,2014 Cloudwatt <libre.licensing@cloudwatt.com>
+ * Copyright (C) 2014 Red Hat <contact@redhat.com>
+ *
+ * Author: Loic Dachary <loic@dachary.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ */
+
+#include "common/debug.h"
+#include "jerasure_init.h"
+
+extern "C" {
+#include "galois.h"
+}
+
+#define dout_context g_ceph_context
+
+extern "C" int jerasure_init(int count, int *words)
+{
+ for(int i = 0; i < count; i++) {
+ int r = galois_init_default_field(words[i]);
+ if (r) {
+ derr << "failed to galois_init_default_field(" << words[i] << ")" << dendl;
+ return -r;
+ }
+ }
+ return 0;
+}