public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Patch?: linux-2.5.2-pre8/fs/ext3/super.c - variation of fix by Andrew Morton
@ 2002-01-05 12:35 Adam J. Richter
  2002-01-05 19:07 ` Andrew Morton
  0 siblings, 1 reply; 2+ messages in thread
From: Adam J. Richter @ 2002-01-05 12:35 UTC (permalink / raw)
  To: linux-kernel, akpm

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

	Andrwe Morton posted a fix for the compilation error in
linux-2.5.2-pre8/fs/ext3/super.c.  I have changed his test to
use "!kdev_none()" instead of "!kdev_val()".  It will compile
to the same opcodes, but I think this way is slightly more proper.
It may even make a difference some day if the internal representation
of kdev_val or kdev_none changes in a weird way so that
kdev_val(NODEV) returns non-zero, although I think this is unlikely.

-- 
Adam J. Richter     __     ______________   4880 Stevens Creek Blvd, Suite 104
adam@yggdrasil.com     \ /                  San Jose, California 95129-1034
+1 408 261-6630         | g g d r a s i l   United States of America
fax +1 408 261-6631      "Free Software For The Rest Of Us."

[-- Attachment #2: ext3.diff --]
[-- Type: text/plain, Size: 396 bytes --]

--- linux-2.5.2-pre8/fs/ext3/super.c	Fri Jan  4 19:40:37 2002
+++ linux/fs/ext3/super.c	Sat Jan  5 04:29:20 2002
@@ -56,10 +56,10 @@
 
 static void make_rdonly(kdev_t dev, int *no_write)
 {
-	if (dev) {
+	if (!kdev_none(dev)) {
 		printk(KERN_WARNING "Turning device %s read-only\n", 
 		       bdevname(dev));
-		*no_write = 0xdead0000 + dev;
+		*no_write = 0xdead0000 + kdev_val(dev);
 	}
 }
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-01-05 19:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-05 12:35 Patch?: linux-2.5.2-pre8/fs/ext3/super.c - variation of fix by Andrew Morton Adam J. Richter
2002-01-05 19:07 ` Andrew Morton

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