From 977b544f77a446a56a19bc31a3809b0c71ec562e Mon Sep 17 00:00:00 2001 From: Jason Wright Date: Sat, 18 Mar 2000 02:41:46 +0000 Subject: 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(-) (limited to 'sys/dev') 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; } /* -- cgit v1.2.3