Home
last modified time | relevance | path

Searched refs:mfs (Results 1 – 14 of 14) sorted by relevance

/linux-4.1.27/arch/microblaze/kernel/
Dentry.S96 mfs r11, rmsr
102 mfs r11, rmsr
108 mfs r11, rmsr
114 mfs r11, rmsr
120 mfs r11, rmsr
126 mfs r11, rmsr
132 mfs r11, rmsr
139 mfs r11, rmsr
146 mfs r11, rmsr
152 mfs r11, rmsr
[all …]
Dentry-nommu.S35 mfs r11, rmsr
41 mfs r11, rmsr
47 mfs r11, rmsr
101 mfs r11, rmsr
103 mfs r11, rear
105 mfs r11, resr
107 mfs r11, rfsr
261 mfs r11, rmsr
263 mfs r11, rear
265 mfs r11, resr
[all …]
Dhw_exception_handler.S348 mfs r5, rmsr;
351 mfs r4, resr
353 mfs r3, rear;
359 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
391 mfs r6, rmsr;
419 mfs r7, rfsr
431 mfs r5, rmsr;
438 mfs r5, rmsr; /* disable interrupt */
472 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
537 mfs r6, resr;
[all …]
Dmisc.S56 mfs r12, rtlbx /* Retrieve index */
Dhead.S78 mfs r1, rmsr
/linux-4.1.27/drivers/scsi/libfc/
Dfc_lport.c374 sp->sp_bb_data = htons((u16) lport->mfs); in fc_lport_flogi_fill()
383 cp->cp_rdfs = htons((u16) lport->mfs); in fc_lport_flogi_fill()
669 int fc_set_mfs(struct fc_lport *lport, u32 mfs) in fc_set_mfs() argument
676 old_mfs = lport->mfs; in fc_set_mfs()
678 if (mfs >= FC_MIN_MAX_FRAME) { in fc_set_mfs()
679 mfs &= ~3; in fc_set_mfs()
680 if (mfs > FC_MAX_FRAME) in fc_set_mfs()
681 mfs = FC_MAX_FRAME; in fc_set_mfs()
682 mfs -= sizeof(struct fc_frame_header); in fc_set_mfs()
683 lport->mfs = mfs; in fc_set_mfs()
[all …]
Dfc_rport.c206 unsigned int mfs; in fc_plogi_get_maxframe() local
212 mfs = ntohs(flp->fl_csp.sp_bb_data) & FC_SP_BB_DATA_MASK; in fc_plogi_get_maxframe()
213 if (mfs >= FC_SP_MIN_MAX_PAYLOAD && mfs < maxval) in fc_plogi_get_maxframe()
214 maxval = mfs; in fc_plogi_get_maxframe()
215 mfs = ntohs(flp->fl_cssp[3 - 1].cp_rdfs); in fc_plogi_get_maxframe()
216 if (mfs >= FC_SP_MIN_MAX_PAYLOAD && mfs < maxval) in fc_plogi_get_maxframe()
217 maxval = mfs; in fc_plogi_get_maxframe()
646 rdata->maxframe_size = fc_plogi_get_maxframe(flogi, lport->mfs); in fc_rport_login_complete()
917 rdata->maxframe_size = fc_plogi_get_maxframe(plp, lport->mfs); in fc_rport_plogi_resp()
1680 rdata->maxframe_size = fc_plogi_get_maxframe(pl, lport->mfs); in fc_rport_recv_plogi_req()
/linux-4.1.27/include/scsi/
Dfc_encode.h550 csp->sp_bb_data = htons((u16) lport->mfs); in fc_plogi_fill()
558 cp->cp_rdfs = htons((u16) lport->mfs); in fc_plogi_fill()
581 sp->sp_bb_data = htons((u16) lport->mfs); in fc_flogi_fill()
606 sp->sp_bb_data = htons((u16) lport->mfs); in fc_fdisc_fill()
Dlibfc.h905 u32 mfs; member
1070 int fc_set_mfs(struct fc_lport *, u32 mfs);
/linux-4.1.27/drivers/scsi/fcoe/
Dfcoe.c675 u32 mfs; in fcoe_netdev_config() local
691 mfs = netdev->mtu; in fcoe_netdev_config()
693 mfs = FCOE_MTU; in fcoe_netdev_config()
694 FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs); in fcoe_netdev_config()
696 mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof)); in fcoe_netdev_config()
697 if (fc_set_mfs(lport, mfs)) in fcoe_netdev_config()
1996 u32 mfs; in fcoe_device_notification() local
2022 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) + in fcoe_device_notification()
2024 if (mfs >= FC_MIN_MAX_FRAME) in fcoe_device_notification()
2025 fc_set_mfs(lport, mfs); in fcoe_device_notification()
Dfcoe_ctlr.c375 return fip->lp->mfs + sizeof(struct fc_frame_header) + in fcoe_ctlr_fcoe_size()
/linux-4.1.27/drivers/scsi/csiostor/
Dcsio_lnode.c288 __be16 mfs; in csio_ln_fdmi_rhba_cbfn() local
353 mfs = ln->ln_sparm.csp.sp_bb_data; in csio_ln_fdmi_rhba_cbfn()
355 (uint8_t *)&mfs, FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN); in csio_ln_fdmi_rhba_cbfn()
/linux-4.1.27/drivers/scsi/fnic/
Dfnic_main.c870 fc_host_maxframe_size(lp->host) = lp->mfs; in fnic_probe()
/linux-4.1.27/drivers/scsi/bnx2fc/
Dbnx2fc_hwi.c266 ofld_req3.rx_max_fc_pay_len = lport->mfs; in bnx2fc_send_session_ofld_req()