From owner-freebsd-stable@FreeBSD.ORG Thu Aug 19 16:55:59 2010 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 945021065672; Thu, 19 Aug 2010 16:55:59 +0000 (UTC) (envelope-from jfvogel@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id EA2C88FC08; Thu, 19 Aug 2010 16:55:58 +0000 (UTC) Received: by ewy26 with SMTP id 26so1664266ewy.13 for ; Thu, 19 Aug 2010 09:55:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=NCz2SAb2+/+eatDvxMJUAtoahMdhNdrxS+M9yUfcgsA=; b=ciiqdJ08DU+9ZN6d1txdX4Jn7fRGxcTyb54trwc4OZlhRkF3f1ErsLP2ZjVLQSBnPY 5emZY2gJqQJRKNQoqgOq5fbLqdo8JIeahABSFbFTIjjXXQwPC9YWk/5CU1irDLy52boq 2g8hAEyuepflRTmmv64FUYO59ZbcL8VI8FSxY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=ZIk2/30qpNVYuQULIYIRa1rOO6vqAFoSsAZtTFo8P3G0HAINTHKhOCCObpnef1vEJl B41gIeTI20YBYw2fy6yD2Z1b3dNOB3ZWRpJzdaA8uvM5Osh8WE9bxfpHx8pr7Q+Jzvwv znQ0t7px4UW/914UJvEM6t7a8XUAPnT/9aguQ= MIME-Version: 1.0 Received: by 10.216.131.161 with SMTP id m33mr113675wei.13.1282236957668; Thu, 19 Aug 2010 09:55:57 -0700 (PDT) Received: by 10.216.48.6 with HTTP; Thu, 19 Aug 2010 09:55:57 -0700 (PDT) In-Reply-To: References: <201006301726.o5UHQl7n011935@svn.freebsd.org> <4C2BBC1F.6020405@elischer.org> Date: Thu, 19 Aug 2010 09:55:57 -0700 Message-ID: From: Jack Vogel To: pluknet Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Jack F Vogel , freebsd-stable Subject: Re: svn commit: r209611 - head/sys/dev/e1000 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Aug 2010 16:55:59 -0000 On Thu, Aug 19, 2010 at 2:45 AM, pluknet wrote: > > By the way, > > Sometimes after boot I have to kldreload if_igb.ko several > times until watchdog go to sleep, so traffic starts flowing. > Hmmm, the intention is that the VF always be single queue, but I see the code I used to limit it is broken, so you are getting two queues. For now near the top of if_igb.c set igb_num_queues = 1; I believe that will get rid of the watchdogs. Jack