Date: Wed, 28 Mar 2018 03:05:24 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 226974] kernel DSI read trap at boot Message-ID: <bug-226974-21-LWfLDldHN0@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-226974-21@https.bugs.freebsd.org/bugzilla/> References: <bug-226974-21@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226974 --- Comment #5 from Mark Millard <marklmi26-fbsd@yahoo.com> --- (In reply to Mark Millard from comment #4) Another possible type of oddity: static int bd_flushall(struct bufdomain *bd) { . . . for (i =3D 0; i < mp_maxid; i++) { bq =3D &bd->bd_subq[i]; seems to exclude mp_maxid from its loop, unlike bd_init's loop. And it has nothing for mp_ncpus (or mp_maxid+1 if that is more appropriate). (This last might be expected?) DB_SHOW_COMMAND(bufqueues, bufqueues) { . . . for (j =3D 0; j < mp_maxid + 1; j++) db_printf("%d, ", bd->bd_subq[j].bq_len); has mp_maxid included (via a different technique), but has nothing for mp_ncpu (or mp_maxid+1) compared to bd_init. (This might be expected?) --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-226974-21-LWfLDldHN0>