From: zooko Date: Mon, 5 Jan 2009 17:20:57 +0000 (+0530) Subject: docs: update docs a little X-Git-Url: https://git.rkrishnan.org/configuration.rst?a=commitdiff_plain;h=81d00c567e2733dd2f6f39e9f42cdedc7924e15f;p=tahoe-lafs%2Fzfec.git docs: update docs a little Ignore-this: fd7bd93bcb6a38204a5415174c0a8331 darcs-hash:035d050585b9a4be720208b8f4f1f3ea7bd49126 --- diff --git a/zfec/README.txt b/zfec/README.txt index 7c9aca6..72bbcaa 100644 --- a/zfec/README.txt +++ b/zfec/README.txt @@ -113,8 +113,8 @@ Guard" for encryption or "sha256sum" for integrity. It is important to do things in order: first archive, then compress, then either encrypt or sha256sum, then erasure code. Note that if GNU Privacy Guard is used for privacy, then it will also ensure integrity, so the use of sha256sum is unnecessary in that case. -Note that if 7z is used for archiving then it also does very good compression, -so you don't need a separate compressor in that case. +Note that if 7z is used for archiving then it also does compression, so you +don't need a separate compressor in that case. * Performance Measurements diff --git a/zfec/zfec/fec.c b/zfec/zfec/fec.c index 04a7132..6763bdb 100644 --- a/zfec/zfec/fec.c +++ b/zfec/zfec/fec.c @@ -456,8 +456,8 @@ fec_new(unsigned k, unsigned n) { return retval; } -/* To make sure that we stay within cache in the inner loops of fec_encode() - and fec_decode(). */ +/* To make sure that we stay within cache in the inner loops of fec_encode(). (It would + probably help to also do this for fec_decode(). */ #ifndef STRIDE #define STRIDE 8192 #endif