Module Name: src
Committed By: ahoka
Date: Fri Nov 25 11:15:25 UTC 2011
Modified Files:
src/sys/ufs/chfs: ebh.c
Log Message:
Don't shadow some stupid function defined globally in random platforms.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/ufs/chfs/ebh.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/ufs/chfs/ebh.c
diff -u src/sys/ufs/chfs/ebh.c:1.1 src/sys/ufs/chfs/ebh.c:1.2
--- src/sys/ufs/chfs/ebh.c:1.1 Thu Nov 24 15:51:32 2011
+++ src/sys/ufs/chfs/ebh.c Fri Nov 25 11:15:24 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: ebh.c,v 1.1 2011/11/24 15:51:32 ahoka Exp $ */
+/* $NetBSD: ebh.c,v 1.2 2011/11/25 11:15:24 ahoka Exp $ */
/*-
* Copyright (c) 2010 Department of Software Engineering,
@@ -1369,16 +1369,17 @@ nand_process_eb(struct chfs_ebh *ebh, st
{
int err, erase_cnt, leb_status;
uint64_t max_serial;
- bool isbad;
+ /* isbad() is defined on some ancient platforms, heh */
+ bool is_bad;
/* Check block is bad */
err = flash_block_isbad(ebh->flash_dev,
- pebnr * ebh->flash_if->erasesize, &isbad);
+ pebnr * ebh->flash_if->erasesize, &is_bad);
if (err) {
chfs_err("checking block is bad failed\n");
return err;
}
- if (isbad) {
+ if (is_bad) {
si->bad_peb_cnt++;
return 0;
}