1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-01 18:55:36 +00:00
Commit Graph

273 Commits

Author SHA1 Message Date
Con Kolivas
ec3d057016 Use the ringbuffer of curls from the same pool for submit as well as getwork threads.
Since the curl handles were already connected to the same pool and are immediately available, share submission will not be delayed by getworks.
2012-05-03 10:47:15 +10:00
Con Kolivas
7d288eac9f Implement a scaleable networking framework designed to cope with any sized network requirements, yet minimise the number of connections being reoped.
Do this by create a ring buffer linked list of curl handles to be used by getwork, recruiting extra handles when none is immediately available.
2012-05-03 10:41:57 +10:00
Con Kolivas
89053c78da There is no need for the submit and getwork curls to be tied to the pool struct. 2012-05-01 19:12:37 +10:00
ckolivas
adda6e6680 Do not recruit extra connection threads if there have been connection errors to the pool in question. 2012-05-01 17:48:23 +10:00
ckolivas
7638511290 We should not retry submitting shares indefinitely or we may end up with a huge backlog during network outages, so discard stale shares if we failed to submit them and they've become stale in the interim. 2012-05-01 09:54:34 +10:00
Con Kolivas
b015348df4 Shorten stale share messages slightly. 2012-04-29 10:08:12 +10:00
Con Kolivas
7233890d85 Protect the freeing of current_hash under mutex_lock to prevent racing on it when set_curblock is hit concurrently. 2012-04-29 10:03:01 +10:00
Con Kolivas
53c22551f7 Change default behaviour to submitting stale, removing the --submit-stale option and adding a --no-submit-stale option. 2012-04-29 09:12:23 +10:00
Con Kolivas
f9123f0587 Make sure to start the getwork and submit threads when a pool is added on the fly. 2012-04-29 08:55:59 +10:00
Con Kolivas
5ad942d187 Faster hardware can easily outstrip the speed we can get work and submit shares when using only one connection per pool.
Test the queued list to see if any get/submits are already queued and if they are, start recruiting extra connections by generating new threads.
This allows us to reuse network connections at low loads but recuit new open connections as they're needed, so that cgminer can scale to hardware of any size.
2012-04-29 00:56:23 +10:00
Con Kolivas
628ac19977 Get rid of confusing "waiting on fresh work" part of longpoll message to minimise log width and add pool number to longpoll work restart message. 2012-04-28 14:00:34 +10:00
Con Kolivas
972860c0af Remove unused variable. 2012-04-28 13:36:27 +10:00
Con Kolivas
3362a2a447 Give a longpoll message for any longpoll that detects a block change, primary or backup, and also display which pool it was. 2012-04-28 13:31:27 +10:00
Con Kolivas
e1cf5029d4 Decrease utility display to one decimal place. 2012-04-28 12:22:23 +10:00
Con Kolivas
7b370bb2e7 Small cosmetic output alignment. 2012-04-28 09:19:32 +10:00
Con Kolivas
669b0deda3 Add pool number to stale share message. 2012-04-28 08:39:06 +10:00
Con Kolivas
03fab3f438 Remove thread id display from rejected shares as well. 2012-04-28 00:16:34 +10:00
Con Kolivas
86e94edb89 Set have_longpoll to true when there is at least one pool with longpoll. 2012-04-27 15:47:21 +10:00
Con Kolivas
0365878ac5 Don't display the thread ID since it adds no useful information over the device number. 2012-04-27 15:30:42 +10:00
Con Kolivas
08c721080d Don't display the first 8 bytes of a share since they will always be zero at >= 1 difficulty. 2012-04-27 15:29:31 +10:00
Con Kolivas
501e35a0e6 work->longpoll is reset across test_work_current so we need to recheck what pool it belongs to. 2012-04-27 14:02:29 +10:00
Con Kolivas
03abb70467 Use longpolls from backup pools with failover-only enabled just to check for block changes, but don't use them as work. 2012-04-27 13:59:43 +10:00
Con Kolivas
1ab318d0f3 Start longpoll only after we have tried to extract the longpoll URL. 2012-04-27 13:11:19 +10:00
Con Kolivas
b1c273e71b Check for submitold flag on resubmit of shares, and give different message for stale shares on retry. 2012-04-27 12:54:29 +10:00
Con Kolivas
5ece966f07 Check for submitold before submitstale. 2012-04-27 12:47:13 +10:00
Con Kolivas
ed718b2b50 Don't force fresh curl connections on anything but longpoll threads. 2012-04-27 12:28:51 +10:00
Con Kolivas
eda382990a Create one longpoll thread per pool, using backup pools for those pools that don't have longpoll.
Use the work created from the longpoll return only if we don't have failover-enabled, and only flag the work as a longpoll if it is the current pool.
This will work around the problem of trying to restart the single longpoll thread on pool changes that was leading to race conditions.
It will also have less work restarts from the multiple longpolls received from different pools.
2012-04-27 11:58:47 +10:00
Con Kolivas
e502fde52b Remove the ability to disable longpoll. It is not a useful feature and will conflict with planned changes to longpoll code. 2012-04-27 11:13:52 +10:00
Con Kolivas
8e84abfc22 Merge pull request #184 from luke-jr/bugfix_const_warning
Bugfix: Make initial_args a const char** to satisfy exec argument type warning (MinGW)
2012-04-26 17:36:19 -07:00
Con Kolivas
8d8f4ff856 Merge pull request #182 from kanoi/master
api.c 'devdetails' list static details of devices + ZTex ++
2012-04-26 16:38:17 -07:00
Luke Dashjr
90c5ef1fa7 Bugfix: Make initial_args a const char** to satisfy exec argument type warning (on Windows only) 2012-04-26 14:58:31 -04:00
Con Kolivas
4cd973264f Create discrete persistent submit and get work threads per pool, thus allowing all submitworks belonging to the same pool to reuse the same curl handle, and all getworks to reuse their own handle.
Use separate handles for submission to not make getwork potentially delay share submission which is time critical.
This will allow much more reusing of persistent connections instead of opening new ones which can flood routers.
This mandated a rework of the extra longpoll support (for when pools are switched) and this is managed by restarting longpoll cleanly and waiting for a thread join.
2012-04-26 23:29:21 +10:00
Kano
b3ac249e71 cgminer.c sharelog code consistency and compile warning fix 2012-04-26 00:20:16 +10:00
Luke Dashjr
4648330c9d Support for share logging 2012-04-25 12:05:33 +10:00
Con Kolivas
f5f089f5b4 Add a --gpu-map option which will allow arbitrarily mapping ADL devices to OpenCL devices for instances where association by enumeration alone fails. 2012-04-23 17:40:47 +10:00
Con Kolivas
99331991ba Increase upper limit on number of extra items to queue as some FPGA code can't yet reliably keep many devices busy. 2012-04-23 09:53:40 +10:00
Con Kolivas
d6edd07c4a Display configuration file information when -c option is passed and only when file exists on loading default config file. 2012-04-22 21:09:36 +10:00
Con Kolivas
6ffdbc3aeb Display configuration file loaded, if any, and debug output if configuration file parsing failed. 2012-04-22 20:50:50 +10:00
Con Kolivas
cfe3eb0b8a Merge branch 'master' into ztex
Conflicts:
	configure.ac
