mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 08:03:00 -04:00
staging: brcm80211: use min_t() instead of min()
Also eliminate a cast to int that could cause issues with very large values of di->rxbufsize (as suggested by Dan Carpenter). Signed-off-by: Henry Ptasinski <henryp@broadcom.com> Signed-off-by: Roland Vossen <rvossen@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fa188ec8b6
commit
2618f3a63c
@@ -917,7 +917,7 @@ struct sk_buff *dma_rx(struct dma_pub *pub)
|
||||
tail = head;
|
||||
while ((resid > 0) && (p = _dma_getnextrxp(di, false))) {
|
||||
tail->next = p;
|
||||
pkt_len = min(resid, (int)di->rxbufsize);
|
||||
pkt_len = min_t(uint, resid, di->rxbufsize);
|
||||
__skb_trim(p, pkt_len);
|
||||
|
||||
tail = p;
|
||||
|
||||
Reference in New Issue
Block a user