From owner-freebsd-multimedia@freebsd.org Sun Dec 17 09:42:59 2017 Return-Path: Delivered-To: freebsd-multimedia@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A4A1E846A6 for ; Sun, 17 Dec 2017 09:42:59 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (turbocat.net [IPv6:2a01:4f8:c17:6c4b::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B7646A831 for ; Sun, 17 Dec 2017 09:42:59 +0000 (UTC) (envelope-from hps@selasky.org) Received: from hps2016.home.selasky.org (unknown [62.141.128.70]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 82E262601A5; Sun, 17 Dec 2017 10:42:56 +0100 (CET) Subject: Re: webcamd-4.12.0.1 segfault when using WinTV-HV-950Q To: youngluc@gmail.com, freebsd-multimedia@freebsd.org References: <63966a1d-1244-4ea0-0bf8-15b485f63cd4@gmail.com> From: Hans Petter Selasky Message-ID: Date: Sun, 17 Dec 2017 10:40:09 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Dec 2017 09:42:59 -0000 On 12/17/17 04:03, Lucas Young wrote: > #0  0x0000000000415262 in timer_exec (arg=0x0) at kernel/linux_timer.c:142 > 142                                     TAILQ_REMOVE(&timer_head, t, > entry); > (gdb) bt > #0  0x0000000000415262 in timer_exec (arg=0x0) at kernel/linux_timer.c:142 > #1  0x00000008014cfbc5 in pthread_create () from /lib/libthr.so.3 > #2  0x0000000000000000 in ?? () > Current language:  auto; currently minimal > (gdb) p &timer_head > $1 = (struct timer_head *) 0xc32bf8 > (gdb) p t > $2 = (struct timer_list *) 0x802843130 Instead of dumping &timer_head, can you dump "timer_head" and the tree of elements that follow? p timer_head p *t --HPS