2012-04-22 10:43:31 +10:00
Luke Dashjr
0d92069760 Merge branch 'master' into align_temps
Conflicts:
	cgminer.c
2012-04-21 03:32:57 -04:00
Luke Dashjr
657716e563 Merge branch 'master' into ztex 2012-04-21 02:56:20 -04:00
Con Kolivas
7b947882fe Merge pull request #157 from luke-jr/unify_drivers
Unify drivers as driver-*.c and add driver name to API
2012-04-20 23:41:46 -07:00
Con Kolivas
86671f80a8 Make the status window and log window as large as can fit on startup, rechecking to see if it can be enlarged after the fact. This allows any number of devices to be displayed provided the window is made long enough without corrupting the output. 2012-04-21 16:39:14 +10:00
Luke Dashjr
b8778839e9 Merge branch 'master' into unify_drivers
Conflicts:
	cgminer.c
2012-04-21 02:36:19 -04:00
Con Kolivas
c7cc2e4226 Merge branch 'master' into ztex 2012-04-21 14:03:41 +10:00
Con Kolivas
e08936c3fb Merge pull request #166 from kanoi/master
api.c escape required characters in return strings + pools returns the username
2012-04-20 15:00:39 -07:00
Kano
2e1d2017de API add removepool like the screen interface 2012-04-21 03:15:41 +10:00
Con Kolivas
46faefbe82 Merge branch 'ztex-master' of https://github.com/nelisky/cgminer into ztex 2012-04-20 21:20:03 +10:00
ckolivas
b80d22b9d2 Increase maximum number of displayed devices to 14, beyond which the screen becomes corrupted. 2012-04-20 14:24:58 +10:00
nelisky
7fe7d18dba removing unused libusb_context pointer 2012-04-16 14:14:52 -07:00
nelisky
608a520573 Tweaks to make ztex work on a tp-link router with openwrt 2012-04-16 11:34:54 -07:00
nelisky
c3bda2b709 adding path to libusb include 2012-04-16 04:07:19 -07:00
nelisky
99a188f94f initial commit with some support for ztex 1.15x board.
This version is just a rough draft, but it does alredy mine.

