Date: Sun, 2 Feb 2014 13:00:01 GMT From: Andriy Gapon <avg@FreeBSD.org> To: freebsd-bugs@FreeBSD.org Subject: Re: kern/186362: [panic] _mtx_lock_sleep() misses check for NULL Message-ID: <201402021300.s12D01TK099798@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/186362; it has been noted by GNATS. From: Andriy Gapon <avg@FreeBSD.org> To: bug-followup@FreeBSD.org, eugen@grosbein.net Cc: Subject: Re: kern/186362: [panic] _mtx_lock_sleep() misses check for NULL Date: Sun, 02 Feb 2014 14:55:28 +0200 NULL check would be redundant there as it is already established that the lock is owned and thus must have an owner. What seems to be happening that is that the thread is trying to acquire a lock that has been corrupted somehow. E.g. never initialized or its memory location overwritten. Better diagnostics for that case when INVARIANTS are enabled is warranted though. Returning to the main issue, I wonder if the following message are related to the problem: module_register: module mac_portacl already exists! Module mac_portacl failed to register: 17 I seem to recall that in some cases our kernel module loading infrastructure may refuse to load a duplicate module, bu nevertheless re-resolve a symbol name to point to a symbol in the duplicate module rather than in the original. Which is a bug, of course. -- Andriy Gapon
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402021300.s12D01TK099798>
