public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.5.2-pre8: fs/ext3/super.c compile error
@ 2002-01-05  5:58 Frank Davis
  2002-01-05  6:28 ` Andrew Morton
  0 siblings, 1 reply; 2+ messages in thread
From: Frank Davis @ 2002-01-05  5:58 UTC (permalink / raw)
  To: linux-kernel; +Cc: fdavis

Hello all,
  I haven't seen the following posted.
While 'make bzImage', I received the following compile error:
...
super.c: In function 'make_rdonly':
super.c:59: invalid operands to binary !=
super.c:62: invalid operands to binary +
make[3]: *** [super.o] Error 1
make[3]: Leaving directory '/usr/src/linux/fs/ext3'
...

Regards,
Frank


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

* Re: 2.5.2-pre8: fs/ext3/super.c compile error
  2002-01-05  5:58 2.5.2-pre8: fs/ext3/super.c compile error Frank Davis
@ 2002-01-05  6:28 ` Andrew Morton
  0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2002-01-05  6:28 UTC (permalink / raw)
  To: Frank Davis; +Cc: linux-kernel, Linus Torvalds, Dave Jones

Frank Davis wrote:
> 
> Hello all,
>   I haven't seen the following posted.
> While 'make bzImage', I received the following compile error:
> ...
> super.c: In function 'make_rdonly':
> super.c:59: invalid operands to binary !=
> super.c:62: invalid operands to binary +
> make[3]: *** [super.o] Error 1
> make[3]: Leaving directory '/usr/src/linux/fs/ext3'
> ...

This is a piece of debug code - it's enabled by CONFIG_JBD_DEBUG,
and you can just disable that option to make the error go away.

The code in question is designed to tell the disk device driver
to start silently discarding all writes to the underlying device a
certain number of seconds after the filesystem is mounted.  This simulates
a machine crash.  It is for scripted crash+recovery testing.

The fix is:

--- linux-2.5.2-pre7/fs/ext3/super.c	Fri Jan  4 18:48:43 2002
+++ 25/fs/ext3/super.c	Fri Jan  4 22:22:03 2002
@@ -56,10 +56,10 @@ int journal_no_write[2];
 
 static void make_rdonly(kdev_t dev, int *no_write)
 {
-	if (dev) {
+	if (kdev_val(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  6:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-05  5:58 2.5.2-pre8: fs/ext3/super.c compile error Frank Davis
2002-01-05  6:28 ` Andrew Morton

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