Home
last modified time | relevance | path

Searched refs:frag_threshold (Results 1 – 25 of 37) sorted by relevance

12

/linux-3.4.99/drivers/net/wireless/orinoco/
Dcfg.c91 wiphy->frag_threshold = priv->frag_thresh + 1; in orinoco_wiphy_register()
224 if (wiphy->frag_threshold < 0) in orinoco_set_wiphy_params()
234 if (wiphy->frag_threshold < 0) in orinoco_set_wiphy_params()
236 else if ((wiphy->frag_threshold < 257) || in orinoco_set_wiphy_params()
237 (wiphy->frag_threshold > 2347)) in orinoco_set_wiphy_params()
242 frag_value = wiphy->frag_threshold & ~0x1; in orinoco_set_wiphy_params()
/linux-3.4.99/drivers/net/wireless/wl1251/
Dtx.c112 u16 payload_len, frag_threshold, mem_blocks; in wl1251_tx_frag_block_num() local
115 frag_threshold = IEEE80211_MAX_FRAG_THRESHOLD; in wl1251_tx_frag_block_num()
116 tx_hdr->frag_threshold = cpu_to_le16(frag_threshold); in wl1251_tx_frag_block_num()
120 if (payload_len > frag_threshold) { in wl1251_tx_frag_block_num()
122 ((frag_threshold + MAX_MPDU_HEADER_AND_SECURITY) / in wl1251_tx_frag_block_num()
124 num_mpdus = payload_len / frag_threshold; in wl1251_tx_frag_block_num()
126 payload_len -= num_mpdus * frag_threshold; in wl1251_tx_frag_block_num()
Dtx.h151 __le16 frag_threshold; member
/linux-3.4.99/drivers/staging/rtl8192e/rtl8192e/
Dr8192E_firmware.c40 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()
Dr8192E_cmdpkt.c46 u16 frag_threshold; in cmpk_message_handle_tx() local
58 frag_threshold = pfirmware->cmdpacket_frag_thresold; in cmpk_message_handle_tx()
61 if ((buffer_len - frag_offset) > frag_threshold) { in cmpk_message_handle_tx()
62 frag_length = frag_threshold ; in cmpk_message_handle_tx()
/linux-3.4.99/drivers/staging/rtl8192u/
Dr819xU_firmware.c36 u16 frag_threshold; in fw_download_code() local
49 frag_threshold = pfirmware->cmdpacket_frag_thresold; in fw_download_code()
51 if((buffer_len - frag_offset) > frag_threshold) { in fw_download_code()
52 frag_length = frag_threshold ; in fw_download_code()
Dr819xU_cmdpkt.c114 u16 frag_threshold; in cmpk_message_handle_tx() local
127 frag_threshold = pfirmware->cmdpacket_frag_thresold; in cmpk_message_handle_tx()
129 if((buffer_len - frag_offset) > frag_threshold) { in cmpk_message_handle_tx()
130 frag_length = frag_threshold ; in cmpk_message_handle_tx()
/linux-3.4.99/drivers/net/wireless/iwmc3200wifi/
Dcfg80211.c407 (iwm->conf.frag_threshold != wiphy->frag_threshold)) { in iwm_cfg80211_set_wiphy_params()
410 iwm->conf.frag_threshold = wiphy->frag_threshold; in iwm_cfg80211_set_wiphy_params()
414 iwm->conf.frag_threshold); in iwm_cfg80211_set_wiphy_params()
Diwm.h78 u32 frag_threshold; member
Dmain.c78 .frag_threshold = IEEE80211_MAX_FRAG_THRESHOLD,
/linux-3.4.99/drivers/net/wireless/
Dat76c50x-usb.h256 __le16 frag_threshold; member
412 int frag_threshold; /* threshold for fragmentation of tx packets */ member
Dat76c50x-usb.c903 priv->mib_buf.index = offsetof(struct mib_mac, frag_threshold); in at76_set_frag()
1076 le16_to_cpu(m->frag_threshold), le16_to_cpu(m->rts_threshold), in at76_dump_mib_mac()
1382 priv->short_retry_limit, priv->frag_threshold, in at76_startup_device()
1414 ccfg->fragmentation_threshold = cpu_to_le16(priv->frag_threshold); in at76_startup_device()
1451 ret = at76_set_frag(priv, priv->frag_threshold); in at76_startup_device()
2271 priv->frag_threshold = DEF_FRAG_THRESHOLD; in at76_init_new_device()
Drndis_wlan.c1289 static int set_frag_threshold(struct usbnet *usbdev, u32 frag_threshold) in set_frag_threshold() argument
1293 netdev_dbg(usbdev->net, "%s(): %i\n", __func__, frag_threshold); in set_frag_threshold()
1295 if (frag_threshold < 256 || frag_threshold > 2346) in set_frag_threshold()
1296 frag_threshold = 2346; in set_frag_threshold()
1298 tmp = cpu_to_le32(frag_threshold); in set_frag_threshold()
1919 err = set_frag_threshold(usbdev, wiphy->frag_threshold); in rndis_set_wiphy_params()
/linux-3.4.99/net/wireless/
Ddebugfs.c37 wiphy->frag_threshold);
Dwext-compat.c333 u32 ofrag = wdev->wiphy->frag_threshold; in cfg80211_wext_siwfrag()
337 wdev->wiphy->frag_threshold = (u32) -1; in cfg80211_wext_siwfrag()
342 wdev->wiphy->frag_threshold = frag->value & ~0x1; in cfg80211_wext_siwfrag()
348 wdev->wiphy->frag_threshold = ofrag; in cfg80211_wext_siwfrag()
360 frag->value = wdev->wiphy->frag_threshold; in cfg80211_wext_giwfrag()
/linux-3.4.99/drivers/net/wireless/rtlwifi/rtl8192se/
Dfw.c170 u16 frag_threshold = MAX_FIRMWARE_CODE_SIZE; in _rtl92s_firmware_downloadcode() local
187 if ((buffer_len - frag_offset) > frag_threshold) { in _rtl92s_firmware_downloadcode()
188 frag_length = frag_threshold + extra_descoffset; in _rtl92s_firmware_downloadcode()
/linux-3.4.99/drivers/net/wireless/wl12xx/
Dacx.c898 int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold) in wl1271_acx_frag_threshold() argument
907 if (frag_threshold > IEEE80211_MAX_FRAG_THRESHOLD) in wl1271_acx_frag_threshold()
908 frag_threshold = wl->conf.tx.frag_threshold; in wl1271_acx_frag_threshold()
910 wl1271_debug(DEBUG_ACX, "acx frag threshold: %d", frag_threshold); in wl1271_acx_frag_threshold()
919 acx->frag_threshold = cpu_to_le16((u16)frag_threshold); in wl1271_acx_frag_threshold()
Dacx.h681 __le16 frag_threshold; member
1273 int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold);
Dconf.h657 u16 frag_threshold; member
Dinit.c735 ret = wl1271_acx_frag_threshold(wl, wl->hw->wiphy->frag_threshold); in wl1271_hw_init()
/linux-3.4.99/net/mac80211/
Dtx.c645 tx->local->hw.wiphy->frag_threshold); in ieee80211_tx_h_rate_ctrl()
872 int frag_threshold) in ieee80211_fragment() argument
877 int per_fragm = frag_threshold - hdrlen - FCS_LEN; in ieee80211_fragment()
893 frag_threshold + in ieee80211_fragment()
935 int frag_threshold = tx->local->hw.wiphy->frag_threshold; in ieee80211_tx_h_fragment() local
960 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold)) in ieee80211_tx_h_fragment()
971 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold)) in ieee80211_tx_h_fragment()
1212 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold || in ieee80211_tx_prepare()
/linux-3.4.99/drivers/net/wireless/brcm80211/brcmfmac/
Dwl_cfg80211.h164 u32 frag_threshold; member
Dwl_cfg80211.c725 static s32 brcmf_set_frag(struct net_device *ndev, u32 frag_threshold) in brcmf_set_frag() argument
729 err = brcmf_dev_intvar_set(ndev, "fragthresh", frag_threshold); in brcmf_set_frag()
767 (cfg_priv->conf->frag_threshold != wiphy->frag_threshold)) { in brcmf_cfg80211_set_wiphy_params()
768 cfg_priv->conf->frag_threshold = wiphy->frag_threshold; in brcmf_cfg80211_set_wiphy_params()
769 err = brcmf_set_frag(ndev, cfg_priv->conf->frag_threshold); in brcmf_cfg80211_set_wiphy_params()
3197 conf->frag_threshold = (u32)-1; in brcmf_init_conf()
/linux-3.4.99/drivers/staging/wlan-ng/
Dcfg80211.c449 if (wiphy->frag_threshold == -1) in prism2_set_wiphy_params()
452 data = wiphy->frag_threshold; in prism2_set_wiphy_params()
/linux-3.4.99/drivers/net/wireless/ipw2x00/
Dipw2100.h537 u32 frag_threshold; member

12