Lines Matching refs:maxfrsize
3045 port_cfg->maxfrsize = 0; in bfa_fcport_attach()
3169 m->port_cfg.maxfrsize = cpu_to_be16(fcport->cfg.maxfrsize); in bfa_fcport_send_enable()
3522 if (fcport->cfg.maxfrsize == 0) in bfa_fcport_init()
3523 fcport->cfg.maxfrsize = bfa_ioc_maxfrsize(&bfa->ioc); in bfa_fcport_init()
3530 WARN_ON(!fcport->cfg.maxfrsize); in bfa_fcport_init()
3557 fcport->cfg.maxfrsize = in bfa_fcport_isr()
3558 cpu_to_be16(fcport->cfg.maxfrsize); in bfa_fcport_isr()
3892 bfa_fcport_cfg_maxfrsize(struct bfa_s *bfa, u16 maxfrsize) in bfa_fcport_cfg_maxfrsize() argument
3896 bfa_trc(bfa, maxfrsize); in bfa_fcport_cfg_maxfrsize()
3897 bfa_trc(bfa, fcport->cfg.maxfrsize); in bfa_fcport_cfg_maxfrsize()
3900 if ((maxfrsize > FC_MAX_PDUSZ) || (maxfrsize < FC_MIN_PDUSZ)) in bfa_fcport_cfg_maxfrsize()
3904 if ((maxfrsize != FC_MAX_PDUSZ) && (maxfrsize & (maxfrsize - 1))) in bfa_fcport_cfg_maxfrsize()
3907 fcport->cfg.maxfrsize = maxfrsize; in bfa_fcport_cfg_maxfrsize()
3916 return fcport->cfg.maxfrsize; in bfa_fcport_get_maxfrsize()