diff options
author | Divy Le Ray <divy@chelsio.com> | 2008-11-09 03:55:33 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-11-11 03:50:43 -0500 |
commit | f9ee3882969224aa9f086268020c31819be6ae99 (patch) | |
tree | b66ff60ff750eb80aba5a9d6b8c4c932e2a395f6 /drivers/net/cxgb3 | |
parent | 9f64306b8a3949b74cb11d3b2f613e8a2af20fa6 (diff) |
cxgb3 - Limit multiqueue setting to msi-x
Allow multiqueue setting in MSI-X mode only
Signed-off-by: Divy Le Ray <divy@chelsio.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/cxgb3')
-rw-r--r-- | drivers/net/cxgb3/cxgb3_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/cxgb3/cxgb3_main.c b/drivers/net/cxgb3/cxgb3_main.c index 1ace41a13ac3..f66367ed6932 100644 --- a/drivers/net/cxgb3/cxgb3_main.c +++ b/drivers/net/cxgb3/cxgb3_main.c | |||
@@ -2699,7 +2699,7 @@ static void set_nqsets(struct adapter *adap) | |||
2699 | int hwports = adap->params.nports; | 2699 | int hwports = adap->params.nports; |
2700 | int nqsets = SGE_QSETS; | 2700 | int nqsets = SGE_QSETS; |
2701 | 2701 | ||
2702 | if (adap->params.rev > 0) { | 2702 | if (adap->params.rev > 0 && adap->flags & USING_MSIX) { |
2703 | if (hwports == 2 && | 2703 | if (hwports == 2 && |
2704 | (hwports * nqsets > SGE_QSETS || | 2704 | (hwports * nqsets > SGE_QSETS || |
2705 | num_cpus >= nqsets / hwports)) | 2705 | num_cpus >= nqsets / hwports)) |