From: Will Smith <will@willsmith.org>
To: reiserfs-list@namesys.com
Subject: [patch] measurefs.reiser4 --data-frag does not run
Date: Mon, 13 Sep 2004 16:53:56 +0800 [thread overview]
Message-ID: <41456024.8070103@willsmith.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 279 bytes --]
Minor patch, measurefs.reiser4-v1.0.0's --data-frag
was always returning -ENOMEM and not running, due to missing
curly brackets.
Will Smith
--
1400 high resolution textures - http://www.mayang.com/textures
Panoramic travel photos - http://www.willsmith.org/pano
[-- Attachment #2: measurefs_datafrag_enomem_bug.patch --]
[-- Type: text/plain, Size: 428 bytes --]
--- measurefs.c.orig 2004-09-13 16:38:00.128518704 +0800
+++ measurefs.c 2004-09-13 16:35:36.695323864 +0800
@@ -653,9 +653,10 @@ errno_t measurefs_data_frag(reiser4_fs_t
aal_gauge_create(aux_gauge_handlers[GT_PROGRESS],
NULL, NULL, 0, "Data fragmentation "
"... ");
- if (!frag_hint.gauge)
+ if (!frag_hint.gauge) {
aal_fatal("Out of memory!");
return -ENOMEM;
+ }
}
frag_hint.flags = flags;
reply other threads:[~2004-09-13 8:53 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=41456024.8070103@willsmith.org \
--to=will@willsmith.org \
--cc=reiserfs-list@namesys.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.