This is a discussion on kern.notice within the Sun Solaris Administration forums, part of the Solaris Operating System category; --> anyone know what these kernel notice (errors) mean? and how i should go about troubleshooting or nothing to worry ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| anyone know what these kernel notice (errors) mean? and how i should go about troubleshooting or nothing to worry about? [ID 647904 kern.notice] GldOpen: q 0x57d03258 devp 0xa3d838 flag 0x7 sflag 0x0 [ID 133599 kern.notice] GldOpen: minor dev = 0x3 |
| ||||
| "lokeey@gmail.com" <lokeey@gmail.com> writes: > anyone know what these kernel notice (errors) mean? and how i should > go about troubleshooting or nothing to worry about? > > [ID 647904 kern.notice] GldOpen: q 0x57d03258 devp 0xa3d838 flag 0x7 > sflag 0x0 > [ID 133599 kern.notice] GldOpen: minor dev = 0x3 That looks like a message out of a third-party driver. I'd expect that most Sun-written drivers would not emit log noise in that way. (At a guess, GldOpen is actually a cloned version of gld_open(), part of the gld(7d) Generic LAN Driver framework.) Assuming that 'q' here refers to a STREAMS queue_t and 'devp' refers to the devinfo pointer, you should be able to get detailed information about the source of the message like this: # mdb -k > 0x57d03258::queue > 0xa3d838::devinfo (Depending on the version of Solaris you're using ... you didn't say.) At a guess, it's just a debug message that someone forgot to remove. It doesn't appear to contain any information that would indicate that it's a problem. -- James Carlson, Solaris Networking <james.d.carlson@sun.com> Sun Microsystems / 1 Network Drive 71.232W Vox +1 781 442 2084 MS UBUR02-212 / Burlington MA 01803-2757 42.496N Fax +1 781 442 1677 |