From owner-freebsd-questions@FreeBSD.ORG Thu Feb 11 09:17:48 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32AEB106566B for ; Thu, 11 Feb 2010 09:17:47 +0000 (UTC) (envelope-from eitanadlerlist@gmail.com) Received: from mail-fx0-f224.google.com (mail-fx0-f224.google.com [209.85.220.224]) by mx1.freebsd.org (Postfix) with ESMTP id 83D208FC0A for ; Thu, 11 Feb 2010 09:17:47 +0000 (UTC) Received: by fxm24 with SMTP id 24so408014fxm.3 for ; Thu, 11 Feb 2010 01:17:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=zddXOaDR89NzwJNcTliGmrGieXElRPLfH4FPAKBSMFI=; b=VnXa3/FQO6l/HmBEBJGVE31PL+xFPWskPnkA/6K0qQM9K7XTqOO5Gi7tIETXOdwH2z qu7KdYqg3l+KFpfEWgDNDR4DyW6zfwbRXOSBQyKvn98R8WuPmDoPSPzpZe2KouEGcQFo hLHLgG2x/akEDqswEcEpyAgRszxchujRsYCjM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=h2CAKHGU8HvGUk+LxuHT1wtG5KryIaWNv5lABa0AGGDoWCHL4tDgf0xDLowfT3vEGt ZhjiZ6C+AHUWW8f6IHOp0WS7NIQtilE4Os8WVb0GUFVDPIrjfjHWLE4sfxAQsYhhrLUD R243aMU4/HtsAKBJpr6Snm2615P56ulxsiXtw= MIME-Version: 1.0 Received: by 10.239.186.133 with SMTP id g5mr175791hbh.118.1265879866097; Thu, 11 Feb 2010 01:17:46 -0800 (PST) From: Eitan Adler Date: Thu, 11 Feb 2010 11:17:26 +0200 Message-ID: To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: NTOS: Timer fired even though it was canceled X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Feb 2010 09:17:48 -0000 Running freeBSD 8.0-RELEASE I got NTOS: timer 0xc4817a08 timer fired even though canceled from http://fxr.watson.org/fxr/source/compat/ndis/subr_ntoskrnl.c?v=FREEBSD8 /* * This should never happen, but complain * if it does. */ if (timer->k_header.dh_inserted == FALSE) { mtx_unlock(&ntoskrnl_dispatchlock); printf("NTOS: timer %p fired even though " "it was canceled\n", timer); return; } What might have caused this and how could I fix it?