From: Piotr Neuman <sikkh@wp.pl>
To: user-mode-linux-devel@lists.sourceforge.net
Subject: [uml-devel] Humfs in 2.4.26-um1 bug
Date: Sun, 18 Jul 2004 20:36:09 +0200 [thread overview]
Message-ID: <200407182036.09041.sikkh@wp.pl> (raw)
[-- Attachment #1: Type: text/plain, Size: 339 bytes --]
There is a bug in Humfs making ownerships() function misreport grup id (used
by stat). The fix is in humfs-2.4.26-2-meta_tdb-1.patch.bz2 already so if you
use that, there's no need to patch.
ps. I have seen lockups during 2.4.26-um2 bootup, redirecting all output (in
bash for example by "&>") to file or /dev/null ;-) is a quick fix.
[-- Attachment #2: humfs_gid_fix.patch --]
[-- Type: text/x-diff, Size: 330 bytes --]
Index: meta_fs.c
===================================================================
--- meta_fs.c (revision 736)
+++ meta_fs.c (working copy)
@@ -365,7 +365,7 @@
if(uid_out != NULL)
*uid_out = uid;
if(gid_out != NULL)
- *gid_out = uid;
+ *gid_out = gid;
if(type_out != NULL)
*type_out = type;
if(maj_out != NULL)
reply other threads:[~2004-07-18 18:35 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=200407182036.09041.sikkh@wp.pl \
--to=sikkh@wp.pl \
--cc=user-mode-linux-devel@lists.sourceforge.net \
/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