* [PATCH] 2.4.19-pre8 UFS Compile Fix
@ 2002-05-20 1:49 Marc-Christian Petersen
2002-05-20 14:43 ` Måns Rullgård
0 siblings, 1 reply; 2+ messages in thread
From: Marc-Christian Petersen @ 2002-05-20 1:49 UTC (permalink / raw)
To: linux-kernel; +Cc: Marcelo Tosatti
[-- Attachment #1: Type: text/plain, Size: 444 bytes --]
Hi all,
UFS isn't buildable with 2.4.19-pre8.
Patch is attached, fixes missing 4 commas.
This is also CC'ed to Marcello.
If this was reported before, i don't get it.
--
Kind regards
Marc-Christian Petersen
http://sourceforge.net/projects/wolk
PGP/GnuPG Key: 1024D/408B2D54947750EC
Fingerprint: 8602 69E0 A9C2 A509 8661 2B0B 408B 2D54 9477 50EC
Key available at wwwkeys.pgp.net. Encrypted e-mail preferred.
[-- Attachment #2: ufs-compile-fix.patch --]
[-- Type: text/x-diff, Size: 983 bytes --]
--- linux-jp12/fs/ufs/super.c Wed May 15 00:27:01 2002
+++ linux/fs/ufs/super.c Mon May 20 00:32:22 2002
@@ -663,12 +663,12 @@
goto failed;
}
if (uspi->s_bsize < 512) {
- printk("ufs_read_super: fragment size %u is too small\n"
+ printk("ufs_read_super: fragment size %u is too small\n",
uspi->s_fsize);
goto failed;
}
if (uspi->s_bsize > 4096) {
- printk("ufs_read_super: fragment size %u is too large\n"
+ printk("ufs_read_super: fragment size %u is too large\n",
uspi->s_fsize);
goto failed;
}
@@ -678,12 +678,12 @@
goto failed;
}
if (uspi->s_bsize < 4096) {
- printk("ufs_read_super: block size %u is too small\n"
+ printk("ufs_read_super: block size %u is too small\n",
uspi->s_fsize);
goto failed;
}
if (uspi->s_bsize / uspi->s_fsize > 8) {
- printk("ufs_read_super: too many fragments per block (%u)\n"
+ printk("ufs_read_super: too many fragments per block (%u)\n",
uspi->s_bsize / uspi->s_fsize);
goto failed;
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2002-05-20 14:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-20 1:49 [PATCH] 2.4.19-pre8 UFS Compile Fix Marc-Christian Petersen
2002-05-20 14:43 ` Måns Rullgård
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox