From: jason Date: Sat, 18 Mar 2000 02:41:45 +0000 (+0000) Subject: cap the maximum sessions at 2048 since that's all that is available in X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=6e68cbfa75be7d607b22d4dcc75138ef6cf99532;p=openbsd cap the maximum sessions at 2048 since that's all that is available in the result descriptor (the command descriptor has an extra bit, but it gets blown away in transit). --- diff --git a/sys/dev/pci/hifn7751.c b/sys/dev/pci/hifn7751.c index d5fe658888f..65f2379d37b 100644 --- a/sys/dev/pci/hifn7751.c +++ b/sys/dev/pci/hifn7751.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hifn7751.c,v 1.13 2000/03/17 21:59:07 jason Exp $ */ +/* $OpenBSD: hifn7751.c,v 1.14 2000/03/18 02:41:45 jason Exp $ */ /* * Invertex AEON / Hi/fn 7751 driver @@ -495,6 +495,9 @@ hifn_sessions(sc) } else sc->sc_maxses = sc->sc_ramsize / 16384; + + if (sc->sc_maxses > 2048) + sc->sc_maxses = 2048; } /*