LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: joejamesjoyce@aol.com
To: linux-kernel@vger.kernel.org
Subject: Re: REISER4: Attention Edward Shishkin - reiser4progs-1.0.6
Date: Thu, 27 Dec 2007 05:35:51 -0500 [thread overview]
Message-ID: <8CA168B6336FDA2-410-3BAA@FWM-M20.sysops.aol.com> (raw)
In-Reply-To: <8CA163DE6CB2026-5E4-FCD@WEBMAIL-MC02.sysops.aol.com>
Sorry about the repeat.
-----Original Message-----
From: joejamesjoyce@aol.com
To: linux-kernel@vger.kernel.org
Sent: Thu, 27 Dec 2007 1:21 am
Subject: REISER4: Attention Edward Shishkin - reiser4progs-1.0.6
REISER4: Attention Edward Shishkin (reiser4progs-1.0.6)
-------------------------------------------------------------------------
-
Hi Edward, it has been pointed out that you CHANGED reiser4progs-1.0.6
in your version
http://chichkin_i.zelnet.ru/namesys/reiser4progs-1.0.6.tar.gz
from the version previously supplied by namesys.com
ftp://ftp.namesys.com/pub/reiser4progs/reiser4progs-1.0.6.tar.gz
Does this have any relevance for REISER4 that I should know about?
I have included a diff between the two versions.
-------------------------------------------------------------------------
-
diff -pruN reiser4progs-1.0.6-namesys/include/reiser4/plugin.h
reiser4progs-1.0.6-shinkin/include/reiser4/plugin.h
--- reiser4progs-1.0.6-namesys/include/reiser4/plugin.h 2006-11-01
14:50:34.000000000 +0000
+++ reiser4progs-1.0.6-shinkin/include/reiser4/plugin.h 2007-02-27
15:25:16.000000000 +0000
@@ -273,11 +273,10 @@ enum reiser4_crypto_id {
enum reiser4_compress_mode_id {
CMODE_NONE_ID = 0x0,
- CMODE_COL8_ID = 0x1,
- CMODE_COL16_ID = 0x2,
- CMODE_COL32_ID = 0x3,
+ CMODE_LATTD_ID = 0x1,
+ CMODE_ULTIM_ID = 0x2,
+ CMODE_FORCE_ID = 0x3,
CMODE_CONVX_ID = 0x4,
- CMODE_FORCE_ID = 0x5,
CMODE_LAST_ID
};
diff -pruN reiser4progs-1.0.6-namesys/libreiser4/factory.c
reiser4progs-1.0.6-shinkin/libreiser4/factory.c
--- reiser4progs-1.0.6-namesys/libreiser4/factory.c 2006-11-01
14:50:34.000000000 +0000
+++ reiser4progs-1.0.6-shinkin/libreiser4/factory.c 2007-02-27
15:40:43.000000000 +0000
@@ -269,11 +269,10 @@ errno_t reiser4_factory_init(void) {
__load_plug(gzip1);
__load_plug(nocompress);
- __load_plug(col8);
- __load_plug(col16);
- __load_plug(col32);
- __load_plug(convx);
+ __load_plug(lattd);
+ __load_plug(ultim);
__load_plug(force);
+ __load_plug(convx);
__load_plug(clust64);
__load_plug(clust32);
diff -pruN reiser4progs-1.0.6-namesys/libreiser4/profile.c
reiser4progs-1.0.6-shinkin/libreiser4/profile.c
--- reiser4progs-1.0.6-namesys/libreiser4/profile.c 2006-11-01
14:50:34.000000000 +0000
+++ reiser4progs-1.0.6-shinkin/libreiser4/profile.c 2007-01-20
11:08:31.000000000 +0000
@@ -145,7 +145,7 @@ reiser4_profile_t defprof = {
.hidden = 0,
.max = CMODE_LAST_ID,
#endif
- .id = {CMODE_COL8_ID, 0, CMODE_PLUG_TYPE},
+ .id = {CMODE_CONVX_ID, 0, CMODE_PLUG_TYPE},
},
[PROF_CRYPTO] = {
#ifndef ENABLE_MINIMAL
diff -pruN reiser4progs-1.0.6-namesys/plugin/compress/compress_mode.c
reiser4progs-1.0.6-shinkin/plugin/compress/compress_mode.c
---
reiser4progs-1.0.6-namesys/plugin/compress/compress_mode.c 2006-11-01
14:50:34.000000000 +0000
+++
reiser4progs-1.0.6-shinkin/plugin/compress/compress_mode.c 2007-02-27
15:32:30.000000000 +0000
@@ -19,22 +19,22 @@ reiser4_plug_t nocompress_plug = {
.desc = "'Don't compress' compression mode plugin.",
};
-reiser4_plug_t col8_plug = {
- .id = {CMODE_COL8_ID, 0, CMODE_PLUG_TYPE},
- .label = "col8",
- .desc = "'Check on lattice-8' compression mode plugin.",
+reiser4_plug_t lattd_plug = {
+ .id = {CMODE_LATTD_ID, 0, CMODE_PLUG_TYPE},
+ .label = "latt",
+ .desc = "'Check on dynamic lattice' compression mode plugin.",
};
-reiser4_plug_t col16_plug = {
- .id = {CMODE_COL16_ID, 0, CMODE_PLUG_TYPE},
- .label = "col16",
- .desc = "'Check on lattice-16' compression mode plugin.",
+reiser4_plug_t ultim_plug = {
+ .id = {CMODE_ULTIM_ID, 0, CMODE_PLUG_TYPE},
+ .label = "ultim",
+ .desc = "'Check ultimately' compression mode plugin.",
};
-reiser4_plug_t col32_plug = {
- .id = {CMODE_COL32_ID, 0, CMODE_PLUG_TYPE},
- .label = "col32",
- .desc = "'Check on lattice-32' compression mode plugin.",
+reiser4_plug_t force_plug = {
+ .id = {CMODE_FORCE_ID, 0, CMODE_PLUG_TYPE},
+ .label = "force",
+ .desc = "'Compress evrything' compression mode plugin.",
};
reiser4_plug_t convx_plug = {
@@ -42,11 +42,4 @@ reiser4_plug_t convx_plug = {
.label = "conv",
.desc = "'Convert to extent' compression mode plugin.",
};
-
-reiser4_plug_t force_plug = {
- .id = {CMODE_FORCE_ID, 0, CMODE_PLUG_TYPE},
- .label = "force",
- .desc = "'Compress evrything' compression mode plugin.",
-};
-
#endif
________________________________________________________________________
More new features than ever. Check out the new AOL Mail ! -
http://webmail.aol.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel"
in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
________________________________________________________________________
More new features than ever. Check out the new AOL Mail ! -
http://webmail.aol.com
next prev parent reply other threads:[~2007-12-27 10:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-12-27 1:21 joejamesjoyce
2007-12-27 10:35 ` joejamesjoyce [this message]
2008-02-12 10:33 ` HANS REISER TRIAL: Attention Edward Shishkin joejamesjoyce
2008-02-13 7:07 ` HANS REISER TRIAL: Collections of Press Reports joejamesjoyce
2008-02-13 7:11 ` Willy Tarreau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8CA168B6336FDA2-410-3BAA@FWM-M20.sysops.aol.com \
--to=joejamesjoyce@aol.com \
--cc=linux-kernel@vger.kernel.org \
--subject='Re: REISER4: Attention Edward Shishkin - reiser4progs-1.0.6' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).