Date: Mon, 22 Feb 2016 19:13:20 +0100 From: Polytropon <freebsd@edvax.de> To: Bernt Hansson <bah@bananmonarki.se> Cc: questions FreeBSD <FreeBSD-questions@freebsd.org> Subject: Re: Got a panic today Message-ID: <20160222191320.bc8ed616.freebsd@edvax.de> In-Reply-To: <56CB47A6.9080107@bananmonarki.se> References: <56CB47A6.9080107@bananmonarki.se>
next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, 22 Feb 2016 18:38:46 +0100, Bernt Hansson wrote: > This panic showed up today once; > > panic: AP (PHY# 1) > > What is AP and PHY? AP seems to refer to the CPU, the "application processor" See for comparison this dmesg output: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 Here we see BSP ("bootstrap processor") and AP. PHY seems to refer to physical characteristics of interfaces. Again from "dmesg | grep PHY": nsphy0: <DP83840 10/100 media interface> PHY 24 on miibus0 ukphy0: <Generic IEEE 802.3u media interface> PHY 1 on miibus1 You often see comparable output related to NICs. For example, if you search "man rl" for the string "PHY", there are refernces to the physical chipset (physical layer, as opposite to the MAC, the media-independent layer). It's a reference to the OSI layer 1. So in your case, the error refers a panic of the application processor, which is the 1st physical processor. I hope my guesses are correct. :-) -- Polytropon Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ...
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20160222191320.bc8ed616.freebsd>