Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 01 Dec 2014 22:21:34 -0800
From:      "Eric L. Camachat" <eric.camachat@gmail.com>
To:        Adrian Chadd <adrian@freebsd.org>, FreeBSD Current <current@freebsd.org>
Subject:   compiling failed with RSS enabled
Message-ID:  <547D5A6E.5050806@gmail.com>

next in thread | raw e-mail | index | archive | help
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

current failed to compile due to queues uninitialized at line 2883 in
if_igb.c.
from the context I guess it should be n_queues instead of queues.

Index: sys/dev/e1000/if_igb.c
===================================================================
- --- sys/dev/e1000/if_igb.c	(revision 275391)
+++ sys/dev/e1000/if_igb.c	(working copy)
@@ -2880,7 +2880,7 @@

 #ifdef	RSS
 	/* If we're doing RSS, clamp at the number of RSS buckets */
- -	if (queues > rss_getnumbuckets())
+	if (n_queues > rss_getnumbuckets())
 		queues = rss_getnumbuckets();
 #endif


Eric
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iF4EAREIAAYFAlR9WmoACgkQSfBQu3oOwYxnrQD6Ah1uhoNaM3YTXHdOpOA7hw4j
vZUCA9VU6n/jhUEneVkBALETmBfQudmEz9/eqnmsmer8RbulQdqIKTa8InSvE2yw
=jLcf
-----END PGP SIGNATURE-----



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?547D5A6E.5050806>