Home
last modified time | relevance | path

Searched refs:burst_max (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/net/
H A Dif_poll.c1176 uint32_t burst_max; in sysctl_burstmax() local
1179 burst_max = io_ctx->poll_burst_max; in sysctl_burstmax()
1180 error = sysctl_handle_int(oidp, &burst_max, 0, req); in sysctl_burstmax()
1183 if (burst_max < MIN_IOPOLL_BURST_MAX) in sysctl_burstmax()
1184 burst_max = MIN_IOPOLL_BURST_MAX; in sysctl_burstmax()
1185 else if (burst_max > MAX_IOPOLL_BURST_MAX) in sysctl_burstmax()
1186 burst_max = MAX_IOPOLL_BURST_MAX; in sysctl_burstmax()
1190 msg.base.lmsg.u.ms_result = burst_max; in sysctl_burstmax()
/dragonfly/sys/dev/disk/sym/
H A Dsym_defs.h94 u_char burst_max; /* log-base-2 of max burst */ member
H A Dsym_hipd.c2502 u_char burst_max; in sym_prepare_setting() local
2611 burst_max = SYM_SETUP_BURST_ORDER; in sym_prepare_setting()
2612 if (burst_max == 255) in sym_prepare_setting()
2613 burst_max = burst_code(np->sv_dmode, np->sv_ctest4, in sym_prepare_setting()
2615 if (burst_max > 7) in sym_prepare_setting()
2616 burst_max = 7; in sym_prepare_setting()
2617 if (burst_max > np->maxburst) in sym_prepare_setting()
2618 burst_max = np->maxburst; in sym_prepare_setting()
2685 sym_init_burst(np, burst_max); in sym_prepare_setting()
8554 np->maxburst = chip->burst_max;