diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-02-12 20:47:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-02-12 20:47:15 -0500 |
commit | 37bed90094fdb1eea6e4afec6a200d4e60143e55 (patch) | |
tree | 4590075dbc03c13dd532a974f040f18a07b1d130 /drivers/net/3c505.c | |
parent | 071a0bc2ceace31266836801510879407a3701fa (diff) | |
parent | 1d7b33f77b2d8b0b1ee767e6f8f05cbd9d72cb7c (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (32 commits)
wimax: fix oops in wimax_dev_get_by_genl_info() when looking up non-wimax iface
net: 4 bytes kernel memory disclosure in SO_BSDCOMPAT gsopt try #2
netxen: fix compile waring "label ‘set_32_bit_mask’ defined but not used" on IA64 platform
bnx2: Update version to 1.9.2 and copyright.
bnx2: Fix jumbo frames error handling.
bnx2: Update 5709 firmware.
bnx2: Update 5706/5708 firmware.
3c505: do not set pcb->data.raw beyond its size
Documentation/connector/cn_test.c: don't use gfp_any()
net: don't use in_atomic() in gfp_any()
IRDA: cnt is off by 1
netxen: remove pcie workaround
sun3: print when lance_open() fails
qlge: bugfix: Add missing rx buf clean index on early exit.
qlge: bugfix: Fix RX scaling values.
qlge: bugfix: Fix TSO breakage.
qlge: bugfix: Add missing dev_kfree_skb_any() call.
qlge: bugfix: Add missing put_page() call.
qlge: bugfix: Fix fatal error recovery hang.
qlge: bugfix: Use netif_receive_skb() and vlan_hwaccel_receive_skb().
...
Diffstat (limited to 'drivers/net/3c505.c')
-rw-r--r-- | drivers/net/3c505.c | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/drivers/net/3c505.c b/drivers/net/3c505.c index 6124605bef05..a8107f992fb4 100644 --- a/drivers/net/3c505.c +++ b/drivers/net/3c505.c | |||
@@ -493,21 +493,27 @@ static bool receive_pcb(struct net_device *dev, pcb_struct * pcb) | |||
493 | } | 493 | } |
494 | /* read the data */ | 494 | /* read the data */ |
495 | spin_lock_irqsave(&adapter->lock, flags); | 495 | spin_lock_irqsave(&adapter->lock, flags); |
496 | i = 0; | 496 | for (i = 0; i < MAX_PCB_DATA; i++) { |
497 | do { | 497 | for (j = 0; j < 20000; j++) { |
498 | j = 0; | 498 | stat = get_status(dev->base_addr); |
499 | while (((stat = get_status(dev->base_addr)) & ACRF) == 0 && j++ < 20000); | 499 | if (stat & ACRF) |
500 | pcb->data.raw[i++] = inb_command(dev->base_addr); | 500 | break; |
501 | if (i > MAX_PCB_DATA) | 501 | } |
502 | INVALID_PCB_MSG(i); | 502 | pcb->data.raw[i] = inb_command(dev->base_addr); |
503 | } while ((stat & ASF_PCB_MASK) != ASF_PCB_END && j < 20000); | 503 | if ((stat & ASF_PCB_MASK) == ASF_PCB_END || j >= 20000) |
504 | break; | ||
505 | } | ||
504 | spin_unlock_irqrestore(&adapter->lock, flags); | 506 | spin_unlock_irqrestore(&adapter->lock, flags); |
507 | if (i >= MAX_PCB_DATA) { | ||
508 | INVALID_PCB_MSG(i); | ||
509 | return false; | ||
510 | } | ||
505 | if (j >= 20000) { | 511 | if (j >= 20000) { |
506 | TIMEOUT_MSG(__LINE__); | 512 | TIMEOUT_MSG(__LINE__); |
507 | return false; | 513 | return false; |
508 | } | 514 | } |
509 | /* woops, the last "data" byte was really the length! */ | 515 | /* the last "data" byte was really the length! */ |
510 | total_length = pcb->data.raw[--i]; | 516 | total_length = pcb->data.raw[i]; |
511 | 517 | ||
512 | /* safety check total length vs data length */ | 518 | /* safety check total length vs data length */ |
513 | if (total_length != (pcb->length + 2)) { | 519 | if (total_length != (pcb->length + 2)) { |