From owner-p4-projects@FreeBSD.ORG Fri Feb 22 05:55:03 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 2A62716A406; Fri, 22 Feb 2008 05:55:03 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CADEA16A403 for ; Fri, 22 Feb 2008 05:55:02 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.174]) by mx1.freebsd.org (Postfix) with ESMTP id A20F313C469 for ; Fri, 22 Feb 2008 05:55:02 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: by wf-out-1314.google.com with SMTP id 25so174907wfa.7 for ; Thu, 21 Feb 2008 21:55:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:cc:message-id:from:to:in-reply-to:content-type:content-transfer-encoding:mime-version:subject:date:references:x-mailer; bh=JG8COn2kSQV1oMXfpW+T+pEH844VZYzUmlOexZWQp/g=; b=KL1pOfNDNkHj49XqKf+kXwD2xe+CiBwYUS5zeFQNo9bu28flndduc2xhG8brFxvxQ0omArgJRzTUijJntQvfEpsYkOZK0iHEihx3Axntc6IACa+jqvyF++fqFzwFAH01JSHWsUBM7WjpwTFFQiNteAWhSiM9cBQz39YtCG5ZBMI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=cc:message-id:from:to:in-reply-to:content-type:content-transfer-encoding:mime-version:subject:date:references:x-mailer; b=ZL4z7k1EXasLxHohgK608eQtWxOrFzPwxSd+cOKKvq5i7I5J2/ed03pvfFO4F2x05Jg7lOaYO14Coyd+i83vVNXDVHSK/mPyHY9qcL9nH4gEjcpm61Wc+ETqzPLl4BGoVr5CLgU3wQgY0fFLHsBL70lrOHXzWfjTLAn3RsGXWoc= Received: by 10.142.154.20 with SMTP id b20mr2511631wfe.166.1203658019137; Thu, 21 Feb 2008 21:26:59 -0800 (PST) Received: from ?10.2.0.49? ( [67.96.45.122]) by mx.google.com with ESMTPS id 27sm1453151wff.8.2008.02.21.21.26.56 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 21 Feb 2008 21:26:57 -0800 (PST) Message-Id: From: Garrett Cooper To: Warner Losh In-Reply-To: <200802220515.m1M5FFAZ048269@repoman.freebsd.org> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v919.2) Date: Thu, 21 Feb 2008 21:28:08 -0800 References: <200802220515.m1M5FFAZ048269@repoman.freebsd.org> X-Mailer: Apple Mail (2.919.2) Cc: Perforce Change Reviews Subject: Re: PERFORCE change 135939 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 05:55:03 -0000 On Feb 21, 2008, at 9:15 PM, Warner Losh wrote: > http://perforce.freebsd.org/chv.cgi?CH=135939 > > Change 135939 by imp@imp_lighthouse on 2008/02/22 05:14:54 > > Reconnect clock interrupt. Maybe this isn't quite right, but > we need to fix the root cause... > > Affected files ... > > .. //depot/projects/mips2-jnpr/src/sys/mips/mips/intr_machdep.c#5 edit > > Differences ... > > ==== //depot/projects/mips2-jnpr/src/sys/mips/mips/intr_machdep.c#5 > (text+ko) ==== > > @@ -154,8 +154,11 @@ > > if (!event || TAILQ_EMPTY(&event->ie_handlers)) > { > - printf("stray %s interrupt %d\n", > - hard ? "hard" : "soft", i); > + if (i == 5) > + clockintr(intr, tf); > + else > + printf("stray %s interrupt %d\n", > + hard ? "hard" : "soft", i); > continue; > } MIPS clock not ticking...? -Garrett