• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rt2860/common/

Lines Matching refs:Elem

800 			struct rt_mlme_queue_elem *Elem =
803 if (Elem != NULL) {
805 NdisZeroMemory(Elem, sizeof(struct rt_mlme_queue_elem));
812 Elem->MsgLen = sizeof(DelbaReq);
813 NdisMoveMemory(Elem->Msg, &DelbaReq,
815 MlmeDELBAAction(pAd, Elem);
816 kfree(Elem);
840 struct rt_mlme_queue_elem *Elem =
843 if (Elem != NULL) {
845 NdisZeroMemory(Elem, sizeof(struct rt_mlme_queue_elem));
852 Elem->MsgLen = sizeof(DelbaReq);
853 NdisMoveMemory(Elem->Msg, &DelbaReq, sizeof(DelbaReq));
854 MlmeDELBAAction(pAd, Elem);
855 kfree(Elem);
909 struct rt_mlme_queue_elem *Elem =
912 if (Elem != NULL) {
914 NdisZeroMemory(Elem, sizeof(struct rt_mlme_queue_elem));
921 Elem->MsgLen = sizeof(DelbaReq);
922 NdisMoveMemory(Elem->Msg, &DelbaReq,
924 MlmeDELBAAction(pAd, Elem);
925 kfree(Elem);
1073 void PeerAddBAReqAction(struct rt_rtmp_adapter *pAd, struct rt_mlme_queue_elem *Elem)
1089 ("%s ==> (Wcid = %d)\n", __func__, Elem->Wcid));
1091 /*hex_dump("AddBAReq", Elem->Msg, Elem->MsgLen); */
1094 if (Elem->Wcid >= MAX_LEN_OF_MAC_TABLE)
1097 pMacEntry = &pAd->MacTab.Content[Elem->Wcid];
1099 ptemp = (unsigned long *)Elem->Msg;
1102 if (PeerAddBAReqActionSanity(pAd, Elem->Msg, Elem->MsgLen, pAddr)) {
1106 pAddreqFrame = (struct rt_frame_addba_req *) (&Elem->Msg[0]);
1108 ("Rcv Wcid(%d) AddBAReq\n", Elem->Wcid));
1110 (pAd, &pAd->MacTab.Content[Elem->Wcid],
1120 if (pAd->MacTab.Content[Elem->Wcid].ValidAsCLI)
1121 ASSERT(pAd->MacTab.Content[Elem->Wcid].Sst == SST_ASSOC);
1123 pAddreqFrame = (struct rt_frame_addba_req *) (&Elem->Msg[0]);
1172 ("%s(%d): TID(%d), BufSize(%d) <== \n", __func__, Elem->Wcid,
1176 void PeerAddBARspAction(struct rt_rtmp_adapter *pAd, struct rt_mlme_queue_elem *Elem)
1184 if (Elem->Wcid >= MAX_LEN_OF_MAC_TABLE)
1187 DBGPRINT(RT_DEBUG_TRACE, ("%s ==> Wcid(%d)\n", __func__, Elem->Wcid));
1189 /*hex_dump("PeerAddBARspAction()", Elem->Msg, Elem->MsgLen); */
1191 if (PeerAddBARspActionSanity(pAd, Elem->Msg, Elem->MsgLen)) {
1192 pFrame = (struct rt_frame_addba_rsp *) (&Elem->Msg[0]);
1199 BAOriSessionAdd(pAd, &pAd->MacTab.Content[Elem->Wcid],
1204 BAOriSessionTearDown(pAd, Elem->Wcid,
1213 pAd->MacTab.Content[Elem->Wcid].BADeclineBitmap |=
1219 void PeerDelBAAction(struct rt_rtmp_adapter *pAd, struct rt_mlme_queue_elem *Elem)
1227 if (PeerDelBAActionSanity(pAd, Elem->Wcid, Elem->Msg, Elem->MsgLen)) {
1228 pDelFrame = (struct rt_frame_delba_req *) (&Elem->Msg[0]);
1232 BARecSessionTearDown(pAd, Elem->Wcid,
1238 /*hex_dump("DelBA Frame", pDelFrame, Elem->MsgLen); */
1239 BAOriSessionTearDown(pAd, Elem->Wcid,