summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Remove Ryuta Kon from NTT shss referenceKota Tsuyuzaki2016-10-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | He is not working at swift/pyeclib anymore and he doesn't want to keep his name in the README.md which causes contacts/questions to him. Related-change: I0d76fa97dbb8c7f65b1dfa7cf3d0f1771893e1ef Change-Id: I97607915a5296359eb2142c6cd3eac7b1ee6a74a
* | | | Merge "Fix a typo in the erasurecode file"Jenkins2016-10-181-1/+1
|\ \ \ \ | |_|/ / |/| | |
| * | | Fix a typo in the erasurecode filegengchc22016-08-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | there is a spelling error,"instace" should be "instance" Change-Id: Iddba9e334bf55cc1e7d5cb397db5f3dfc5aac584
* | | | Add get_by_desc ret val handling to get_fragment_sizeKota Tsuyuzaki2016-09-072-0/+3
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | As well as any other callers, libersurecode_get_fragment_size should handle the return value of liberasurecode_get_backend_instance_by_desc. Otherwise, get_by_desc can return NULL and it causes an invalid memory access in librerasurecode_get_fragment_size. Change-Id: I489f8b5d049610863b5e0b477b6ff70ead245b55
* | | Merge "Move other-requirements.txt to bindep.txt"Jenkins2016-08-231-0/+0
|\ \ \
| * | | Move other-requirements.txt to bindep.txtAndreas Jaeger2016-08-121-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The default filename for documenting binary dependencies has been changed from "other-requirements.txt" to "bindep.txt" with the release of bindep 2.1.0. While the previous name is still supported, it will be deprecated. Move the file around to follow this change. Note that this change is self-testing, the OpenStack CI infrastructure will use a "bindep.txt" file to setup nodes for testing. For more information about bindep, see also: http://docs.openstack.org/infra/manual/drivers.html#package-requirements http://docs.openstack.org/infra/bindep/ As well as this announcement: http://lists.openstack.org/pipermail/openstack-dev/2016-August/101590.html Change-Id: I7231bc3c3e08b0f912919d1d2a4900d4074ad9f7
* | | | Merge "Changed homepage to new one"Jenkins2016-08-181-1/+1
|\ \ \ \ | |/ / / |/| | |
| * | | Changed homepage to new oneOndřej Nový2016-06-011-1/+1
| |/ / | | | | | | | | | Change-Id: I684294b2eb4362820fe900f7bdd4b589ec94f7db
* | | Add valgind to other-requirements.txtKota Tsuyuzaki2016-07-131-0/+1
| | | | | | | | | | | | | | | | | | This is needed to run unit test with "make valgrind-test" Change-Id: I3c2979c2f3cd141ff8db3e6358fa356b0581e599
* | | Merge "add other-requirements.txt"Jenkins2016-07-121-0/+9
|\ \ \ | | |/ | |/|
| * | add other-requirements.txtThiago da Silva2016-06-031-0/+9
| |/ | | | | | | | | Change-Id: I81b30e4f2a2b9bf9be53d02b9230166e5248862d Signed-off-by: Thiago da Silva <thiago@redhat.com>
* | Remove version value from README.mdKota Tsuyuzaki2016-06-031-1/+1
|/ | | | | | | | In recent releases, the supported backends are not changed so probably we can remove the version from the description to avoid a pain that we have to change README.md for each release. Change-Id: Ica88629abe442c11c1036e22b8d143e1adc9b443
* Add NEWS and README back1.2.0Thiago da Silva2016-05-272-0/+2
| | | | | | | turns out these files are required by automake Change-Id: Idc226689803534242625275cfefa8e6e9e82c7e7 Signed-off-by: Thiago da Silva <thiago@redhat.com>
* Release 1.2.0Thiago da Silva2016-05-277-7/+25
| | | | | Change-Id: I63654a62749ab9e41901db6ffb4386db6d9e8a5d Signed-off-by: Thiago da Silva <thiago@redhat.com>
* Merged in frag_metadata_checksum (pull request #20)Kevin Greenan2016-03-107-46/+148
|\ | | | | | | Fragment metadata checksumming support
| * Fragment metadata checksumming supportfrag_metadata_checksumTushar Gohad2016-03-107-46/+148
|/
* Add NULL instance check to backend_open()Tushar Gohad2016-03-101-0/+2
|
* Merged in timuralp/liberasurecode/check_available_backend (pull request #22)Tushar Gohad2016-03-094-20/+60
|\ | | | | | | Add a method to check if a backend is present.
| * Add a method to check if a backend is present.Timur Alperovich2016-03-084-20/+60
|/ | | | | | | Uses dlopen to check if a backend is present. This may be used by consumers who need to check which backends are present on a system. Issue #23
* README.md edited online with BitbucketTushar Gohad2016-03-071-2/+2
|
* Merged in dirk_m_ller/liberasurecode/remove_params (pull request #21)Tushar Gohad2016-03-052-2/+2
|\ | | | | | | Fix prototype declaration / definition mismatch (issue #25)
| * Fix prototype declaration / definition mismatch (issue #25)Dirk Mueller2016-03-042-2/+2
|/
* Don't use PATH_MAX const.Ondřej Nový2016-02-281-2/+3
| | | | | | | There are systems, for example Hurd, which doesn't define this constant because there are no such limit. See [1] link for explanation. [1] http://www.gnu.org/software/hurd/community/gsoc/project_ideas/maxpath.html
* Check frag idx validity when verifying frag metadataTushar Gohad2016-02-142-2/+53
| | | | ... also add related test code
* Fix segfault when fragment index is out of rangeTushar Gohad2016-02-141-1/+1
| | | | | | ... (in a corrupt/invalid fragment scenario) Fixes issue #21
* Look up version number in version header (part 2)Tushar Gohad2015-12-101-7/+9
|
* Doxygen related cleanupTushar Gohad2015-12-101-14/+14
|
* Minor doc automake fixesTushar Gohad2015-12-101-3/+3
|
* Make libtool archive references relative to builddirTushar Gohad2015-12-101-6/+6
|
* Display build config at the end of configure runTushar Gohad2015-12-101-0/+15
|
* Get version from liberasurecode version headerTushar Gohad2015-12-104-25/+38
| | | | ... (keep version in one place)
* Use absolute path for get_flags test programTushar Gohad2015-12-101-1/+1
| | | | | ... fixes issues with builds where configure is invoked from a directory other than the topdir
* Add missing pkg-config defns where requiredTushar Gohad2015-12-101-0/+23
|
* Fix minor revTushar Gohad2015-12-102-4/+4
|
* Include major API version in pkg-config file nameTushar Gohad2015-12-103-5/+29
|
* Revert "Log to syslog and stderr by default"v1.1.1Tushar Gohad2015-12-041-1/+1
| | | | This reverts commit 21ed77fed2e31ec5183460a6bd9ff4592140b409.
* Create includedir on call to install-exec-hookChris Lamb2015-12-021-1/+2
| | | | | | | | | | | | | | | | Debian maintainers reported that liberasurecode could not be built reproducibly. What happens is that erasurecode_version.h headers are non-determinstically installed in the target directory depending on the system clock. This is due to debian/tmp/usr/include not being created and the install-exec-hook ignores errors. The attached patch ensures target ${includedir} exists and therefore the headers will always be there. Signed-off-by: Chris Lamb <lamby@debian.org>
* README.md edited online with BitbucketTushar Gohad2015-11-191-27/+32
|
* Update AUTHORS with Debian/Ubuntu contributorsTushar Gohad2015-11-141-1/+2
|
* Ensure ec backends can actually be loaded.James Page2015-11-147-7/+7
| | | | | | | Use the actual soname rather than the fully unversioned name, ensuring that systems that don't have -dev packages actually work. Signed-off-by: James Page <james.page@ubuntu.com>
* README update for build/install dependenciesTushar Gohad2015-10-251-0/+11
|
* Release 1.1.0v1.1.0Tushar Gohad2015-10-205-3/+15
|
* Fix liberasurecode include path in pkgconfigTushar Gohad2015-10-201-1/+1
|
* Make doxygen recurse into source/include directoriesTushar Gohad2015-10-201-4/+3
|
* Merged header_symlinks into masterTushar Gohad2015-09-2215-38/+105
|\
| * Split helpers.h include for backward compatibilityTushar Gohad2015-09-2214-40/+96
| | | | | | | | | | | | | | Users of liberasurecode <= 1.0.7 used alloc/free helpers (which they shouldn't have). This change is to make sure we are still able to those older revs of programs and they work with newer liberasurecode.
| * Create header symlinks in std locations for backward compatTushar Gohad2015-09-202-0/+11
|/
* Eliminate erasurecode_stdinc.h dependency on log.hTushar Gohad2015-09-184-1/+5
|
* Move fragment_header defn to main erasurecode headerTushar Gohad2015-09-172-26/+25
|
* Fixing Issue #19 by stubbing out Jerasures uninit function.Kevin Greenan2015-09-121-0/+15
| | | | | | | | | | If the underlying jerasure implementation is old (pre-jerasure.org), then it will not contain an uninit function for the underlying GF object. Since this is only used in alg_sig, which is not used by anything else at the moment, we stub it out if it does not exist. Once we make the change to have alg_sig use the internal GF functions, this whole problem goes away.