Conflicts:

	cgminer.c
	configure.ac
2012-04-16 04:01:51 -07:00
Con Kolivas
7c6090fbaf Cache the initial arguments passed to cgminer and implement an attempted restart option from the settings menu. 2012-04-14 15:48:31 +10:00
Con Kolivas
f3e4305620 Disable per-device status lines when there are more than 8 devices since screen output will be corrupted, enumerating them to the log output instead at startup. 2012-04-14 14:11:58 +10:00
Con Kolivas
dceaa71a7b Make sure to disable devices with any status not being DEV_ENABLED to ensure that thermal cutoff code works as it was setting the status to DEV_RECOVER. 2012-04-14 00:56:31 +10:00
Con Kolivas
0a4a2d9d65 Damping small changes in hashrate so dramatically has the tendency to always make the hashrate underread so go back to gentle damping instead. 2012-03-31 14:39:40 +11:00
Con Kolivas
c99c09d389 Merge pull request #161 from kanoi/master
When using '-m' on linux, send the forked process a SIGTERM on exit
2012-03-30 06:25:38 -07:00
Con Kolivas
7f64adc473 Merge pull request #160 from luke-jr/bugfix_realquiet_2
Bugfix: Skip enabling curses, if --real-quiet or listing devices
2012-03-30 06:25:07 -07:00
Kano
f9af5acf13 When using '-m' on linux, send the forked process a SIGTERM on exit 2012-03-30 22:28:43 +11:00
Con Kolivas
88ff55e70e Use a time constant 0.63 for when large changes in hashrate are detected to damp change in case the large change is an aliasing artefact instead of a real change. 2012-03-29 21:02:42 +11:00
Con Kolivas
a1879c8057 Only increment stale counter if the detected stales are discarded. 2012-03-29 20:53:16 +11:00
ckolivas
35de9d1e07 Use slightly more damping on the decay time function in the never-ending quest to smooth off the hashmeter. 2012-03-29 09:35:48 +11:00
Con Kolivas
eb4233d500 Merge pull request #156 from luke-jr/ignore_redundant
Ignore redundant-with-build options
2012-03-28 04:26:20 -07:00
Con Kolivas
7458927f02 Merge pull request #155 from luke-jr/no_curses
Make curses TUI support optional at compile-time.
2012-03-28 04:25:54 -07:00
Con Kolivas
2beb3500d4 Merge pull request #153 from kanoi/master
Add API support for Icarus and Bitforce + Icarus fixes ++
2012-03-28 04:24:41 -07:00
Con Kolivas
ef1eafa40a Provide locking around updates of cgpu hashrates as well to prevent multiple threads accessing data fields on the same device. 2012-03-28 21:58:04 +11:00
Con Kolivas
fa5e0675d6 Display the beginning of the new block in verbose mode in the logs. 2012-03-28 20:32:49 +11:00
Kano
eeec98098f code changes for supporting a simple device history 2012-03-23 01:50:45 +11:00
Luke Dashjr
f05a319e01 CGPU API for device names 2012-03-18 21:32:01 -04:00
Luke Dashjr
303dbf4664 Abstract add_cgpu function, to handle device id numbering and devices array 2012-03-18 20:09:03 -04:00
Luke Dashjr
c739d0dc15 Merge branch 'bugfix_realquiet' into bugfix_realquiet_2
Conflicts:
	cgminer.c
2012-03-13 13:11:55 -04:00
Luke Dashjr
03c94c02e9 Bugfix: Skip enabling curses, if --real-quiet or listing devices 2012-03-13 13:10:31 -04:00
Luke Dashjr
e131dfab31 Unify drivers as driver-*.c and add driver name to API 2012-03-13 12:18:23 -04:00
Luke Dashjr
b6ae200dad Ignore reduntant-with-build options --disable-gpu, --no-adl, and --no-restart 2012-03-13 09:13:19 -04:00
Luke Dashjr
ed8382c88d Make curses TUI support optional at compile-time. 2012-03-12 18:38:45 -04:00
Luke Dashjr
3a003b9ab8 Bugfix: Allow enabling CPU even without OpenCL support 2012-02-25 14:43:28 -05:00
Con Kolivas
daf1eff13c Change failed-to-mine number of requested shares messge to avoid segfault on recursive calling of quit(). 2012-02-26 00:46:19 +11:00
Con Kolivas
0412ac7c21 Only send out extra longpoll requests if we want longpolls. 2012-02-24 14:14:05 +11:00
Con Kolivas
dbb04a6922 Increase the speed of hashrate adaptation. 2012-02-24 14:14:05 +11:00
Con Kolivas
50a33aa6a3 Consider extra longpoll work items as staged_extra so as to make sure we queue more work if queueing regular work items as longpolls. 2012-02-23 20:43:18 +11:00
Con Kolivas
553d53fcee Reset all hash counters at the same time as resetting start times to get accurate hashrates on exiting which is mandatory for benchmarking. 2012-02-23 17:58:06 +11:00
Con Kolivas
88a9d83e19 Report thread in during getting of work in benchmark mode. 2012-02-23 17:54:27 +11:00
Con Kolivas
49ba39627c Report thread out before it starts to avoid being flagged as sick when waiting for the first work item. 2012-02-23 17:52:01 +11:00
Con Kolivas
f4df8c82a7 Merge pull request #135 from kanoi/master
API new commands enablepool and disablepool
2012-02-22 21:56:48 -08:00
Kano
60c5ac6844 API new commands enablepool and disablepool (version already incremented) 2012-02-23 16:10:17 +11:00
Kano
4458f3d5c7 Modify cgminer.c pool control to allow API to call it 2012-02-23 13:58:33 +11:00
Con Kolivas
4dd6b649d5 Merge pull request #131 from kanoi/master
Allow configuration file to include another recursively
2012-02-22 15:40:56 -08:00
Kano
ca2b2d9b9a Don't save 'include' when saving the configuration 2012-02-23 01:44:41 +11:00
Kano
915c72d8e7 Allow configuration file to include another recursively 2012-02-23 01:31:52 +11:00
Con Kolivas
527e611b74 Fix !HAVE_OPENCL build. 2012-02-23 01:27:36 +11:00
ckolivas
0db998c5d0 Add a --benchmark feature which works on a fake item indefinitely to compare device performance without any server or networking influence. 2012-02-22 22:21:18 +11:00
ckolivas
d3ad87f5d2 Allow writing of multiple worksizes to the configuration file. 2012-02-22 20:13:23 +11:00
ckolivas
1b1fa5cd89 Allow writing of multiple vector sizes to the configuration file. 2012-02-22 20:08:29 +11:00
ckolivas
994cd77501 Allow writing of multiple kernels to the configuration file. 2012-02-22 20:01:09 +11:00
ckolivas
93efb726bb Allow multiple different kernels to be chosen per device. 2012-02-22 19:38:01 +11:00
Con Kolivas
26c59fbf0f Allow the worksize to be set per-device. 2012-02-22 16:59:28 +11:00
Con Kolivas
deff55c640 Allow different vectors to be set per device. 2012-02-22 16:54:06 +11:00
Con Kolivas
bca9814d41 Reset times after all mining threads are started to make estimating hashrates easier at startup. 2012-02-22 11:50:35 +11:00
Con Kolivas
d1cddf8bad Update licensing to GPL V3. 2012-02-21 22:23:07 +11:00
Con Kolivas
882e4d85de Merge pull request #123 from xiangfu/icarus
Add Icarus Support to Cgminer
2012-02-21 03:14:20 -08:00
Con Kolivas
2f3a4a47c8 Reset the longpoll flag after it's been used once to prevent it restarting work again. 2012-02-21 21:56:30 +11:00
Con Kolivas
2ca8d38e0e Merge pull request #124 from kanoi/master
API commits - IP 0/0 means all, add "Log Interval" to config, restrict access to modify commands
2012-02-21 02:49:25 -08:00
Con Kolivas
00290a3e02 Select diablo kernel on all but GCN+SDK 2.6. 2012-02-21 21:48:10 +11:00
Kano
e3281c2643 When API shuts down cgminer don't kill itself 2012-02-21 20:03:13 +11:00
Con Kolivas
af7368daca Don't make rolled work from the longpoll be seen as other longpoll work items. 2012-02-21 16:43:24 +11:00
Con Kolivas
f4284a21a8 Set the lp_sent variable under lock since there will almost always be a race on setting this variable, potentially leading to multiple LPs being sent
out.
2012-02-21 09:22:04 +11:00
Con Kolivas
89b32b1738 Officially support diakgcn in code and docs. 2012-02-20 09:28:01 +11:00
Con Kolivas
fe4b5e1fc6 Set the lp_sent bool earlier to minimise the number of extra longpolls sent out. 2012-02-20 08:26:46 +11:00
Xiangfu
f46c2b28a0 add icarus to cgminer.c 2012-02-19 22:22:02 +08:00
Con Kolivas
3cdac04f4f Flag the pool that is the longpoll thread to avoid sending multiple longpolls during the slight delays between requesting and setting the lp_sent flag. 2012-02-19 23:13:02 +11:00
Con Kolivas
56baa87437 Make sure to request on the lp url when requesting a longpoll indrectly via get upstream work. 2012-02-19 22:19:59 +11:00
Con Kolivas
79e95dd95c Store whether a work item is the result of a longpoll or not in struct work and use it to help determine block changes directly from the work longpoll
bool.
2012-02-19 22:15:55 +11:00
Con Kolivas
39906718d2 Keep track of when a longpoll has been sent for a pool and if the current pool is requesting work but has not sent a longpoll request, convert one of
the work items to a longpoll as we may have switched pools but still be using the longpoll from the previous pool.
2012-02-19 22:07:31 +11:00
Con Kolivas
4eca1aa05c Store the longpoll url in the pool struct and update it from the pool_active test in case it changes. This is to allow further changes to longpoll
management on switching pools.
2012-02-19 21:50:02 +11:00
Con Kolivas
f85b85d244 Re-check for a longpoll supporting pool every 30 seconds if none is found initially. 2012-02-19 21:28:23 +11:00
Con Kolivas
b217cbee0d Report threads as busy waiting on getwork on startup to avoid them being flagged sick on startup during slow networking. 2012-02-19 20:33:09 +11:00
Con Kolivas
02295c69c8 Allow devices that are disabled due to overheating to be flagged as recovering instead of disabling them and re-enable them if they're below ideal
temperatures and --no-restart has not been set.
2012-02-19 20:19:47 +11:00
Con Kolivas
810ad04578 More copyright updates. 2012-02-18 23:16:08 +11:00
Con Kolivas
17cc279adb Always use a fresh connection for longpoll as prolonged persistent connections can fail for many reasons. 2012-02-18 22:41:48 +11:00
Con Kolivas
06721957a0 Freeze the queues on all threads that are sent the pause message to prevent them trying to start up again with saved pings in their queues. 2012-02-18 16:34:06 +11:00
Con Kolivas
f0e12fc593 Consolidate all screen updates to the watchdog thread and touch both windows before refresh. 2012-02-18 00:25:48 +11:00
Con Kolivas
d2b3fbc90c Curses will be disabled in clean_up so don't do it early in kill_work, and disable_adl so that GPU settings may be restored to normal in case shutting
down curses leads to instability on windows.
2012-02-17 23:11:50 +11:00
Con Kolivas
61328a4292 Stop the mining threads before trying to kill them. 2012-02-17 23:10:01 +11:00
Con Kolivas
1c211c5f41 Plain refresh() does not give reliably screen updates so get rid of all uses of it. 2012-02-17 22:55:33 +11:00
ckolivas
9a0e4f8fac Move logwindow down once number of devices is known. 2012-02-15 15:21:43 +11:00
ckolivas
c235c7e373 Allow the refresh interval to be adjusted in dynamic intensity with a --gpu-dyninterval parameter. 2012-02-15 14:35:13 +11:00
ckolivas
e259a994f1 Make curses display visible right from the beginning and fix the window sizes so the initial messages don't get lost once the status window is drawn. 2012-02-15 13:53:26 +11:00
ckolivas
c531f1bd04 Use the max_hashes variable to determine when to abandon work. 2012-02-15 10:34:26 +11:00
monson
8047af5af4 fix strcpy NULL pointer if env HOME unset. 2012-02-14 14:20:50 +08:00
Con Kolivas
56907db2d6 Fix harmless warnings with -Wsign-compare to allow cgminer to build with -W. 2012-02-12 18:21:30 +11:00
Con Kolivas
111238489f Fix missing field initialisers warnings. 2012-02-12 17:53:50 +11:00
Con Kolivas
1885374802 Merge pull request #112 from luke-jr/jansson_compat
Restore compatibility with Jansson 1.3 and 2.0 (api.c required 2.1)
2012-02-11 22:01:51 -08:00
Luke Dashjr
fdadb0b549 Restore compatibility with Jansson 1.3 and 2.0 (api.c required 2.1) 2012-02-11 15:46:08 -05:00
zefir
e0fec35751 modularized logging, support for priority based logging
Functions related to logging are extracted into dedicated source files
for better maintainability.

