Hi All,
Getting this error on the boot up screen. On older hardware this cause the system to hang completely, on newer hardware it occasionally hangs, and other times is able to get past it. However the error always appears twice.
blogd: …/nptl/pthread_mutex_lock.c:62: __pthread_mutex_cond_lock: Assertion ‘mutex->__data.__owner == 0’ failed.
Some research has led to a preliminary conclusion that it may be related to these files:
[FONT=Courier New][CODE]/lib/mkinitrd/scripts/boot-blogd.sh
/lib/mkinitrd/scripts/boot-killblogd.sh
/lib/mkinitrd/scripts/boot-killblogd2.sh
cat /lib/mkinitrd/scripts/boot-blogd.sh
#!/bin/bash
#%stage: boot
#%depends: udev
#%programs: showconsole /sbin/blogd
#%if: -x /sbin/blogd
#%dontshow
blogd start
This script starts blogd if this has not happened before.
Command line parameters
-----------------------
if test -z “$REDIRECT” ; then
REDIRECT=$(showconsole 2>/dev/null)
if test -n “$REDIRECT” ; then
if test “$devpts” != “yes” ; then
mount -t devpts devpts /dev/pts
devpts=yes
fi
> /dev/shm/initrd.msg
ln -sf /dev/shm/initrd.msg /var/log/boot.msg
mkdir -p /var/run
/sbin/blogd $REDIRECT
fi
fi
cat /lib/mkinitrd/scripts/boot-killblogd.sh
#!/bin/bash
#%stage: setup
#%dontshow
blogd end
This script tells blogd that the initrd is done.
Additionally it moves /dev to the new root filesystem.
Command line parameters
-----------------------
blogd_pid=$(pidof blogd)
if test -n “$blogd_pid” ; then
kill -IO “$blogd_pid”
fi
cat /lib/mkinitrd/scripts/boot-killblogd2.sh
#!/bin/bash
#%stage: setup
#%depends: killblogd
#%provides: killprogs
#%programs: usleep
#%dontshow
blogd end2
Really kill blogd this time.
Command line parameters
-----------------------
if test -n “$blogd_pid” ; then
kill -QUIT “$blogd_pid”
while [ -d “/proc/$blogd_pid” ]; do
usleep 300000
done
if [ “$devpts” = “yes” ] ; then
umount -t devpts /dev/pts
fi
fi[/CODE][/FONT]
This issues started just recently, so it may also be related to some other packages that were updated or added, or the minor kernel upgrade that occurred. Has anyone else seen this issue? Any solutions?
Thanks!