linux-um archives
 help / color / mirror / Atom feed
* [uml-devel] Humfs in 2.4.26-um1 bug
@ 2004-07-18 18:36 Piotr Neuman
  0 siblings, 0 replies; only message in thread
From: Piotr Neuman @ 2004-07-18 18:36 UTC (permalink / raw)
  To: user-mode-linux-devel

[-- 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)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-07-18 18:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-18 18:36 [uml-devel] Humfs in 2.4.26-um1 bug Piotr Neuman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox