Skip to content

Commit 08cf6f3

Browse files
committed
OpenIO integration.
* Updated dependencies. * Copyrights adapted to reflect the project's history.
1 parent 3c591f2 commit 08cf6f3

File tree

9 files changed

+66
-4
lines changed

9 files changed

+66
-4
lines changed

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ The MIT License (MIT)
22

33
Copyright (c) 2014 Jean-Francois SMIGIELSKI
44
Copyright (c) 2015 Worldline
5+
Copyright (c) 2015 OpenIO
56

67
Permission is hereby granted, free of charge, to any person obtaining a copy
78
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# redcurrant-librain
1+
# Librain
22

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.
44

55
## Dependencies
66

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
99

1010
## Installation
1111

librain.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
#include <stdlib.h>
211
#include <assert.h>
312
#include <string.h>

librain.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
#ifndef LIBRAIN_H
211
#define LIBRAIN_H 1
312

test_librain.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
#include <stdlib.h>
211
#include <string.h>
312
#include <alloca.h>

test_librain_legacy.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
#include <stdlib.h>
211
#include <string.h>
312

test_utils.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
*/
19
#ifndef LIBRAIN_test_utils_h
210
# define LIBRAIN_test_utils_h 1
311

utils.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
#include <stdlib.h>
211
#include <strings.h>
312
#include <stdio.h>

utils.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
*/
19
#ifndef LIBRAIN_utils_h
210
#define LIBRAIN_utils_h 1
311

0 commit comments

Comments
 (0)