mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Vladimir Saveliev <vs@namesys.com>
To: Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.6.9-rc2-mm2
Date: Thu, 23 Sep 2004 17:15:29 +0400	[thread overview]
Message-ID: <1095945329.6117.25.camel@tribesman.namesys.com> (raw)
In-Reply-To: <20040922131210.6c08b94c.akpm@osdl.org>

[-- Attachment #1: Type: text/plain, Size: 680 bytes --]

Hello

On Thu, 2004-09-23 at 00:12, Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.9-rc2/2.6.9-rc2-mm2/
> 

> +reiser4-plugin_set_done-memleak-fix.patch
> +reiser4-init-max_atom_flusers.patch
> +reiser4-parse-options-reduce-stack-usage.patch
> +reiser4-sparce64-warning-fix.patch
> +reiser4-x86_64-warning-fix.patch
> +reiser4-fix-mount-option-parsing.patch
> +reiser4-parse-option-cleanup.patch
> +reiser4-comment-fix.patch
> +reiser4-fill_super-improve-warning.patch
> +reiser4-disable-pseudo.patch
> +reiser4-disable-repacker.patch
> 

Sorry, please replace reiser4-disable-repacker.patch with the attached
one.

>  reiser4 update
> 


[-- Attachment #2: reiser4-disable-repacker.patch --]
[-- Type: text/plain, Size: 1212 bytes --]


This disables reiser4 online repacker.


 fs/reiser4/repacker.c |    6 ++++++
 1 files changed, 6 insertions(+)

diff -puN fs/reiser4/repacker.c~reiser4-disable-repacker fs/reiser4/repacker.c
--- linux-2.6.9-rc2-mm1/fs/reiser4/repacker.c~reiser4-disable-repacker	2004-09-18 13:07:01.852728941 +0400
+++ linux-2.6.9-rc2-mm1-vs/fs/reiser4/repacker.c	2004-09-23 14:01:45.738053471 +0400
@@ -624,6 +624,7 @@ static void done_repacker_sysfs_interfac
 
 reiser4_internal int init_reiser4_repacker (struct super_block *super)
 {
+#if defined(REISER4_REPACKER)
 	reiser4_super_info_data * sinfo = get_super_private(super);
 
 	assert ("zam-946", sinfo->repacker == NULL);
@@ -640,10 +641,14 @@ reiser4_internal int init_reiser4_repack
 	kcond_init(&sinfo->repacker->cond);
 
 	return init_repacker_sysfs_interface(super);
+#else
+	return 0;
+#endif /*REISER4_REPACKER*/
 }
 
 reiser4_internal void done_reiser4_repacker (struct super_block *super)
 {
+#if defined(REISER4_REPACKER)
 	reiser4_super_info_data * sinfo = get_super_private(super);
 	struct repacker * repacker;
 
@@ -658,4 +663,5 @@ reiser4_internal void done_reiser4_repac
 
 	kfree(repacker);
 	sinfo->repacker = NULL;
+#endif /*REISER4_REPACKER*/
 }

_

  parent reply	other threads:[~2004-09-23 13:15 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-09-22 20:12 2.6.9-rc2-mm2 Andrew Morton
2004-09-22 20:48 ` 2.6.9-rc2-mm2 Jesse Barnes
2004-09-22 20:54   ` 2.6.9-rc2-mm2 Andrew Morton
2004-09-22 21:05     ` 2.6.9-rc2-mm2 Jesse Barnes
2004-09-22 20:55   ` 2.6.9-rc2-mm2 William Lee Irwin III
2004-09-22 20:59   ` 2.6.9-rc2-mm2 Jesse Barnes
2004-09-22 21:04     ` 2.6.9-rc2-mm2 Andrew Morton
2004-09-22 21:10       ` 2.6.9-rc2-mm2 Jesse Barnes
2004-09-22 21:02 ` 2.6.9-rc2-mm2 Stefan Seyfried
2004-09-22 22:27 ` 2.6.9-rc2-mm2 Peter Williams
2004-09-23  1:47 ` 2.6.9-rc2-mm2 Nuno Ferreira
2004-09-23  2:03   ` 2.6.9-rc2-mm2 Andrew Morton
2004-09-23  2:58     ` 2.6.9-rc2-mm2 Herbert Xu
2004-09-23  9:29       ` 2.6.9-rc2-mm2 Nuno Ferreira
2004-09-23  3:00 ` 2.6.9-rc2-mm2 Nick Piggin
2004-09-23  5:07 ` 2.6.9-rc2-mm2 William Lee Irwin III
2004-09-23  5:27   ` 2.6.9-rc2-mm2 William Lee Irwin III
2004-09-23  5:46   ` 2.6.9-rc2-mm2 Peter Williams
2004-09-23  6:01     ` 2.6.9-rc2-mm2 William Lee Irwin III
2004-09-23 13:15 ` Vladimir Saveliev [this message]
2004-09-23 15:51   ` 2.6.9-rc2-mm2 (disable repacker) Mike Houston
2004-09-23 16:48 ` 2.6.9-rc2-mm2 William Lee Irwin III
2004-09-23 17:59 ` 2.6.9-rc2-mm2 Akinobu Mita
2004-09-24  0:53 ` 2.6.9-rc2-mm2 [u] Martin Schlemmer [c]
2004-10-02  7:44 ` 2.6.9-rc2-mm2 Jaakko Hyvätti
2004-10-02  7:49   ` 2.6.9-rc2-mm2 Andrew Morton
2004-10-02 18:21     ` 2.6.9-rc2-mm2 Jaakko Hyvätti
2004-10-08 11:24     ` 2.6.9-rc2-mm2 William Lee Irwin III
     [not found] <747804697@toto.iv>
2004-09-23  0:39 ` 2.6.9-rc2-mm2 Peter Chubb
2004-09-23  0:43   ` 2.6.9-rc2-mm2 Jesse Barnes
2004-09-23  6:23     ` 2.6.9-rc2-mm2 Andrew Morton
2004-09-23  0:49   ` 2.6.9-rc2-mm2 Andrew Morton
2004-09-23 16:10 2.6.9-rc2-mm2 Luck, Tony
2004-09-23 18:31 ` 2.6.9-rc2-mm2 Andrew Morton
2004-09-24  6:27 2.6.9-rc2-mm2 Tim Krieglstein

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=1095945329.6117.25.camel@tribesman.namesys.com \
    --to=vs@namesys.com \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome