aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-05-11 21:47:58 +0800
committerobscuren <geffobscura@gmail.com>2015-05-11 23:21:22 +0800
commitd37a2559b928a8118a5eec77e2181cb6cf566be1 (patch)
tree12fa127f605e8b814d92c74dc5a543b9821a5189 /eth
parent70c65835f4747d991fe8d79e7138828cd97c6ac7 (diff)
downloaddexon-d37a2559b928a8118a5eec77e2181cb6cf566be1.tar
dexon-d37a2559b928a8118a5eec77e2181cb6cf566be1.tar.gz
dexon-d37a2559b928a8118a5eec77e2181cb6cf566be1.tar.bz2
dexon-d37a2559b928a8118a5eec77e2181cb6cf566be1.tar.lz
dexon-d37a2559b928a8118a5eec77e2181cb6cf566be1.tar.xz
dexon-d37a2559b928a8118a5eec77e2181cb6cf566be1.tar.zst
dexon-d37a2559b928a8118a5eec77e2181cb6cf566be1.zip
eth/downloader: revert to demotion, use harsher penalty
Diffstat (limited to 'eth')
-rw-r--r--eth/downloader/downloader.go12
-rw-r--r--eth/downloader/peer.go15
2 files changed, 19 insertions, 8 deletions
diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go
index b1e23f58f..5e9931f59 100644
--- a/eth/downloader/downloader.go
+++ b/eth/downloader/downloader.go
@@ -335,7 +335,7 @@ out:
// Deliver the received chunk of blocks, but drop the peer if invalid
if err := d.queue.Deliver(blockPack.peerId, blockPack.blocks); err != nil {
glog.V(logger.Debug).Infof("Failed delivery for peer %s: %v\n", blockPack.peerId, err)
- d.peers.Unregister(blockPack.peerId)
+ peer.Demote()
break
}
if glog.V(logger.Debug) {
@@ -358,7 +358,9 @@ out:
// 1) Time for them to respond;
// 2) Measure their speed;
// 3) Amount and availability.
- d.peers.Unregister(pid)
+ if peer := d.peers.Peer(pid); peer != nil {
+ peer.Demote()
+ }
}
// After removing bad peers make sure we actually have sufficient peer left to keep downloading
if d.peers.Peers() == 0 {
@@ -372,9 +374,13 @@ out:
if d.queue.Throttle() {
continue
}
- // Send a download request to all idle peers
+ // Send a download request to all idle peers, until throttled
idlePeers := d.peers.IdlePeers()
for _, peer := range idlePeers {
+ // Short circuit if throttling activated since above
+ if d.queue.Throttle() {
+ break
+ }
// Get a possible chunk. If nil is returned no chunk
// could be returned due to no hashes available.
request := d.queue.Reserve(peer, maxBlockFetch)
diff --git a/eth/downloader/peer.go b/eth/downloader/peer.go
index e2dec5571..1ff2d5149 100644
--- a/eth/downloader/peer.go
+++ b/eth/downloader/peer.go
@@ -86,10 +86,8 @@ func (p *peer) Demote() {
for {
// Calculate the new reputation value
prev := atomic.LoadInt32(&p.rep)
- next := prev - 2
- if next < 0 {
- next = 0
- }
+ next := prev / 2
+
// Try to update the old value
if atomic.CompareAndSwapInt32(&p.rep, prev, next) {
return
@@ -177,7 +175,7 @@ func (ps *peerSet) AllPeers() []*peer {
}
// IdlePeers retrieves a flat list of all the currently idle peers within the
-// active peer set.
+// active peer set, ordered by their reputation.
func (ps *peerSet) IdlePeers() []*peer {
ps.lock.RLock()
defer ps.lock.RUnlock()
@@ -188,5 +186,12 @@ func (ps *peerSet) IdlePeers() []*peer {
list = append(list, p)
}
}
+ for i := 0; i < len(list); i++ {
+ for j := i + 1; j < len(list); j++ {
+ if atomic.LoadInt32(&list[i].rep) < atomic.LoadInt32(&list[j].rep) {
+ list[i], list[j] = list[j], list[i]
+ }
+ }
+ }
return list
}