Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236181
b: refs/heads/master
c: d6075c9
h: refs/heads/master
i:
  236179: a53fe2d
v: v3
  • Loading branch information
Arend van Spriel authored and Greg Kroah-Hartman committed Mar 1, 2011
1 parent ddfe804 commit 32c6cbc
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 61044c4cef8b0380e8ec4b06eff24884e4c7d9b9
refs/heads/master: d6075c9c0ca52cc560f6a5be27c361aaa15603c6
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/brcmfmac/dhd_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -3309,7 +3309,7 @@ static u8 dhdsdio_rxglom(dhd_bus_t *bus, u8 rxseq)
}

pfirst = bus->glom;
dlen = (u16) pkttotlen(osh, pfirst);
dlen = (u16) pkttotlen(pfirst);

/* Do an SDIO read for the superframe. Configurable iovar to
* read directly into the chained packet, or allocate a large
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info *qi,
len = roundup(len, 4);
ampdu_len += (len + (ndelim + 1) * AMPDU_DELIMITER_LEN);

dma_len += (u16) pkttotlen(osh, p);
dma_len += (u16) pkttotlen(p);

WL_AMPDU_TX("wl%d: wlc_sendampdu: ampdu_len %d seg_cnt %d null delim %d\n",
wlc->pub->unit, ampdu_len, seg_cnt, ndelim);
Expand Down Expand Up @@ -755,7 +755,7 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info *qi,
((u8) (p->priority) == tid)) {

plen =
pkttotlen(osh, p) + AMPDU_MAX_MPDU_OVERHEAD;
pkttotlen(p) + AMPDU_MAX_MPDU_OVERHEAD;
plen = max(scb_ampdu->min_len, plen);

if ((plen + ampdu_len) > maxlen) {
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/staging/brcm80211/brcmsmac/wlc_mac80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -5125,7 +5125,7 @@ wlc_prec_enq_head(struct wlc_info *wlc, struct pktq *q, struct sk_buff *pkt,
tx_failed[WME_PRIO2AC(p->priority)].packets);
WLCNTADD(wlc->pub->_wme_cnt->
tx_failed[WME_PRIO2AC(p->priority)].bytes,
pkttotlen(wlc->osh, p));
pkttotlen(p));
}
pkt_buf_free_skb(wlc->osh, p, true);
wlc->pub->_cnt->txnobuf++;
Expand Down Expand Up @@ -5776,7 +5776,7 @@ wlc_d11hdrs_mac80211(struct wlc_info *wlc, struct ieee80211_hw *hw,
FC_SUBTYPE_ANY_QOS(fc));

/* compute length of frame in bytes for use in PLCP computations */
len = pkttotlen(osh, p);
len = pkttotlen(p);
phylen = len + FCS_LEN;

/* If WEP enabled, add room in phylen for the additional bytes of
Expand Down Expand Up @@ -6702,7 +6702,7 @@ wlc_dotxstatus(struct wlc_info *wlc, tx_status_t *txs, u32 frm_tx2)
tx_info->flags |= IEEE80211_TX_STAT_ACK;
}

totlen = pkttotlen(osh, p);
totlen = pkttotlen(p);
free_pdu = true;

wlc_txfifo_complete(wlc, queue, 1);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/include/bcmutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ extern struct sk_buff *pktq_mdeq(struct pktq *pq, uint prec_bmp, int *prec_out);
/* packet */
extern uint pktfrombuf(struct osl_info *osh, struct sk_buff *p,
uint offset, int len, unsigned char *buf);
extern uint pkttotlen(struct osl_info *osh, struct sk_buff *p);
extern uint pkttotlen(struct sk_buff *p);

/* ethernet address */
extern int bcm_ether_atoe(char *p, u8 *ea);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/util/bcmutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ uint pktfrombuf(struct osl_info *osh, struct sk_buff *p, uint offset, int len,
return ret;
}
/* return total length of buffer chain */
uint BCMFASTPATH pkttotlen(struct osl_info *osh, struct sk_buff *p)
uint BCMFASTPATH pkttotlen(struct sk_buff *p)
{
uint total;

Expand Down

0 comments on commit 32c6cbc

Please sign in to comment.