The existing low-level logging API is extended with a generalized scheme
providing log functions log_{error, warning, notice, info, debug} that
log messages based on a global opt_log_level.

opt_log_level for now is set to LOG_NOTICE and might be modified via
command line options or config files in future releases.
2012-02-11 20:26:25 +01:00
zefir
713e8be629 move CPU chipset specific optimization into device-cpu 2012-02-11 20:25:41 +01:00
Con Kolivas
405a2120f8 Remove unnecessary check for opt_debug on every invocation of applog at LOG_DEBUG and place the check in applog(). 2012-02-11 20:11:18 +11:00
Con Kolivas
81d4f620ff Various string fixes for reject reason. 2012-02-11 15:15:03 +11:00
Con Kolivas
b706da9374 Merge branch 'reject_reason' of https://github.com/luke-jr/cgminer into reject 2012-02-11 14:55:12 +11:00
Luke Dashjr
543265d66a Generalize --temp-cutoff and implement support for reading temperature from BitFORCE FPGAs 2012-02-10 22:14:27 -05:00
Con Kolivas
8c609579f4 Merge pull request #107 from kanoi/master
Allow API to restrict access by IP address + other commits
2012-02-10 19:07:53 -08:00
Con Kolivas
d24ee7824a Change message from recovered to alive since it is used on startup as well as when a pool has recovered. 2012-02-11 13:57:35 +11:00
Con Kolivas
8e682a2c32 Start mining as soon as any pool is found active and rely on the watchpool thread to bring up other pools. 2012-02-11 13:53:09 +11:00
Con Kolivas
405fcd76ca Delayed responses from testing pools that are down can hold up the watchdog thread from getting to its device testing code, leading to false detection
of the GPU not checking in, and can substantially delay auto gpu/auto fan management leading to overheating. Move pool watching to its own thread.
2012-02-11 13:38:17 +11:00
Con Kolivas
5ec684ce2b Space out retrieval of extra work according to the number of mining threads. 2012-02-11 13:20:32 +11:00
Con Kolivas
37374bb44b Make shutdown more robust.
Enable the input thread only after the other threads exist.
Don't kill off the workio thread and use it to exit main() only if there is an unexpected problem.
Use kill_work() for all anticipated shutdowns where possible.
Remove unused thread entry.
2012-02-11 13:11:56 +11:00
ckolivas
95a989da4d Conflicting entries of cl_kernel may have been causing problems, and automatically chosen kernel type was not being passed on. Rename the enum to cl_kernels and store the chosen kernel in each clState. 2012-02-11 11:48:12 +11:00
Con Kolivas
6e3ad7ad25 Logic fail on queue request. 2012-02-09 22:40:33 +11:00
Con Kolivas
d40979d173 No point discarding a share even if opt_fail is enabled. 2012-02-09 22:28:59 +11:00
Con Kolivas
435e5c85f6 Work items have a tendency to expire at exactly the same time and we don't queue extra items when there are plenty in the queue, regardless of age.
Allow extra work items to be queued if adequate time has passed since we last requested work even if over the limit.
2012-02-09 22:27:20 +11:00