Date: Thu, 19 Aug 2010 17:00:33 +0000 (UTC) From: Jack F Vogel <jfv@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r211516 - head/sys/dev/e1000 Message-ID: <201008191700.o7JH0XEp010584@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jfv Date: Thu Aug 19 17:00:33 2010 New Revision: 211516 URL: http://svn.freebsd.org/changeset/base/211516 Log: Eliminate the ambiguous queue setting logic for the VF, it made it possible to have 2 queues which we don't want, the HOST is unable to handle it. Modified: head/sys/dev/e1000/if_igb.c Modified: head/sys/dev/e1000/if_igb.c ============================================================================== --- head/sys/dev/e1000/if_igb.c Thu Aug 19 16:41:27 2010 (r211515) +++ head/sys/dev/e1000/if_igb.c Thu Aug 19 17:00:33 2010 (r211516) @@ -2473,8 +2473,8 @@ igb_setup_msix(struct adapter *adapter) if ((adapter->hw.mac.type == e1000_82575) && (queues > 4)) queues = 4; - /* Limit the VF adapter to one queues */ - if ((adapter->hw.mac.type == e1000_vfadapt) && (queues > 2)) + /* Limit the VF adapter to one queue */ + if (adapter->hw.mac.type == e1000_vfadapt) queues = 1; /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008191700.o7JH0XEp010584>