Lines Matching refs:maxfrsize
3008 port_cfg->maxfrsize = 0; in bfa_fcport_attach()
3132 m->port_cfg.maxfrsize = cpu_to_be16(fcport->cfg.maxfrsize); in bfa_fcport_send_enable()
3485 if (fcport->cfg.maxfrsize == 0) in bfa_fcport_init()
3486 fcport->cfg.maxfrsize = bfa_ioc_maxfrsize(&bfa->ioc); in bfa_fcport_init()
3493 WARN_ON(!fcport->cfg.maxfrsize); in bfa_fcport_init()
3520 fcport->cfg.maxfrsize = in bfa_fcport_isr()
3521 cpu_to_be16(fcport->cfg.maxfrsize); in bfa_fcport_isr()
3846 bfa_fcport_cfg_maxfrsize(struct bfa_s *bfa, u16 maxfrsize) in bfa_fcport_cfg_maxfrsize() argument
3850 bfa_trc(bfa, maxfrsize); in bfa_fcport_cfg_maxfrsize()
3851 bfa_trc(bfa, fcport->cfg.maxfrsize); in bfa_fcport_cfg_maxfrsize()
3854 if ((maxfrsize > FC_MAX_PDUSZ) || (maxfrsize < FC_MIN_PDUSZ)) in bfa_fcport_cfg_maxfrsize()
3858 if ((maxfrsize != FC_MAX_PDUSZ) && (maxfrsize & (maxfrsize - 1))) in bfa_fcport_cfg_maxfrsize()
3861 fcport->cfg.maxfrsize = maxfrsize; in bfa_fcport_cfg_maxfrsize()
3870 return fcport->cfg.maxfrsize; in bfa_fcport_get_maxfrsize()