From 6e68cbfa75be7d607b22d4dcc75138ef6cf99532 Mon Sep 17 00:00:00 2001 From: jason Date: Sat, 18 Mar 2000 02:41:45 +0000 Subject: [PATCH] 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). --- sys/dev/pci/hifn7751.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } /* -- 2.20.1