From owner-freebsd-arch@FreeBSD.ORG Sat Sep 18 09:41:36 2010 Return-Path: Delivered-To: arch@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2D471065672; Sat, 18 Sep 2010 09:41:36 +0000 (UTC) (envelope-from gljennjohn@googlemail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 523C98FC0A; Sat, 18 Sep 2010 09:41:35 +0000 (UTC) Received: by bwz15 with SMTP id 15so4312695bwz.13 for ; Sat, 18 Sep 2010 02:41:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:in-reply-to:references:reply-to:x-mailer:mime-version :content-type:content-transfer-encoding; bh=ebAvEZH36jAmAPLGCLQnnGKRqXj2hzaz9tSbQnVqfS0=; b=j+OtozAATdTNQDyDFuBEG9uWTOhBQcP65JFD7KlL+Rs7IutBnetUzjASgSzg/fJDUg Rxu2D3/ibBjEtEiHZ90t20IyZ6Jz9Q2xpaSkPseFtP7VBnsLlKO09nHSpkuG0D1HqO/b HE8gAiIPySPlzbYTFHfidl1Kj0aMkocvtkADE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:cc:subject:message-id:in-reply-to:references:reply-to :x-mailer:mime-version:content-type:content-transfer-encoding; b=lj2ORuKpMUADLiipDjqzzDWi6hyzv27jQl+0nmEV5x6gfJOgRloVJd5omrEwH1bNYn crAacWqBncNUBR0ZUI6CwhLKvJClFh75i3sVvWLx0E591rv7QfWFv5bc0y39fHdfdL2C 3Vw6X5HD3CNkf93rBnU5VR0ToVw8qmTciVTu8= Received: by 10.204.84.17 with SMTP id h17mr4805338bkl.101.1284801370642; Sat, 18 Sep 2010 02:16:10 -0700 (PDT) Received: from ernst.jennejohn.org (p578E351F.dip.t-dialin.net [87.142.53.31]) by mx.google.com with ESMTPS id f18sm4511030bkf.15.2010.09.18.02.16.08 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 18 Sep 2010 02:16:09 -0700 (PDT) Date: Sat, 18 Sep 2010 11:16:06 +0200 From: Gary Jennejohn To: John Baldwin Message-ID: <20100918111606.1c4390ff@ernst.jennejohn.org> In-Reply-To: <201009171123.39382.jhb@freebsd.org> References: <201009171123.39382.jhb@freebsd.org> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.18.7; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: arch@freebsd.org Subject: Re: Interrupt Threads X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gljennjohn@googlemail.com List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Sep 2010 09:41:37 -0000 On Fri, 17 Sep 2010 11:23:39 -0400 John Baldwin wrote: > The code currently lives in p4 at //depot/user/jhb/intr/... I have also put > up a patch at http://www.freebsd.org/~jhb/patches/intr_threads.patch. This > patch includes the changes to the igb(4) driver. > Doesn't compile without INVARIANTS because in line 928 of kern/kern_intr.c ihw is used, but its declaration is hidden behind #ifdef INVARIANTS. I just moved it outside the ifdef to get it to compile, but I haven't tested the resulting kernel yet, so I don't know whether that was the correct solution. -- Gary Jennejohn