View | Details | Raw Unified | Return to bug 221954
Collapse All | Expand All

(-)b/sys/cam/cam_iosched.c (-3 / +2 lines)
Lines 747-755 cam_iosched_iop_stats_init(struct cam_iosched_softc *isc, struct iop_stats *ios) Link Here
747
{
747
{
748
748
749
	ios->limiter = none;
749
	ios->limiter = none;
750
	cam_iosched_limiter_init(ios);
751
	ios->in = 0;
750
	ios->in = 0;
752
	ios->max = 300000;
751
	ios->max = ios->current = 300000;
753
	ios->min = 1;
752
	ios->min = 1;
754
	ios->out = 0;
753
	ios->out = 0;
755
	ios->pending = 0;
754
	ios->pending = 0;
Lines 758-763 cam_iosched_iop_stats_init(struct cam_iosched_softc *isc, struct iop_stats *ios) Link Here
758
	ios->ema = 0;
757
	ios->ema = 0;
759
	ios->emvar = 0;
758
	ios->emvar = 0;
760
	ios->softc = isc;
759
	ios->softc = isc;
760
	cam_iosched_limiter_init(ios);
761
}
761
}
762
762
763
static int
763
static int
764
- 

Return to bug 221954