File tree Expand file tree Collapse file tree 9 files changed +66
-4
lines changed Expand file tree Collapse file tree 9 files changed +66
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ The MIT License (MIT)
2
2
3
3
Copyright (c) 2014 Jean-Francois SMIGIELSKI
4
4
Copyright (c) 2015 Worldline
5
+ Copyright (c) 2015 OpenIO
5
6
6
7
Permission is hereby granted, free of charge, to any person obtaining a copy
7
8
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
- # redcurrant-librain
1
+ # Librain
2
2
3
- jerasure wrapper for Redcurrant's erasure code.
3
+ Jerasure wrapper as a Erasure code library for [ OpenIO ] ( http://openio.io ) [ Software Defined Storage ] ( https://github.com/open-io/oio-sds ) solution .
4
4
5
5
## Dependencies
6
6
7
- * https ://bitbucket. org/jimplank /gf-complete
8
- * https ://bitbucket. org/jimplank /jerasure
7
+ * http ://lab.jerasure. org/jerasure /gf-complete
8
+ * http ://lab.jerasure. org/jerasure /jerasure
9
9
10
10
## Installation
11
11
Original file line number Diff line number Diff line change
1
+ /* Librain, an erasure code library.
2
+ * Copyright (C) 2011 Worldline, original work.
3
+ * Copyright (C) 2015 OpenIO, modified as part of its software defined storage solution.
4
+ * All rights reserved.
5
+ *
6
+ * This software may be modified and distributed under the terms
7
+ * of the BSD license. See the LICENSE file for details.
8
+ */
9
+
1
10
#include <stdlib.h>
2
11
#include <assert.h>
3
12
#include <string.h>
Original file line number Diff line number Diff line change
1
+ /* Librain, an erasure code library.
2
+ * Copyright (C) 2011 Worldline, original work.
3
+ * Copyright (C) 2015 OpenIO, modified as part of its software defined storage solution.
4
+ * All rights reserved.
5
+ *
6
+ * This software may be modified and distributed under the terms
7
+ * of the BSD license. See the LICENSE file for details.
8
+ */
9
+
1
10
#ifndef LIBRAIN_H
2
11
#define LIBRAIN_H 1
3
12
Original file line number Diff line number Diff line change
1
+ /* Librain, an erasure code library.
2
+ * Copyright (C) 2011 Worldline, original work.
3
+ * Copyright (C) 2015 OpenIO, modified as part of its software defined storage solution.
4
+ * All rights reserved.
5
+ *
6
+ * This software may be modified and distributed under the terms
7
+ * of the BSD license. See the LICENSE file for details.
8
+ */
9
+
1
10
#include <stdlib.h>
2
11
#include <string.h>
3
12
#include <alloca.h>
Original file line number Diff line number Diff line change
1
+ /* Librain, an erasure code library.
2
+ * Copyright (C) 2011 Worldline, original work.
3
+ * Copyright (C) 2015 OpenIO, modified as part of its software defined storage solution.
4
+ * All rights reserved.
5
+ *
6
+ * This software may be modified and distributed under the terms
7
+ * of the BSD license. See the LICENSE file for details.
8
+ */
9
+
1
10
#include <stdlib.h>
2
11
#include <string.h>
3
12
Original file line number Diff line number Diff line change
1
+ /* Librain, an erasure code library.
2
+ * Copyright (C) 2011 Worldline, original work.
3
+ * Copyright (C) 2015 OpenIO, modified as part of its software defined storage solution.
4
+ * All rights reserved.
5
+ *
6
+ * This software may be modified and distributed under the terms
7
+ * of the BSD license. See the LICENSE file for details.
8
+ */
1
9
#ifndef LIBRAIN_test_utils_h
2
10
# define LIBRAIN_test_utils_h 1
3
11
Original file line number Diff line number Diff line change
1
+ /* Librain, an erasure code library.
2
+ * Copyright (C) 2011 Worldline, original work.
3
+ * Copyright (C) 2015 OpenIO, modified as part of its software defined storage solution.
4
+ * All rights reserved.
5
+ *
6
+ * This software may be modified and distributed under the terms
7
+ * of the BSD license. See the LICENSE file for details.
8
+ */
9
+
1
10
#include <stdlib.h>
2
11
#include <strings.h>
3
12
#include <stdio.h>
Original file line number Diff line number Diff line change
1
+ /* Librain, an erasure code library.
2
+ * Copyright (C) 2011 Worldline, original work.
3
+ * Copyright (C) 2015 OpenIO, modified as part of its software defined storage solution.
4
+ * All rights reserved.
5
+ *
6
+ * This software may be modified and distributed under the terms
7
+ * of the BSD license. See the LICENSE file for details.
8
+ */
1
9
#ifndef LIBRAIN_utils_h
2
10
#define LIBRAIN_utils_h 1
3
11
You can’t perform that action at this time.
0 commit comments