/drivers/net/wireless/orinoco/ |
D | cfg.c | 92 wiphy->frag_threshold = priv->frag_thresh + 1; in orinoco_wiphy_register() 223 if (wiphy->frag_threshold == -1) in orinoco_set_wiphy_params() 233 if (wiphy->frag_threshold == -1) in orinoco_set_wiphy_params() 235 else if ((wiphy->frag_threshold < 257) || in orinoco_set_wiphy_params() 236 (wiphy->frag_threshold > 2347)) in orinoco_set_wiphy_params() 241 frag_value = wiphy->frag_threshold & ~0x1; in orinoco_set_wiphy_params()
|
/drivers/net/wireless/ti/wl1251/ |
D | tx.c | 117 u16 payload_len, frag_threshold, mem_blocks; in wl1251_tx_frag_block_num() local 120 frag_threshold = IEEE80211_MAX_FRAG_THRESHOLD; in wl1251_tx_frag_block_num() 121 tx_hdr->frag_threshold = cpu_to_le16(frag_threshold); in wl1251_tx_frag_block_num() 125 if (payload_len > frag_threshold) { in wl1251_tx_frag_block_num() 127 ((frag_threshold + MAX_MPDU_HEADER_AND_SECURITY) / in wl1251_tx_frag_block_num() 129 num_mpdus = payload_len / frag_threshold; in wl1251_tx_frag_block_num() 131 payload_len -= num_mpdus * frag_threshold; in wl1251_tx_frag_block_num()
|
D | tx.h | 151 __le16 frag_threshold; member
|
/drivers/staging/rtl8192u/ |
D | r819xU_firmware.c | 38 u16 frag_threshold; in fw_download_code() local 51 frag_threshold = pfirmware->cmdpacket_frag_thresold; in fw_download_code() 53 if ((buffer_len - frag_offset) > frag_threshold) { in fw_download_code() 54 frag_length = frag_threshold; in fw_download_code()
|
/drivers/net/wireless/mwifiex/ |
D | uap_cmd.c | 319 config->frag_threshold = 0x7FFF; in mwifiex_set_sys_config_invalid_data() 486 struct host_cmd_tlv_frag_threshold *frag_threshold; in mwifiex_uap_bss_param_prepare() local 580 if ((bss_cfg->frag_threshold >= MWIFIEX_FRAG_MIN_VALUE) && in mwifiex_uap_bss_param_prepare() 581 (bss_cfg->frag_threshold <= MWIFIEX_FRAG_MAX_VALUE)) { in mwifiex_uap_bss_param_prepare() 582 frag_threshold = (struct host_cmd_tlv_frag_threshold *)tlv; in mwifiex_uap_bss_param_prepare() 583 frag_threshold->header.type = in mwifiex_uap_bss_param_prepare() 585 frag_threshold->header.len = in mwifiex_uap_bss_param_prepare() 588 frag_threshold->frag_thr = cpu_to_le16(bss_cfg->frag_threshold); in mwifiex_uap_bss_param_prepare()
|
D | ioctl.h | 97 u16 frag_threshold; member
|
D | cfg80211.c | 673 bss_cfg->frag_threshold = wiphy->frag_threshold; in mwifiex_cfg80211_set_wiphy_params() 704 wiphy->frag_threshold); in mwifiex_cfg80211_set_wiphy_params() 3890 wiphy->frag_threshold = thr; in mwifiex_register_cfg80211()
|
/drivers/net/wireless/ |
D | at76c50x-usb.h | 244 __le16 frag_threshold; member 413 int frag_threshold; /* threshold for fragmentation of tx packets */ member
|
D | at76c50x-usb.c | 891 priv->mib_buf.index = offsetof(struct mib_mac, frag_threshold); in at76_set_frag() 1064 le16_to_cpu(m->frag_threshold), le16_to_cpu(m->rts_threshold), in at76_dump_mib_mac() 1370 priv->short_retry_limit, priv->frag_threshold, in at76_startup_device() 1402 ccfg->fragmentation_threshold = cpu_to_le16(priv->frag_threshold); in at76_startup_device() 1441 ret = at76_set_frag(priv, priv->frag_threshold); in at76_startup_device() 2346 priv->frag_threshold = DEF_FRAG_THRESHOLD; in at76_init_new_device()
|
D | rndis_wlan.c | 1248 static int set_frag_threshold(struct usbnet *usbdev, u32 frag_threshold) in set_frag_threshold() argument 1252 netdev_dbg(usbdev->net, "%s(): %i\n", __func__, frag_threshold); in set_frag_threshold() 1254 if (frag_threshold < 256 || frag_threshold > 2346) in set_frag_threshold() 1255 frag_threshold = 2346; in set_frag_threshold() 1257 tmp = cpu_to_le32(frag_threshold); in set_frag_threshold() 1890 err = set_frag_threshold(usbdev, wiphy->frag_threshold); in rndis_set_wiphy_params()
|
D | atmel.c | 523 int frag_threshold; member 1575 priv->frag_threshold = 2346; in init_atmel_card() 2242 priv->frag_threshold = fthr; in atmel_set_frag() 2254 vwrq->value = priv->frag_threshold; in atmel_get_frag() 4030 atmel_set_mib16(priv, Mac_Mib_Type, MAC_MIB_FRAG_THRESHOLD_POS, priv->frag_threshold); in reset_atmel_card()
|
/drivers/net/wireless/realtek/rtlwifi/rtl8192se/ |
D | fw.c | 167 u16 frag_threshold = MAX_FIRMWARE_CODE_SIZE; in _rtl92s_firmware_downloadcode() local 184 if ((buffer_len - frag_offset) > frag_threshold) { in _rtl92s_firmware_downloadcode() 185 frag_length = frag_threshold + extra_descoffset; in _rtl92s_firmware_downloadcode()
|
/drivers/net/wireless/ti/wlcore/ |
D | acx.c | 911 int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold) in wl1271_acx_frag_threshold() argument 920 if (frag_threshold > IEEE80211_MAX_FRAG_THRESHOLD) in wl1271_acx_frag_threshold() 921 frag_threshold = wl->conf.tx.frag_threshold; in wl1271_acx_frag_threshold() 923 wl1271_debug(DEBUG_ACX, "acx frag threshold: %d", frag_threshold); in wl1271_acx_frag_threshold() 932 acx->frag_threshold = cpu_to_le16((u16)frag_threshold); in wl1271_acx_frag_threshold()
|
D | acx.h | 461 __le16 frag_threshold; member 1087 int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold);
|
D | conf.h | 670 u16 frag_threshold; member
|
D | init.c | 735 ret = wl1271_acx_frag_threshold(wl, wl->hw->wiphy->frag_threshold); in wl1271_hw_init()
|
/drivers/net/wireless/rsi/ |
D | rsi_mgmt.h | 215 __le16 frag_threshold; member
|
D | rsi_91x_mac80211.c | 1085 wiphy->frag_threshold = IEEE80211_MAX_FRAG_THRESHOLD; in rsi_mac80211_attach()
|
/drivers/staging/wlan-ng/ |
D | cfg80211.c | 470 if (wiphy->frag_threshold == -1) in prism2_set_wiphy_params() 473 data = wiphy->frag_threshold; in prism2_set_wiphy_params()
|
/drivers/net/wireless/brcm80211/brcmfmac/ |
D | cfg80211.h | 96 u32 frag_threshold; member
|
D | cfg80211.c | 1152 static s32 brcmf_set_frag(struct net_device *ndev, u32 frag_threshold) in brcmf_set_frag() argument 1157 frag_threshold); in brcmf_set_frag() 1196 (cfg->conf->frag_threshold != wiphy->frag_threshold)) { in brcmf_cfg80211_set_wiphy_params() 1197 cfg->conf->frag_threshold = wiphy->frag_threshold; in brcmf_cfg80211_set_wiphy_params() 1198 err = brcmf_set_frag(ndev, cfg->conf->frag_threshold); in brcmf_cfg80211_set_wiphy_params() 5182 conf->frag_threshold = (u32)-1; in brcmf_init_conf()
|
/drivers/staging/wilc1000/ |
D | host_interface.h | 113 u16 frag_threshold; member
|
D | host_interface.c | 618 … (strHostIFCfgParamAttr->cfg_attr_info.frag_threshold > 255 && strHostIFCfgParamAttr->cfg_attr_inf… in Handle_CfgParam() 620 strWIDList[u8WidCnt].val = (s8 *)&strHostIFCfgParamAttr->cfg_attr_info.frag_threshold; in Handle_CfgParam() 623 hif_drv->strCfgValues.frag_threshold = strHostIFCfgParamAttr->cfg_attr_info.frag_threshold; in Handle_CfgParam() 3986 *pu16WID_Value = hif_drv->strCfgValues.frag_threshold; in hif_get_cfg()
|
/drivers/net/wireless/ipw2x00/ |
D | ipw2100.h | 529 u32 frag_threshold; member
|
/drivers/staging/vt6656/ |
D | main_usb.c | 998 wiphy->frag_threshold = FRAG_THRESH_DEF; in vt6656_probe()
|