NEWS 257 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322
  1. Version 3.8.1 - 11th November 2013
  2. - Revert "Send a zero length packet at the end of every usb transfer on windows
  3. in case libusb internally has batched them into one maxpacket sized."
  4. Version 3.8.0 - 10th November 2013
  5. - api update version to 2.0 and remove GPU form API-README
  6. -Remove now unused scrypt files.
  7. - api.c remove all GPU/gpu references and correct code as required
  8. - Rudimentary removal of GPU OpenCL and Scrypt features from api.c
  9. - Reorder configure alphabetically for devices to compile and fail if no support
  10. is selected to be compiled in.
  11. - BaB update/format some comments
  12. - BlackArrowBitfury early GPIO V1 driver
  13. - Fine tune the reading of results in bitfury driver to not lose any across work
  14. restarts or corrupt due to store results not parsed during restart.
  15. - Send a zero length packet at the end of every usb transfer on windows in case
  16. libusb internally has batched them into one maxpacket sized.
  17. - Framework for ntime rolling, keep looking for OP_USB_INIT replies when other
  18. packets received
  19. - Configure source for a new BaB driver
  20. - sha2 allow external access to some macros and the K array
  21. - Fixed a math issue when reporting fan speed on the status line.
  22. - Use the main hashlist to store work done in the bitfury driver and remove work
  23. from the list by time, thereby fixing the duplicates at startup. Count hardware
  24. errors for when no match occurs.
  25. - Add a get and queue helper work function.
  26. - Remove GPU mining code.
  27. - Use libusb's own zero length packet support unless we have to emulate it on
  28. windows since only libusb knows for sure if it's needed.
  29. - Unlock the avalon qlock while sending tasks to not hold the lock for an
  30. extended period.
  31. - Sleep in avalon send task on return to the function to allow other code to
  32. work during the sleep period.
  33. - Send zero length packets when terminating a usb write aligned to
  34. maxpacketsize.
  35. - Do the driver flush in avalon code lockless since it can lead to deadlocks.
  36. - Reset the work_restart bool after the scanwork loop in case the driver flushes
  37. work synchronously.
  38. - Only check for the stratum clean message if we have had a valid message.
  39. - Get rid of the stage thread since all work can be asynchronously added now via
  40. hash_push anyway.
  41. - Remove the now incorrect faq entry regarding scrypt difficulty.
  42. - Check for fatal read errors and break out of the read loop in avalon.
  43. - Send errors are basically fatal in avalon driver so break out of the send
  44. tasks loop.
  45. - Make the avalon driver return -1 for hash count when usb fails, allowing the
  46. main loop code to send it the shutdown flag.
  47. - Break out of the hash work loops when a failure is detected instead of
  48. dropping into mt disable.
  49. - Use usbutils' own ftdi parser for avalon and the ftdir's own latency for
  50. managing timeouts since we can wait on reads with completely asynchronous
  51. reads+writes.
  52. - Use usbutils' own cps function for slowing rate of usb writes on avalon.
  53. - Fix build for no libcurl
  54. - Check length before submitting sync transfers
  55. Version 3.7.2 - 5th November 2013
  56. - Clean up completely on avalon shutdown.
  57. - Use cgsem timed waits in avalon driver to not miss any queued wake ups to
  58. account for async messages coming during a flush work.
  59. - Statline before is too long on icarus that doesn't have monitoring.
  60. - Different windows+usb combinations respond with varying levels of reliability
  61. wrt timeouts so use a nominal extra 40ms before cancelling transfers that fail
  62. to time out on their own.
  63. - Do all hotplug_process under the write mining_thr_lock
  64. - Fix for opt_worktime on big endian machines.
  65. - Correct set_blockdiff for big endian machines.
  66. - Make sure cgpu exists in the restart threads loop in cases of hotplug etc.
  67. - Treat usb write timeout errors as unrecoverable.
  68. - Transfer errors are filtered out in usbutils now so no need to look for them
  69. in NODEV checks.
  70. - Remove now unused entries from struct cg_usb_device
  71. - Do not double up with checking for end of timeout measurements in usb
  72. read/write.
  73. - Do get_work in fill_queue without holding other locks.
  74. - Initialise usb after all the locks and conditionals are initialised.
  75. - Use only a trylock in flush queue to prevent deadlocks.
  76. - Add a wr_trylock wrapper for pthread rw lock write trylock.
  77. - Scale diff for scrypt when testing for block solves.
  78. - Fix for non curses build.
  79. Version 3.7.0 - 4th November 2013
  80. - Use WRITEIOERR macro check for all usb writes.
  81. - Always use a usb read buffer instead of having to explicitly enable it.
  82. - Force unlocking of the console lock on restart to avoid corrupting the console
  83. state when we finally quit.
  84. - Never wait indefinitely for a pthread conditional in the hash_pop loop in case
  85. the work scheduler misses the last wakeup.
  86. - Make hash_pop signal the work scheduler each time it waits on the conditional
  87. that it should look for more work.
  88. - Discriminate between libusb transfer errors and regular libusb errors and make
  89. sure to capture them all.
  90. - Always read a full sized transfer for bulk reads.
  91. - Deprecate preferred packet size functions in usbutils since they're unhelpful.
  92. - Copy known transferred amount back to buffer for usb reads instead of
  93. requested length.
  94. - Treat timeout errors on usb writes as IO errors.
  95. - Ignore iManufacturer from bitfury devices to support bluefury as well as
  96. redfury.
  97. - Add more debugging info for when usb details don't match.
  98. - Look for timeout overruns in usb read/write.
  99. - Use an int for usb_read/write to identify overruns.
  100. - Use the callback timeout as a safety mechanism only on windows.
  101. - Instead of using complicated sleeps to emulate characters per second on usb
  102. writes, submit only as many characters as can be transferred per usb poll of
  103. 1ms, and use timeouts in bulk transfers, cancelling transfers only as a
  104. failsafe.
  105. - Remove discarded work from quota used.
  106. - Display works completed in summary and API data.
  107. - Store how many work items are worked on per pool.
  108. - Make each pool store its on reference for what the most current block is and
  109. fine tune management of block change in shared pool failover strategies using
  110. the information.
  111. - Rationalise use of current_hash to a single hex string the length of the
  112. previous block and display only the first non zero hex chars of the block in the
  113. status window.
  114. - Update uthash to latest.
  115. - show_hash doesn't know the size of the string so hard code the max size.
  116. - Remove as many initial zeroes as exist on share display, abstracting out a
  117. hash show function to use across different submission mechanisms.
  118. - Add missing endian swap functions for 64bits.
  119. - Sanity check for absurd target setting and divide by zero.
  120. - Abstract out conversion of a 256 bit endian number to a double, correcting
  121. errors and use it for determining any magnitude share diff.
  122. - Avoid the extra generation of a byte flipped hash2 in struct work and directly
  123. use the LE work hash.
  124. - Add a sanity check to avoid divide by zero crashes in set_target
  125. - Calculate diff from target accurately for all 256 bits.
  126. - Set a true 256bit binary target based on any diff value in set_target()
  127. - Provide a copy_work_noffset function for copying a work struct but changing
  128. its ntime.
  129. - Make calls to flush queue and flush work asynchronous wrt to the main work
  130. loops.
  131. - Share is also above target for submit noffset nonce.
  132. - Use round for displaying current pool diff.
  133. - Use round for stratum share diff display instead of floor.
  134. - Use round instead of floor for displayed pool difficulty.
  135. - Allow arbitrary diffs to be tested against nonces via a test_nonce_diff
  136. function.
  137. - Abstract out the rebuilding of hash2 in work.
  138. - Share is above, not below target, when it doesn't meet it.
  139. - Add the ability to add uint8 and uint16 entities to api data.
  140. - Use a non blocking connect with a 1 second select timeout when initiating
  141. stratum to allow us to iterate over all IPs returned by getaddrinfo in round
  142. robin DNS pools.
  143. - Minor style changes to output.
  144. - Revert two different hash_sequence(_head)'s to one variable, use
  145. HF_SEQUENCE_DISTANCE in both places
  146. - Remove duplicate HF_SEQUENCE_DISTANCE() macro, and duplicate hash_sequence
  147. from info structure
  148. - Change SEQUENCE_DISTANCE() macro to HF_SEQUENCE_DISTANCE()
  149. - Structure changes for OP_NONCE, add big endian header
  150. - klondike - initialise stat_lock
  151. - klondike - better to unlock locks than to lock them twice :)
  152. - Add copyright notice to knc driver.
  153. - Trivial style changes to knc driver.
  154. - Improve performance of work generation by optimizing hex2bin and bin2hex
  155. - klondike - change options to clock and temptarget only
  156. - klondike - fix another uninit dev warning
  157. - klondike - downgrade 'late update' but add an idle detect - and correct error
  158. levels
  159. - klondike - fix isc uninit warning
  160. - Use a mutex to protect data in the knc structure, to prevent loading more work
  161. during a flush, and unlock and return to main between calls to get_queued_work.
  162. - Use the existing device_data for knc state data.
  163. - Only count successful nonces as hashrate in the knc driver.
  164. - Fix trivial warnings in knc driver.
  165. - Add KNC to api
  166. - klondike - drop the device for hotplug if it's unresponsive
  167. - usbutils - usb_nodev() allow a driver to drop a device
  168. - klondike - single 'shutdown' and ensure it happens
  169. - klondike remove SCNu8 - unsupported on windows
  170. - Correctly calculate sleep_estimate in usbutils that may have been preventing
  171. usecps from working.
  172. - Use a sanity check on timeout on windows.
  173. - Better HW error count; disable permanently those cores which fail often
  174. - KnC driver: knc-spi-fpga ASIC driver
  175. - Fixup jansson & libusb include paths when using separate build directory
  176. - 'llround' is more suitable here than 'roundl'
  177. - Silence warning if MAX/MIN is already defined
  178. - Remove prebuild ccan/opt dependencies
  179. - Reinstate block solve testing.
  180. - Dramatically simplify the calculation of blockdiff.
  181. - Simplify the set_target function, allowing it to work properly for fractional
  182. diffs.
  183. - Merge hashfast driver
  184. - Merge KnC driver
  185. Version 3.6.6 - 26th October 2013
  186. - Remove inappropriate extra locking in _usb_transfer_read
  187. Version 3.6.5 - 26th October 2013
  188. - klondike - fix uninitialised dev bug
  189. - Adjust the binary ntime data in submit_noffset_nonce even when there is no hex
  190. ntime string for eg. gbt.
  191. - Put an entry into the work struct telling drivers how much they can roll the
  192. ntime themselves.
  193. - Only set libusb cancellable status if the transfer succeeds.
  194. - Remove the applog on miner threads dying to prevent deadlocks on exit.
  195. - Do one extra guaranteed libusb event handling before testing if there are any
  196. pending async usb transfers.
  197. - Use a linked list for all usb transfers instead of just cancellable ones.
  198. - Provide a mechanism for informing drivers of updated work templates for
  199. stratum and gbt mining.
  200. - Add cancellable transfers correctly to the ct_list
  201. - Check for presence of thr in icarus get nonce for startup nonce testing to
  202. work.
  203. - Use cancellable usb transfers in the icarus driver to avoid having to loop and
  204. poll when waiting for a response and to speed up work restart response time.
  205. - Add a usb_read_ii_timeout_cancellable wrapper
  206. - Add usb transfer cancellation on shutdown and documentation regarding where
  207. cancellable transfers are suitable.
  208. - Use cancellable transfers on bitfury device.
  209. - Cancel cancellable usb transfers on work restart messages.
  210. - Don't bother having a separate cancellable transfer struct for usb transfers,
  211. simply include the list in the usb_transfer struct.
  212. - Add wrappers for usb_read_cancellable and usb_read_timeout_cancellable
  213. - Specifically set the cancellable state for it to not be uninitialised in the
  214. usb transfer struct.
  215. - Alter the usb cancellable list only under cgusb_fd_lock write lock.
  216. - Pass the cancellable option to _usb_read options to decide on whether to add
  217. usb transfers to the list of cancellable transfers.
  218. - Create a linked list of potentially cancellable usb transfers.
  219. - Don't attempt to disable curses or print a summary during an app restart to
  220. prevent deadlocks.
  221. - Keep the libusb event handle polling thread active until there are no async
  222. usb transfers in progress.
  223. - Keep a global counter of how many async usb transfers are in place.
  224. - Perform libusb_submit_transfer under the write variant of cgusb_fd_lock
  225. - klondike - error condition handling
  226. - Avoid entering static libusb directory if --with-system-libusb is enabled.
  227. - Minor opencl build corrections.
  228. - Enable dynamic linking against system libusb --with-system-libusb
  229. - Modify Makefile to only include opencl related code when configured in.
  230. - Convert opencl to need to be explicitly enabled during build with
  231. --enable-opencl
  232. - Implement a cglock_destroy function.
  233. - Implement a rwlock_destroy function.
  234. - Implement a mutex_destroy function.
  235. - Add usb command name to critical libusb error reporting.
  236. - Use windows' own higher resolution time and handlers allowing us to have
  237. higher precision absolute timeouts.
  238. - Fix lldiv error in windows cgminer_t calculation.
  239. - miner.php correct sort gen field names largest to smallest
  240. - api ... the code related to device elapsed
  241. - api add device elapsed since hotplug devices Elapsed is less than cgminer
  242. Elapsed
  243. - Drop usb buffering message to debug logging level.
  244. - Do the ntime binary modification to the work struct when submitting an ntime
  245. offset nonce within submit_noffset_nonce
  246. - Code cleanup and improved documentation
  247. - Improvements to support for BitBurner boards
  248. - Convert libusb transfer errors to regular libusb error messages to allow for
  249. accurate message reporting.
  250. Version 3.6.4 - 18th October 2013
  251. - Fixing the memory leak for remaining semaphores means we can go back to using
  252. async transfers on other OSes with our own timeout management again.
  253. - Use the forcelog function on shutdown to cope with indeterminate console lock
  254. states due to killing of threads.
  255. - Add a forcelog variant of applog which invalidates any console lock to force
  256. output.
  257. - Send pthread_cancel to failed completion_timeout that has timed out.
  258. - Simplify queued hashtable by storing unqueued work separately in a single
  259. pointer.
  260. - bflsc use getinfo chip parallelization if it is present
  261. - bflsc - fix brackets so [Chips] isn't always null
  262. - Remove unused variables.
  263. - Use cgcompletion timeouts for the unreliable shutdown functions on kill_work.
  264. - Fix cgcompletion return code and free on successful completion.
  265. - Provide a cg_completion_timeout helper function for unreliable functions that
  266. takes arbitrary functions and parameters and reliably returns.
  267. - Perform sync transfers on shutdown to allow final transfers to complete.
  268. - Destroy cgsems used after transfers to not leave open files on osx.
  269. - klondike rewrite work control
  270. - allow __work_complete() access
  271. - miner.h allow devices to tv_stamp work
  272. Version 3.6.3 - 17th October 2013
  273. - API add 'MHS %ds' to 'summary'
  274. - Optional lock tracking and stats via the API
  275. - Speed up polling repeat again in usb poll thread and handle async after the
  276. message to disable polling is complete.
  277. - Revert to using timeouts on !linux since libusb leaks memory without them.
  278. - Revert to libusb instead of libusbx
  279. Version 3.6.2 - 17th October 2013
  280. - Remove unused components of jansson
  281. - Remove unused parts of libusb
  282. - Work around older libtoolize that fails without top ltmain.sh not being
  283. present during autogen
  284. - Fix open coded use of autoreconf in autogen
  285. - Update jansson to only build parts we require and suited to our build
  286. environment.
  287. - Initial import of jansson-2.5
  288. - Prevent further USB transfers from occurring once the shutdown signal has been
  289. sent to prevent transfers getting stuck and libusb failing to shut down.
  290. - Make the USB polling thread poll every second to potentially aid longer
  291. timeout transfers.
  292. - Set device_diff on work in get_work to not be missed with drivers that use
  293. get_work directly.
  294. - Convert icarus driver to hash_driver_work model.
  295. - bflsc - also allow ' 0' in DEVICES IN CHAIN
  296. - bflsc - allow a 0 in DEVICES IN CHAIN
  297. - Add needed EXTRA_DIST for libusbx.
  298. - Update libusbx configure.ac changes.
  299. - Revert libusb Makefile changes from going to libusbx.
  300. - Fix trivial libusbx warnings.
  301. - Convert libusb-1.0.16-rc10 to libusbx-1.0.17
  302. Version 3.6.1 - 14th October 2013
  303. - Emulate the libusb_control_transfer sync setup in our async variant.
  304. - usbutils - make all libusb_error_name messages the same
  305. Version 3.6.0 - 14th October 2013
  306. - increasing max miners for avalon driver
  307. - using separate identifier for bitburner fury boards
  308. - changes to bitburner driver for bitburner fury boards
  309. - hexstr is too small in test_work_current
  310. - Windows uses errno for WSAETIMEDOUT
  311. - Convert the usb callback function to using cgsem_t timed waits to avoid race
  312. conditions with conditionals/mutexes.
  313. - Give correct return code in cgsem_mswait
  314. - Check for correct timeout error in cgsem_mswait
  315. - Fix util.h exports for cgsem_mswait
  316. - Implement a generic cgsem_mswait similar to sem_timedwait
  317. - Use the one LIBUSB_ERROR_TIMEOUT for cancelled transactions since this error
  318. is explicitly tested for in various drivers.
  319. - Do not use locking on usb callback function pthread signalling to prevent
  320. deadlock with libusb's own event lock.
  321. - Use a write lock when performing any USB control transfers to prevent
  322. concurrent transfers.
  323. - Free a libusb transfer after we have finished using it to avoid a dereference
  324. in usb_control_transfer
  325. - Do not perform bfi int patching for opencl1.2 or later.
  326. - Although async transfers are meant to use heap memory, we never return before
  327. the transfer function has completed so stack memory will suffice for control
  328. transfers, fixing a memory leak in the process.
  329. - klondike - correct/reverse min/max stats
  330. - api incorrect message name
  331. - klondike - use a link list queue rather than a circular buffer - and add
  332. timing stats
  333. - Use a timeout with usb handle events set to a nominal 200ms and wait for the
  334. polling thread to shut down before deinitialising libusb.
  335. - Use stack memory for hex used in stratum share submissions.
  336. - Use stack memory in test_work_current, avoiding a malloc/free cycle each time.
  337. - Provide a lower level __bin2hex function that does not allocate memory itself.
  338. - Convert the bitfury driver to use the hash_driver_work version of hash_work.
  339. - Add a hash_driver_work function to allow for drivers that wish to do their own
  340. work queueing and management.
  341. - Convert all usb control transfers to asynchronous communication with our own
  342. timeout management as well.
  343. - Klondike - increase circular read buffer size
  344. - Klondike - extra zero value and range checking in temp conversion
  345. - klondike - display MHz also
  346. - Make pthread conditional timeouts handle all bulk usb transfer timeouts
  347. performing libusb_cancel_transfer, disabling timeouts within libusb itself.
  348. - Avoid calling get_statline_before on exit to avoid trying to use it on drivers
  349. in an indeterminate state.
  350. - Avoid calling get_statline on exit.
  351. - Add a small amount to the usb timeout before cancelling to allow for a regular
  352. usb polling interval to pass.
  353. - Do not attempt to clear a usb halt before sending the cancel message since all
  354. transfers should normally be cancelled before attempting to clear a halt
  355. condition, and only change the return message to a timeout if it's consistent
  356. with a cancellation.
  357. - Retry up to USB_RETRY_MAX times to clear a halt condition before failing.
  358. - Show the error number as well as the description in erroring bulk transfers.
  359. - Drop logging level for failed to connect to stratum to verbose mode only since
  360. we hit it regularly.
  361. - We are always dependent on libusb handling events so use the blocking
  362. libusb_handle_events in the polling thread and use a bool to know if we should
  363. continue polling.
  364. - Use fractional hashrate return values in bitfury_scanhash to minimise the
  365. number of times we return 0 based on hashrate so far to further damp out
  366. displayed hashrate.
  367. - Check for presence of driver name in DRIVER_COUNT_FOUND to prevent strcmp on a
  368. null pointer when a driver is not built in.
  369. - CMR allow sending flash and clock commands
  370. - Kill off threads that have failed using hash_sole_work instead of just
  371. disabling them.
  372. - Make the bf1 getinfo size a macro
  373. - Failing to add_cgpu in bitfury should be a terminal failure.
  374. - Check return values when attempting to open a BF1 device and set the msg size
  375. as a macro.
  376. - Display errors on failed usb read and write and consider sequential IO errors
  377. a permanent failure.
  378. - Use libusb's own error name function instead of hand coding the error names.
  379. - Limit ms_tdiff to 1 hour as a sanity check.
  380. - Enable the usb buffer in avalon driver.
  381. - Check for async transfer variants of error messages.
  382. - Remove unused variables.
  383. - Try switching pools if for some reason we end up with only idle pools and have
  384. ended up current_pool set to an idle one.
  385. - Check a pool is stable for >5 mins before switching back to it.
  386. - Minimise the time between dropping the read devlock and grabbing the write
  387. devlock to avoid tons of logging spam in the interim.
  388. - Check for libusb transfer stall error to be consistent with async IO errors
  389. returned for a halt condition.
  390. - Check for continuous IO errors on USB and consider the device inactive if more
  391. than retry max.
  392. - Make the devlock a cglock in usbutils and only grab the write lock for
  393. fundamental changes allowing us to send and receive transfers concurrently
  394. without lock contention.
  395. - Prevent overflows in us_tdiff and ms_tdiff.
  396. - Change second initialise message on bitfury verbose mode.
  397. - Submitting an ntime offset nonce needs to be done on a copy of the work
  398. instead of the original so abstract out shared components as much as possible,
  399. minimising strdups in copy_work and make submit_work_async work take copied
  400. work, cleaning up code in the process.
  401. - Provide a way for drivers to submit work that it has internally rolled the
  402. ntime value by returning the amount it has ntime rolled to be added.
  403. - Typo in configure.ac
  404. - Remove unmaintained broken ztex driver.
  405. - Icarus - use a data structure for I/O rather than magic numbers
  406. - delete old tracked ccan/opt/*.o files
  407. - klondike correct cvtKlnToC() temperature calculation
  408. - klondike - correct 1st reply debug based on define
  409. - klondike - debug dump structured replies
  410. - klondike - avoid division by zero if maxcount is unexpectedly zero
  411. - klondike store and report errorcount and noise
  412. - klondike - fix chipstats api stats buffer overrun with 16 chips
  413. - klondike add new nonecount only once
  414. - klondike - report mh/s based on nonces found + put old estimate into API stats
  415. - klondike use a memcpy
  416. - klondike fix bracket tabs indenting
  417. - api.c missing Klondike from ASIC list
  418. - Klondike update code to current git
  419. - Add 2nd CMR to 01-cgminer.rules
  420. - Add Klondike to 01-cgminer.rules
  421. - Klondike to main directory
  422. - Klondike consistent code spacing
  423. - Klondike update driver code to current git
  424. - update firmware for 16 chips, add dist files
  425. - beta final 0.3.0 release
  426. - updated firmware, IOC method
  427. - prevent nonces when not state W
  428. - added driver config option support
  429. - fixes for 300 MHz, fix K1 parts list
  430. - update driver, docs
  431. - update firmware & utils
  432. - updated cgminer driver for 3.3.1
  433. - update firmware and driver, create new cgminer fork
  434. - update klondike driver
  435. - add cgminer driver file as-is
  436. - Add API output displaying USB cancellations.
  437. - Store statistics on how often we have to cancel async bulk transfers and add a
  438. debug message whenever we do.
  439. - Treat any unexpected timeouts waiting for async transfers as though there may
  440. be a usb halt condition and attempt to clear the halt before cancelling the
  441. tranfer.
  442. - Remove zero packet flag on usb as it's unsupported outside linux and
  443. unnecessary.
  444. - Fake the libusb transfer timed out message if we force cancel it with our own
  445. async functions.
  446. - Use asynchronous transfers for all bulk transfers, allowing us to use our own
  447. timers and cancelling transfers that take too long.
  448. - Add libusb error warning message when significant error occurs.
  449. - Icarus CMR2 detect FPGA setup
  450. - Disable bitfury device thread on it disappearing.
  451. Version 3.5.0 - 29th September 2013
  452. - Add magic init sequence required on BF1 devices to get them mining on windows.
  453. - usbinfo.devlock is only ever write locked so convert it to a mutex
  454. - Icarus remove unneeded opt_debug tests due to applog being a macro
  455. - Icarus - CMR shouldn't wait the full timeout due to handle sharing
  456. - We should only yield once in cg_wunlock
  457. - Provide a function to downgrade a cglock from a write lock to an intermediate
  458. variant.
  459. - Deuglify use of _PARSE_COMMANDS macro expansions.
  460. - Deuglify use of usb parse commands macro in usbutils.
  461. - Use the driver add commands macros in api.c to avoid individually listing
  462. them.
  463. - Separate out asic fpga and opencl drivers in the driver parse commands macro
  464. for use individually as needed.
  465. - Use macro expansion in usb_find_devices to avoid explicitly listing them all.
  466. - Use macro expansion to iterate over all the drivers without explicitly writing
  467. them out in usbutils.c
  468. - Iterate over the bitfury offsets in order of decreasing likelihood.
  469. - Reattach the kernel driver on linux on usb_uninit.
  470. - Attach the kernel driver on failure to usb init on linux.
  471. - libusb kernel driver operations are only available on linux.
  472. - There is no need to get the external prototypes for drivers in cgminer.c any
  473. more.
  474. - Remove unnecessary gpu_threads initialisation.
  475. - Put avalon last in the sequence of adding drivers to prevent it trying to
  476. claim similar chip devices on startup.
  477. - Use macro expansion to iterate over all device drivers without needing to
  478. explicitly code in support in all places. Pass a hotplug bool to the detect()
  479. function to prevent opencl trying to hogplug GPUs.
  480. - Forward declare all device drivers in miner.h avoiding the need to export them
  481. everywhere else.
  482. - Add a noop function for driver detect when it's missing.
  483. - Reuse the DRIVER_ macros to avoid having yet another definition for DRV_
  484. - Use macro expansion to generate extern device_drv prototypes.
  485. - Create a macro list of drivers to enable easier addition of further drivers.
  486. - There is no point setting the BF1 preferred packet size to the maximum since
  487. it will do so automatically.
  488. - icarus ensure all cmr interfaces are initialised properly
  489. - usbutils - fix USBDEBUG warnings
  490. - Remove unnecessary steps in communicating with BF1 and just use USB interface
  491. 1.
  492. - usbutils - usb_bulk_transfer fix the buf/data fix
  493. - usb_bulk_transfer - use the allocated buffer
  494. - Set preferred packet sizes per interface on BF1.
  495. - usbutils allow PrefPacketSize per endpoint
  496. - Remove magic control sequences on open/close on BF1 and just flush the read
  497. buffers.
  498. - Check return codes in getinfo and reset and fail as needed in BF1.
  499. - Check return code for bitfury_open and release resources properly on failed
  500. initialisation.
  501. - Abstract out flushing of interrupt reads in BF1 devices.
  502. - Perform interrupt read after close message on BF1 as per serial close.
  503. - Perform interrupt read flush as per serial open on BF1 devices.
  504. - Add information for 2nd USB interface on BF1 devices and choose interface 1
  505. for bulk transfers.
  506. - usbutils - bulk transfer copy test fix
  507. - usbutils - add USBDEBUG for usb_bulk_transfer
  508. - Add more read_ii variants to usbutils.
  509. - Name remainder of BFU usb commands used.
  510. - Use submit_tested_work in bitfury driver to avoid unnecessarily re-testing the
  511. work for validity.
  512. - Abstract out work submission once it's been tested, to be used by drivers that
  513. do their own internal validity testing.
  514. - Store the hash2 array in struct work for further reuse.
  515. - usbutils - which_intinfo not requried
  516. - Use the test_nonce function within submit_nonce and store the uint32
  517. corresponding to hash2 37 for further use.
  518. - usbutils - interfaces must all be on one handle - ep implies the interface
  519. - avalon stats use exact type
  520. - Only set share diff if we've confirmed it's a share first.
  521. - Update ASIC-README for bitfury devices.
  522. - Use an array of offsets when checking nonces in bitfury_checkresults
  523. - Limit the duration we wait for reads in BF1 based on time already elapsed to
  524. account for other delays such as work restart messages or out of work.
  525. - Minimise size of serial string we copy in BF1 stats to avoid overflow.
  526. - Implement basic API stats for BF1 and increase array of results to check for
  527. the rare straggling result.
  528. - Space debug output for bf1 to separate from numerals.
  529. - Abstract out the bitfury open close and reset functions and use them on
  530. reinit.
  531. - Rename BF1 devices BF1
  532. - Check for work restart, breaking out early after usb reads in BF1.
  533. - Do not lose the first sets of results from BF1.
  534. - There is no point checking for results from the next round of work on BF1.
  535. - Last result returned by BF1 is an end of results marker so ignore it.
  536. - restart_wait should return 0 if thr_restart is true.
  537. - Remove unused code by bitfury driver since current driver uses serialised
  538. scanhash.
  539. - Meter out return of estimated hashes in BF1 to smooth out visible hashrate.
  540. - Optimise inner scanhash loop for bf1.
  541. - Add yet another backup work for triple buffering of work in bf1 to account for
  542. extra late results returned and don't check nonce offsets which appear to never
  543. return.
  544. - Name the work request and result usb commands for BF1
  545. - Define a mandatory upper limit to waiting for reset and data on BF1 based on
  546. full nonce duration.
  547. - Decrease usb buffering to verbose logging.
  548. - Add in first draft for a serialised work model sending/receiving data for BF1
  549. devices.
  550. - Add complete close sequence to bf1 as it happens on serial.
  551. - Provide a bitfury identify function for bf1.
  552. - Reliably extract BF1 information at startup and reset the device.
  553. - Add commands for getting BF1 bitfury info
  554. - Add magic BF1 bitfury open and close control sequences.
  555. - Add BF1 detection code to bitfury driver.
  556. - Create basic placeholders for bitfury driver code.
  557. - Add bf1 device information to usbutils to enable device detection.
  558. - Add basic defines for building for bitfury devices.
  559. - Add redfury device to udev rules.
  560. - avalon: display the FPGA controller version on API
  561. - pool_active uninitialised_var rolltime
  562. - Use macro expansion to only need to define usb enums and commands in one
  563. place.
  564. - usbutils saving incorrect overflow buffer
  565. - ignore libusb.la and *.lo on linux
  566. - icarus support CMR with no extensions
  567. - usbtils - interfaces dont work yet in libusb windows so disable for that only
  568. - Provide a --disable-libcurl config option to build support for stratum mining
  569. only.
  570. - Fix the api-example.c compile under Linux
  571. - usbutils - only release the device once - for the first intinfo
  572. - usbutils set_interface is no longer valid
  573. - ubsutils interfaces much each have their own handle
  574. - usbutils kernel_detach should use the interface number
  575. - usbutils - allow the driver to change which_intinfo
  576. - Reset quotas on load balance for all pools at the same time to avoid running
  577. out during selection and unintentionally dropping to fallback.
  578. - Break out of select pool from a common point for appropriate debug messages
  579. and to avoid further tests.
  580. - usbutils correct/reverse CMR product numbers
  581. - usbutils specifically track handles and interfaces
  582. - change drivers to use usb_interface() - required for multi interface change
  583. - usbutils - allow a device to use multiple interfaces (and better var names)
  584. - Cast -1 to (char) to cope with different default char types on ARM.
  585. Version 3.4.3 - 13th September 2013
  586. - Put corefoundation and iokit separate in ldflags for darwin.
  587. - Add rules for libusb Makefile.am building on osx
  588. - Add flags for building libusb statically on osx.
  589. - Find the greatest common denominator in quotas and use the smallest number of
  590. consecutive work items per pool in quota load balance mode to smooth hashrate
  591. across pools with large quotas. Give excess quota to priority pool 0 instead of
  592. pool 0.
  593. - Avoid dynamically adding stack memory for nonce2 in the stratum send thread
  594. and check the pool's nonce2_len will not cause an overflow.
  595. - Add subdir-objects to automake options.
  596. - Use inet_addr instead of inet_network to fix windows build.
  597. - Remove unused pbase variable.
  598. - Add support for socks4/4a proxies with stratum, and drop back to socks4
  599. support via the global --socks-proxy command to not break previous
  600. configurations.
  601. - Fix warning on mingw build.
  602. - Only show long-poll message in pool summary if it's not using stratum.
  603. - Increase the time for the waiting for work message to be given to be greater
  604. than that required for a pool swap in the scheduler which is set to 5s.
  605. - Change message in status when using a balanced pool strategy to notify if
  606. there's a stratum pool as well.
  607. - Use the --failover-only flag to have special meaning in combination with
  608. load-balance mode to distribute any unused quota back to pool 0 to maintain
  609. ratios amongst other pools.
  610. - Display quota and allow it to be modified via the pool menu.
  611. - Add API commands and modify output to support pool quota displaying and
  612. changing.
  613. - Change message in status when using a balanced pool strategy to notify if
  614. there's a stratum pool as well.
  615. - Add quota support to configuration files.
  616. - Rotate pools on all failures to set a pool in select_pool.
  617. - Use quotas for load-balance pool strategy.
  618. - Provide a mechanism for setting a pool quota to be used by load-balance.
  619. - Use the --socks-proxy option with stratum, changing it to defaulting to socks5
  620. and give appropriate message should it fail to connect.
  621. - Cope with trailing slashes in stratum urls.
  622. - Add more debugging messages when negotiating with proxies for stratum.
  623. - Test specifically for socks5h in socks support for stratum.
  624. - Add support for socks5 proxy with stratum
  625. - Provide support for negotiating a stratum connection via http proxies.
  626. - Connect to the proxy URL and port if specified for stratum sockets instead of
  627. the pool directly.
  628. - Extract any proxy url and port to be used by sockaddr if possible using
  629. extract_sockaddr.
  630. - Make extract_sockaddr set variables passed to it rather than pool struct
  631. members.
  632. - miner.php sort the mcast rigs so they are always in the same relative order
  633. - miner.php allow sending the muticast message multiple times
  634. - miner.php mcast ignore duplicate replies
  635. Version 3.4.2 - 3rd September 2013
  636. - take_queued_work_bymidstate should use a write lock.
  637. - miner.php coding warning
  638. - miner.php disable 'gen' by default
  639. - miner.php allow formula generation of new fields
  640. - miner.php add doctype
  641. - miner.php remove incorrect echo
  642. - miner.php optional error if not enough mcast rigs are found
  643. Version 3.4.1 - 31st August 2013
  644. - API mcast add a description option with miner.php
  645. - Always use a maxpacketsize buffer in usb_bulk_transfer
  646. - bflsc ensure getinfo cannot overflow it's storage buffer
  647. - Don't decref json values in stratum parsing due to memory corruption.
  648. - Use 64 bytes for all libusb control transfers.
  649. - Skip dissecting opt->names in parse_config if it doesn't exist.
  650. - Use an internal buffer in _usb_transfer_read in case the read is larger than
  651. the buffer passed to it.
  652. - ICA optional limit timing with short=N or long=N
  653. - Revert to old custom tolines function since strtok_r is not portable.
  654. - bflsc remove unused commented out code
  655. - logging - code mistake
  656. - logging - applogsiz() for large messages
  657. - Provide base structures for getaddrinfo.
  658. - Include string.h in bflsc driver.
  659. - Get rid of linear removal of spaces in bflsc text parsing and use strstr
  660. throughout instead.
  661. - Use reentrant strtok in tolines() function in bflsc to avoid racing on
  662. contextless calls.
  663. - Show how small a too small result in bflsc is.
  664. - Duplicate the buffer in process_results in bflsc since strtok modifies it
  665. making debugging output limited to one line.
  666. - Only process nonces in bflsc if the breakdown function succeeds.
  667. - Ignore zero count messages in bflsc instead of trying to parse them.
  668. - Return ok in tolines when it doesn't match inprocess message for bflsc.
  669. - Remove inprocess line instead of deleting all following responses in bflsc.
  670. - Change ok testing logic in breakdown() in bflsc and return if not ok at any
  671. stage.
  672. - Check the return value of tolines in bflsc driver.
  673. - Use strtok to parse lines in bflsc driver.
  674. - Add libusb-1.0 m4 directory and gitignore file.
  675. - Properly convert from ranlib to lt_init in configure.ac
  676. - Make autoconf always build for libusb.
  677. - More autoconf fixes.
  678. - Unconditionally build jansson statically from the cgminer source tree.
  679. - Only test for all usb devices once in configure.ac
  680. - Fix various libusb warnings and possible bugs on linux build.
  681. - Add make clean and maintainer-clean to autogen
  682. - Remove examples from libusb Makefile and generated autoconf files.
  683. - Fix libusb subdirectory builds.
  684. - Remove cached files from libusb autoconf on running autogen.sh
  685. - Remove unused HAVE_LISBUSB macro and use USE_USBUTILS everywhere.
  686. - Use direct auto* files to avoid failure of autoreconf
  687. - Remove unused and maintainer cleaned files
  688. - Show RT_LIBS in ./configure output.
  689. - First import of libusb-1.0
  690. - bflsc xlinkstr use snprintf
  691. - Fix win32 build.
  692. - Use take_queued_work_bymidstate in the bflsc driver to avoid the rare chance
  693. repeated results come back from the same work item.
  694. - Provide a funcion that looks up queued work by midstate and then removes it
  695. from the device hash database.
  696. - Fix no -rt library on darwin.
  697. - Update included jansson to v2.4
  698. - Fix OSX build.
  699. - Provide an osx fix for cgtimers and a fallback to timevals for all other
  700. platforms !linux !win32 !osx.
  701. - Move two more timer functions out of define macros to enable them to be used
  702. by future osx code.
  703. - cgtimer_sub is now the same since cgtimer_t should be the same on all
  704. platforms.
  705. - miner.php fix missing global
  706. - Only count submitted nonces as diff1shares if they're valid.
  707. - Substantially raise the maximum avalon frequency for water-cooled, over-volted
  708. designs.
  709. - Compile MCast.java with an old java
  710. - API Multicast sample MCast.java+MCast.class
  711. - BTB show C/MHz/mV for device
  712. - api.c remove unused reply string
  713. - api.c fix mcast debug message bug
  714. - miner.php implement API Multicast handling to automatically find your local
  715. net miners
  716. - API mcast only reply to remote IP's that are allowed access
  717. - Initial API Multicast response v0.1 to find cgminer APIs
  718. - Use timespecs on windows as cgtimer_t to capitalise on the higher resolution
  719. clock changes.
  720. - Abstract out the conversion of system time to an lldiv_t in decimicroseconds.
  721. - Use our own gettimeofday implementation on windows for it to be consistent
  722. across ming builds and higher resolution.
  723. Version 3.4.0 - 21st August 2013
  724. - Use stack data for HW error% in avalon stats.
  725. - Add avalon HW error% to stats and only show BTB variables if avalon is a BTB.
  726. - Check for cnx_needed on each loop through wait_lp_current.
  727. - Return positive for cnx_needed when no_work is true.
  728. - Stratum is used more often so test for it first.
  729. - Reorder support names alphabetically.
  730. - Only display the no pool work message once if there are multiple waiters in
  731. hash_pop
  732. - Provide a message and set a bool when no work is available from any pools and
  733. when it resumes again.
  734. - We don't want to continue into the hash_pop function if the getq is frozen.
  735. - Only report threads in and out in queued work devices across a get work since
  736. the rest happens asynchronously and the get work is what the device might be
  737. waiting on.
  738. - Thread reportin and out can be static non inline.
  739. - usbutils cps sleep_estimate is not an underestimate
  740. - usbutils add cps stats estimates
  741. - Provide cgtimer_sub helper functions.
  742. - Provide cgtimer_to_ms helper functions.
  743. - Rename cgsleep_prepare_r as cgtimer_time to get time in cgtimer_t format and
  744. call cgsleep_prepare_r as a macro for cgtimer_time
  745. - Use the reentrant cgsleep functions for usecps in usbutils.
  746. - TimeBeginPeriod and TimeEndPeriod do not add significant overhead when run the
  747. entire time for cgminer so avoid trying to maintain balanced numbers of them for
  748. specific time calls to simplify code.
  749. - Replace all references to the old n*sleep functions with the equivalent
  750. cgsleep_*s replacements.
  751. - timeGetTime uses huge resources on windows so revert to using timevals for its
  752. implementation of cgtimer_t
  753. - Quotient/remainder error in ms division.
  754. - Only grab a queued work item if we successfully grab the lock to submit work
  755. in bflsc_send_work
  756. - BTB get version from Firmware
  757. - Carve out the unused portions of sha2 implementation.
  758. - Import Aaron D. Gifford's fast sha256 implementation.
  759. - Increase the que_low watermarks on BFLSC for they are too low to keep the
  760. device busy on scanwork loops.
  761. - Provide cgtimer_to_timeval helper functions.
  762. - Provide a timeval_to_cgtime helper function to reuse values.
  763. - Check for thr->work_restart in restart_wait.
  764. - We should be using que_low to decrease scan sleep time in bflsc.
  765. - Prepare sleep time on bflsc if no dev needs work yet to avoid busy waiting.
  766. - Simplify cgsleep code for windows by using a typedef for cgtimer_t that
  767. resolves to clock resolution, using that internally.
  768. - On windows use the higher accuracy timegettime function to really get 1ms
  769. clock and timer accuracy.
  770. - Use the cgsleep reentrant function to sleep for bflsc between read results to
  771. account for time taken to perform reads.
  772. - Use 100ms delay between checking for results on all bflsc devices as the
  773. buffering of results mean checking more frequently just wastes CPU and causes
  774. more lock contention for only marginally better latencies.
  775. - Fix missed endtimeperiod in overrun timer on windows.
  776. - Make cgsleep_us_r take an int64_t for us.
  777. - Make the cgsleep functions build on windows.
  778. - Use the cgsleep reentrant function in avalon_send_task.
  779. - Use the reentrant cgsleep functions within the avalon_send_tasks function.
  780. - Set high resolution timing on windows within the cgsleep functions.
  781. - Use the reentrant cgsleep function to time sleeps on reading from avalon.
  782. - Provide reentrant versions of cgsleep functions to allow start time to be set
  783. separately from the beginning of the actual sleep, allowing scheduling delays to
  784. be counted in the sleep.
  785. - Make the nmsleep and nusleep functions use the new cgsleep functions
  786. internally till functions are migrated to the new cgsleep API.
  787. - Add a ms_to_timespec helper function, and create a cgsleep_ms function that
  788. uses absolute timers with clock_nanosleep to avoid overruns.
  789. - Add rt lib linkage to enable use of clock_nanosleep functions with older
  790. glibc.
  791. - Add necessary time header include to avalon driver.
  792. - Do a sleep of the full duration it would take to do all the work using
  793. clock_nanosleep in avalon_send_tasks to avoid sleep overruns before polling to
  794. see if it's ready.
  795. - Add a timeraddspec helper function.
  796. - Provide a us_to_timespec helper function.
  797. - Use the us_to_timeval helper function in the avalon driver.
  798. - Provide a us_to_timeval helper function.
  799. - Use timeval_to_spec helper in avalon driver.
  800. - Add helper functions to convert timespec to timeval and vice versa.
  801. - simplifying buffer full check
  802. - forking bitburner write thread function
  803. - making sure original Avalon is unaffected by BitBurner changes
  804. - changes to queueing strategy for BitBurner boards
  805. - Do not poll in avalon_get_results without sleeping if we have finished parsing
  806. a full result.
  807. - Add c to ambient temperature display for avalon driver.
  808. - BTB allow up to 1400mV as per firmware limits
  809. - avalon for timeout allow d='calculate it' and fix uninitialised
  810. - Use cloned work when finding avalon results since another thread can discard
  811. the work item while it's in use.
  812. - Provide a variant of find_work_bymidstate that returns a clone of the found
  813. work.
  814. Version 3.3.4 - 14th August 2013
  815. - API/miner.php add some % fields
  816. - Nonce2 stratum submission is not working with nonce2 lengths >4, revert the
  817. buggy __bin2hex function and use bin2hex.
  818. - The write thread in avalon is only ever actually woken up by timeout so remove
  819. the write semaphore and use a simple sleep poll.
  820. - Fix warning.
  821. - Interrupting reads on the avalon to start writes loses data so remove the
  822. cgsem_post in the read code.
  823. - Add room for the null byte at the end of the nonce2 string on stratum share
  824. submission and zero the allocated ram.
  825. Version 3.3.3 - 13th August 2013
  826. - Only perform the bin2hex on nonce2 data if it's required for stratum
  827. submission, thereby removing the last conversion of that type from stratum work
  828. generation.
  829. - Create a work data template when receiving stratum notification, allowing a
  830. simple memcpy of the merkle root avoiding more hex2bin conversions on each work
  831. generation.
  832. - Export the workpadding char in miner.h
  833. - Avoid a potential overflow should a pool specify a large nonce2 length with
  834. stratum.
  835. - Avoid one more hex2bin in gen stratum work.
  836. - Rename work gbt_coinbase to coinbase to be in line with pool variable name.
  837. - Perform merkle bin hex2bin on stratum notify to avoid doing it on each work
  838. generation.
  839. - Reuse just the one pool coinbase variable in stratum, avoiding more string
  840. functions and storage in gen_stratum_work on each work generation.
  841. - Rename pool gbt_coinbase variable to coinbase to combine it with the stratum
  842. coinbase data.
  843. - Use a nonce2 offset variable for both gbt and stratum to consolidate
  844. requirements on work generation.
  845. - Merge pull request #474 from kanoi/master
  846. - util.c update quit call for new functions
  847. - use correct define for OSX in util.c
  848. - miner.h inline semaphores increase information on failure
  849. - util.c expand quit to show file/func/line
  850. - Merge remote-tracking branch 'conman/master'
  851. - Cache as much of the gbt coinbase as possible to avoid doing unnecessary
  852. hex2bin conversion on every work generation with gbt.
  853. - We should be using a cg_wlock initially in generating stratum and gbt work
  854. before downgrading the lock.
  855. - Add the ability to downgrade a write variant of the cglocks.
  856. - Fix --scrypt being required before scrypt intensities on command line or not
  857. working at all via config files.
  858. - Cache the hex2bin of pool nonce1 in stratum, avoiding hex2bin on each work
  859. generation.
  860. - Cache the binary generation of coinbase1 and 2 on stratum, avoiding a hex2bin
  861. of coinbase1 and 2 on each work generation.
  862. - cgsem - increase information on failure
  863. - avalon init write_sem before use
  864. - 3.3.2 - 9th August 2013
  865. - Fix uninit variable warnings.
  866. - usbutils - force check every combination
  867. - Fix warning.
  868. - Recreate curses windows on windows when a device is hotplugged to allow window
  869. resizing without crashing.
  870. - Update copyright notice.
  871. - Limit intensity range according to whether scrypt is in use or not.
  872. - Do not allow benchmark mode to be used with scrypt.
  873. - Add a --bflsc-overheat command which allows you to set the throttling
  874. temperature for BFLSC devices or disable it.
  875. - Move bflsc defines to a header file.
  876. - avalon allow frequency to be set via the API
  877. - BTB voltage management via the API - and set default on startup
  878. - Avalon BTB allow partial work to be transferred
  879. - avalon_cts use correct buffer
  880. - miner.php format Best Share
  881. - remove unnecessary memcpy
  882. - using more concise description
  883. - using usb_ident
  884. - forgot a return
  885. - changes to Avalon driver for BitBurner boards
  886. - Revert "Sleep after sending icarus work to emulate working at 115200 baud."
  887. - api correct timeout stat display
  888. - usb timeouts - min/max also
  889. - log USB timeouts in API stats
  890. - usbutils report failed timeouts
  891. - usbutils ensure stats macros are using the macro arguments
  892. - Check for negative wait time in socket_full.
  893. - Fix extra argument passed to statline before.
  894. - Adjust socket wait timeout in recv_line according to how long we've already
  895. waited to avoid a 60 second wait dropping to 1 second due to a blocked socket.
  896. - usbutils use a heap buffer for bulk read rather than stack
  897. - usbutils only one bulk transfer call per stat
  898. - set device_drv function noops when first add_cgpu
  899. - usbutils - in init only change the config if needed
  900. - bflsc nonce per work item stats
  901. - bflsc increase flush count to handle parallel work
  902. - force type checking on curses
  903. - logging - size check sprintf
  904. - usbutils - size check all sprintf
  905. - cgminer - size check all sprintf
  906. - size check get_datestamp/get_timestamp and remove unused cgpu->init
  907. - make all statline overflow safe
  908. - WU only needs +2 width
  909. - Check for a timeout in avalon_scanhash and post to the write sem if we receive
  910. one.
  911. - Decay result count in avalon more slowly to not falsely detect idle periods as
  912. low result return rates.
  913. - Count the number of miners idled in avalon to account more accurately for when
  914. its result return rate is too low.
  915. - Fix potential dereference when starting avalon with all new work.
  916. - Convert the decay_time function into one that truly creates an exponentially
  917. decaying average over opt_log_interval.
  918. - Only throttle avalon clockspeed in avalon_auto in non optimal temperature
  919. settings if the fanspeed has reached maximum.
  920. - Reinstate more aggressive <2% HW error target for avalon-auto
  921. - Set avalon fan min and fan max to PWM values instead of percentage.
  922. - Provide an --avalon-freq command line to give a valid range of frequencies for
  923. avalon in auto mode.
  924. - Set the avalon idle frequency to lowest if avalon auto is enabled and we have
  925. an overheat condition.
  926. - Decrease avalon frequency in auto mode if we are unable to maintain the
  927. temperature in the optimal range.
  928. - Don't count invalid nonces as hashrate for bflsc.
  929. - Use a more conservative upper limit of 1% for hardware errors with avalon auto
  930. frequency.
  931. - Allow the avalon fanspeed range to be passed as parameter on the command line,
  932. default to 20-100%
  933. - Just display A: and R: for difficulty accepted and rejected to preserve screen
  934. real estate and decrease decimal places for WU.
  935. - correct device DR: and remove global U:
  936. - Update all screen A/R to instead use DA/DR and device U to WU
  937. - miner.php add ASC fields
  938. - GPU fan rpm display 9999 when it overflows
  939. - bflsc get volts stats needs its own GETVOLTS
  940. - Support all avalon frequencies on the command line.
  941. - Move to slightly more relaxed timeouts for avalon.
  942. - MMQ turn on cps delays
  943. - bflsc x-link header different to documentation
  944. - Reset the other auto counters in avalon when idling a device.
  945. - usbutils/icarus include more locking to usbdev access
  946. - Icarus turn on cps delays by default
  947. - usbutils cps correct time measurement
  948. Version 3.3.1 - 25th June 2013
  949. - Add an avalon-auto option which enables dynamic overclocking based on hardware
  950. error rate for maximum effective hashrate.
  951. - Add an --avalon-cutoff feature which puts the avalon idle should it reach this
  952. temperature, defaulting to 60, re-enabling it when it gets to target
  953. temperature.
  954. - Change default avalon target temperature to 50 degrees.
  955. - usbutils - incorrect test for * in bus:dev
  956. - Redo +1 fix in bflsc.
  957. Version 3.3.0 - 24th June 2013
  958. - Add an --avalon-temp option to allow a user specified target temperature.
  959. - Demote no matching work message to verbose logging only on avalon.
  960. - Make the fan control on the avalon a simple PID controller with a target
  961. temperature of 45.
  962. - Demote bflsc hw error messages to verbose logging only.
  963. - bflsc - handle xlink timeouts by having generic IO functions
  964. - Demote the invalid nonce warning to log info.
  965. - Ignore iManufacturer for BFLSC devices since the device name will still match
  966. and some unbinned chips are missing it.
  967. - sc_count shouldn't be +1 in bflsc.
  968. - Use the info timeout for read_nl in getidentify bflsc.
  969. - Add a usb_read_nl_timeout macro.
  970. - bflsc try getinfo twice
  971. - set MSG_ASCUSBNODEV always defined
  972. - Hard code the preferred packet size for AMU, BLT and ICA.
  973. - API V1.26 update ASIC support
  974. - Icarus enable the read buffer for the detect nonce
  975. - Support new overclocking speeds for avalon: 325, 350 and 375
  976. - undo icarus show errno, put it as debug in ubsutils
  977. - icarus add errno to rerr and werr
  978. - Sleep after sending icarus work to emulate working at 115200 baud.
  979. - Use the nusleep function for sleeping after sending work in avalon.
  980. - Show an integer only for diff if it is one.
  981. - Set the avalon preferred packet size to 512.
  982. - Reinstate the maxPacketSize determined by the end descriptor but allow the
  983. driver to override it.
  984. - Only update hashmeter if we have done hashes or haven't updated longer than
  985. the log interval, fixing a us/ms error.
  986. - Use only one cgsem in avalon signalling when the write thread should commit
  987. work by reading the status bytes off during an avalon_read, minimising the
  988. number of usb calls and resetting from only one place.
  989. - Change avalon no valid work message to no matching work to match API
  990. terminology.
  991. - Use low latency usb transfers on the avalon, sleeping up to half a buffer's
  992. worth only if no data is returning to increase hashrate, abolish lost work and
  993. decrease CPU.
  994. - Minimise the sleep times in avalon read to avoid result loss.
  995. - Use a half nonce range before cycling through avalon's scanwork to ensure it
  996. gets a chance to fill work if time is tight for the write thread to signal a
  997. wakeup.
  998. - Temporarily limit usb transfer sizes to 512 till we provide a way for each
  999. driver to choose the upper limit.
  1000. - Increase watchdog sick time to longer than it takes for a pool to be detected
  1001. dead.
  1002. - Limit USB transfers to the max size reported by the descriptors.
  1003. - Increase the BFLSC timeout to allow the maximum number of results to be
  1004. returned for BAS in time.
  1005. - Decrease BAL and BAS latency to be just larger than one result read.
  1006. - disable curses device resize that crashes on windows
  1007. - BFLSC latest firmware has its own thermal cutoff set to 90, so use the same
  1008. value in case we have an old firmware that isn't throttling by itself.
  1009. - Drop watermark low limits for bflsc.
  1010. - Set the fanspeed on bflsc to max if we don't know the temperature.
  1011. - Use a low watermark for queueing mandatory work on bflsc instead of zero.
  1012. - Only mandatorily grab the bflsc mutex on submitting work when the queue is
  1013. empty.
  1014. - Adjust bflsc v2 watermarks.
  1015. - Only increase sleep time on bflsc if the queue isn't emptying at all over the
  1016. sleep duration.
  1017. - Fix warning.
  1018. - bflsc yet more API stats
  1019. - bflsc add some more API stats
  1020. - bflsc correct firmware matching
  1021. - bflsc correct comment
  1022. - Fixed Commands with No params
  1023. - bflsc driver support for v2 firmware
  1024. - Odd Issues
  1025. - Fixed Python Example
  1026. - Added Python Api Example
  1027. - Added Python Api Example
  1028. - Multiplier fail for microseconds vs milliseconds when updating hashmeter in
  1029. hash_queued_work.
  1030. - Only make threads report in/out across the actual driver code and update their
  1031. status on reporting out as well as in.
  1032. - usbutils initialise close key/sem
  1033. - usbutils cleanup linux semaphores on release
  1034. - Difficulty should be unconditionally byteswapped, not swapped to big endian.
  1035. - We should be setting cancelstate, not canceltype when disabling it for usb
  1036. locking.
  1037. - Pthread cancel state should be set to disable on usb DEVLOCK.
  1038. - Fanauto on bflsc is Z9X according to the source code, not 5 as per the draft
  1039. protocol document.
  1040. Version 3.2.2 - 16th June 2013
  1041. - Record and report USB pipe errors via API stats
  1042. - Suspend stratum connections when we know they've failed and don't try to recv
  1043. data from them once the socket no longer exists.
  1044. - Pipe error is quite common on usb3 so drop logging to verbose level only.
  1045. - ocl.c fix applog warnings on windows
  1046. - applog/quit fix GPU errors created
  1047. - usbutils - DEVLOCK other usbdev access
  1048. - applog usb device list can be > LOGBUFSIZ
  1049. - fix windows log warnings
  1050. - logging remove extra added <LF>
  1051. - remove varargs from logging/quit/in general as much as possible
  1052. - Don't yield when downgrading a cg ilock.
  1053. - Don't yield on grabbing the read lock variant of cglocks.
  1054. - Off by one error in device count for display.
  1055. - Don't display devices beyond the most_devices count in the curses status.
  1056. - Only display as many device rows as the maximum live existed at any time.
  1057. - usb lock out use cg locks
  1058. - usb lock out transfers during open/close
  1059. - Add error message to libusb pipe error
  1060. - Differentiate libusb control transfer pipe errors from transfer errors since
  1061. they're not fatal.
  1062. - Create a usb_bulk_transfer wrapper for libusb_bulk_transfer to cope with pipe
  1063. errors.
  1064. - Only show efficiency in pool information for pools that don't support local
  1065. work generation.
  1066. - Create a pool_localgen bool function for testing when a pool can generate work
  1067. locally.
  1068. - ignore file that is generated on Macs
  1069. - compile unix code on Mac OS X fixes not finding the config file in $HOME
  1070. - Use mining start time for device MH/U calculations
  1071. - Decrease the sleep duration before reading in avalon to not let the read
  1072. buffer overflow.
  1073. - Failure to read and write on pseudo semaphores on apple happens routinely on
  1074. shut down so should not be a quit error, just a warning.
  1075. - Unlock usb dev lock in the same place in usbutils.
  1076. - Sleep if the avalon buffer is empty and we've requested a read to allow the
  1077. write thread to take precedence.
  1078. - Yield after releasing a lock in case we are on a device with limited CPU
  1079. resources.
  1080. - Add the cgpu_info structure before avalon reset.
  1081. - Tidy up DEVLOCK/UNLOCK to have consistent use of the pstate variable without
  1082. needing brace level match.
  1083. - Icarus driver elaspsed timeout shouldn't be just USB I/O
  1084. - usbutils avoid leaving devlock locked when thread cancelled
  1085. - MMQ fix nodev failure caused by changes
  1086. - ubsutils lock all access to nodev and cgusb
  1087. - USB make device_path handled by usbutils
  1088. - tidy up free in device detect functions
  1089. - USB control creation and free of cgpu
  1090. - Add FAQ regarding Work Utility.
  1091. - Throttling the BFLSC at 80 seems to prevent generating garbled responses of
  1092. higher temps.
  1093. - Return after failed bin2hex conversion in bflsc.
  1094. - Demote failed hex2bin result to LOG_INFO and check return result in
  1095. driver-bflsc to avoid doing find_work_by_midstate.
  1096. - Set BFLSC fan speed coarsely to keep it under 60 or auto as per specs saying
  1097. it tries to stay below 60.
  1098. - Limit usbutils LATENCY_STD to 32ms to keep transfers under 512 bytes.
  1099. - Move macro definition to bflsc driver
  1100. - Use a longer timeout for retrieving bflsc details.
  1101. - Add a usb_read_ok_timeout wrapper to cope with slow init'ing devices.
  1102. - cgsem_post after creating the thread info
  1103. - Fix build.
  1104. - Use cgsem structures instead of the flaky pings in the work queue to start
  1105. mining threads and remove the unused thr_info_freeze function.
  1106. Version 3.2.1 - 7th June 2013
  1107. - Shorten the avalon statline to fit in the curses interface and show the lowest
  1108. speed fan cooling the asic devices.
  1109. - Set usbdev in usbutils after checking for nodev to avoid trying to access a
  1110. dereferenced value.
  1111. - AMU usbstatus correct name from enable UART
  1112. - Icarus AMU enable the UART
  1113. - Only libusb close if libusb release succeeds.
  1114. - Failed reads and writes on cgsem_post and cgsem_wait should be extremely rare.
  1115. - Implement cgminer specific cgsem semaphores to imitate unnamed semaphore
  1116. behaviour on osx which does not support them.
  1117. - Set cgusb->buffer to NULL when doing usb_buffer_disable.
  1118. - Temporarily fix apple not having semtimedop by ignoring the timeout value.
  1119. - BFLSC enable buffered USB reading
  1120. - Icarus use buffered USB reading
  1121. - bflsc & icarus use usb_ftdi_set_latency
  1122. - usb_ftdi_set_latency LOG_ERRs if called incorrectly
  1123. - add usb_ftdi_set_latency
  1124. - usbutils optional read buffering
  1125. - Set the avalon read transfer latency to avoid sleeping when no data is
  1126. returned after very short latency settings.
  1127. - correct bflsc BFLSC_BUFSIZ max calculation
  1128. - Fix build for !curses
  1129. - restore max code - since timeout is unsigned
  1130. - compile warning - remove unused max
  1131. - usb set FTDI latency higher to minimise status bytes
  1132. - Check for zero timeout on _usb_write.
  1133. - Check for zero timeout in usb read.
  1134. - Define a minimum polling time based on frequency of mandatory updates of ftdi
  1135. responses at 40ms.
  1136. - Sleep right up to the timeout instead of the first half if we find ourselves
  1137. polling in _usb_read
  1138. - Enforce half timeout sized sleeps in usb_read if we find the device is not
  1139. respecting libusb timeouts to avoid polling frequently.
  1140. - Add more ASIC documentation.
  1141. - Update README
  1142. - Remove start device limitation on log window size to allow it to get larger
  1143. with hotplugged devices.
  1144. - Switch logsize after hotplugging a device.
  1145. - Change switch_compact function name to switch_logsize to be used for other
  1146. changes.
  1147. - Only adjust cursor positions with curses locked.
  1148. - devs display - fix GPU duplicate bug
  1149. - Do not hotplug enable a device if devices have been specified and the hotplug
  1150. device falls outside this range.
  1151. - Change the --device parameter parsing and configuration to use ranges and
  1152. comma separated values.
  1153. - basic copyright statement in API.java
  1154. - devs display - show ZOMBIEs after all others
  1155. - Modify scrypt kernel message.
  1156. - Check for pool_disabled in wait_lp_current
  1157. - usbutils semun use proper def for linux which fixes OSX also
  1158. - Check for pool enabled in cnx_needed.
  1159. - Icarus add delays during intialisation
  1160. - Update documentation.
  1161. - Update copyrights of modified files.
  1162. Version 3.2.0 - 31st May 2013
  1163. - Add FAQ about windows USB keyboards and hotplug interactions.
  1164. - Fix mingw build warnings in icarus driver.
  1165. - Make usb_ftdi_cts use the _usb_transfer_read function.
  1166. - Update ASIC-README with avalon info regarding default behaviour.
  1167. - Break out of idling loop in avalon_idle if the buffer is full.
  1168. - Provide some defaults for avalon if none are specified and do not try to claim
  1169. the device if it fails to reset with them and no options are specified.
  1170. - usbutils automatically track IO errors
  1171. - usbutils allow a short wait for resources to be released
  1172. - correct semaphore timeout comment
  1173. - Set the fanspeed to the nominal chosen for GPUs.
  1174. - Inverted sem_init logic.
  1175. - Document avalon options in ASIC-README
  1176. - Do avalon driver detection last as it will try to claim any similar device and
  1177. they are not reliably detected.
  1178. - Clamp initial GPU fanspeed to within user specified range.
  1179. - Use a counting semaphore to signal the usb resource thread that it has work to
  1180. do.
  1181. - Avalon fan factor is already multiplied into the info values.
  1182. - Get rid of zeros which corrupt display.
  1183. - Logic fail on minimum fanspeed reporting.
  1184. - Provide a workaround for fan0 sensor not being used on avalon and pad fan RPM
  1185. with zeros.
  1186. - Add ambient temp and lowest fan RPM information to avalon statline.
  1187. - Display max temperature and fanspeed data for avalon.
  1188. - Set devices to disabled after they exit the hashing loops to prevent the
  1189. watchdog thread from trying to act on them.
  1190. - Add avalon driver to hotplug.
  1191. - Shut down the avalon mining thread if the device disappears.
  1192. - Check for no usb device in usb_ftdi_cts
  1193. - Check for valid usbdev in _usb_read in case the device has been unplugged.
  1194. - Scanhash functions perform driver shutdown so don't repeat it.
  1195. - Change the opencl shutdown sequence.
  1196. - Send the shutdown message to threads and do the thread shutdown functions
  1197. before more forcefully sending pthread_cancel to threads.
  1198. - Use the cgpu_info shutdown to determine when to stop the avalon read and write
  1199. threads.
  1200. - Use semaphores to signal a reset to pause the read thread while the write
  1201. thread does the actual reset, making all writes come from the same place.
  1202. - Remove now unneeded fgpautils.h include from avalon.
  1203. - usb_transfer_read should also not play with the endianness.
  1204. - Use the USB wrappers for avalon, telling usbutils that we want the raw data.
  1205. - Use separate ep for avalon tasks vs avalon reset and do not loop in write
  1206. indefinitely.
  1207. - Remove unneeded function and checks in avalon write code.
  1208. - CMR handle baud options
  1209. - work_restart is reset within the queued hash work loop.
  1210. - Fix avalon shutdown sequence.
  1211. - Execute driver shutdown sequence during kill_work.
  1212. - Use nusleep in avalon_get_results in place of nmsleep.
  1213. - Provide an nusleep equivalent function to nmsleep.
  1214. - usb/ica add more (incomplete) CMR settings
  1215. - Give a buffer of perceived results in avalon during idle periods to allow for
  1216. results once it becomes active again.
  1217. - libusb_control_transfer are meant to be endian specific, but host endianness
  1218. so no conversion is needed.
  1219. - Reuse old MTX Handle
  1220. - usbutils check all memory allocation
  1221. - usb separate thread for resource locking and modified windows locking code
  1222. - Icarus report data direction with comms errors
  1223. - Set the read and write threads for avalon to not cancel within libusb
  1224. functions and wait for the threads to pthread_join on shutdown.
  1225. - Offset needs to be incremented after avalon reads.
  1226. - Make the avalon_read function parse the ftdi responses appopriately.
  1227. - Use the avalon read timeout to completion if no data has been read.
  1228. - wait_avalon_ready should only be used before writes.
  1229. - Ask for the correct amount to read in avalon get results.
  1230. - Spawn the avalon read thread first with info->reset set to discard any data
  1231. till work is adequately queued.
  1232. - Use direct usb read commands to avoid ftdi data being automatically cut off in
  1233. avalon reads.
  1234. - Do a simple usb_read_once for the avalon result from a reset command.
  1235. - Make sure avalon is ready to receive more usb commands before sending them.
  1236. - Implement avalon_ready and avalon_wait_ready functions for when usb is ready
  1237. to receive commands.
  1238. - avalon_read should not loop but just return whatever it has succeeded in
  1239. reading.
  1240. - Set avalon_info to device data void struct.
  1241. - Specify avalon in avalon_reset.
  1242. - First pass rewriting serialdev into direct usb dev for avalon driver.
  1243. - Define a cts equivalent for direct usb and use it for avalon driver full.
  1244. - Compile usbutils into avalon driver.
  1245. - Check results come in at least at 2/3 the rate they should be on avalon and if
  1246. not, reset it.
  1247. - Give a warning but don't reset if the avalon buffer is full early.
  1248. - Discard any reads obtained from the avalon get results thread during a reset.
  1249. - Differentiate initial reset in avalon from subsequent ones.
  1250. - Perform a mandatory reset if the avalon buffer signals it's full before it has
  1251. queued its normal quota of work.
  1252. - Wait till buffer is cleared after sending idle tasks to avalon before
  1253. returning from avalon_idle.
  1254. - Lock qlock mutex during reset from read thread in avalon to prevent more work
  1255. being sent till the reset is over.
  1256. - Reset avalon if we continue to be unable to send all the work items.
  1257. - Add avalon reset response to debugging output.
  1258. - Do a wait_avalon_ready before sending a reset code.
  1259. - Iterate over spare bytes in the avalon result returned from a reset request
  1260. trying to find the beginning of the reset.
  1261. - Idle avalon after reset.
  1262. - Check for nothing but consecutive bad results on avalon and reset the FPGA if
  1263. it happens.
  1264. - Make submit_nonce return a bool for whether it's a valid share or not.
  1265. - Unset the work restart flag sooner in avalon_flush_work to avoid re-entering
  1266. the flush work function and just reset the queued counter instead of rotating
  1267. the array to avoid runs of no valid work.
  1268. - Implement an avalon_flush_work function for work restarts.
  1269. - Shut down avalon read and write threads and idle the miners on closing it.
  1270. - Tighter control over work submissions in avalon allows us to use a smaller
  1271. array.
  1272. - Rotate avalon array to reset the queued count before releasing the lock so
  1273. work will always be available on next pass.
  1274. - Move avalon read thread start till after conditional wait, store idle status
  1275. in avalon_info and use it to determine whether an error is appropriate or not.
  1276. - Wait till the avalon_send_tasks thread has filled the avalon with idle work
  1277. before starting the avalon_get_results thread.
  1278. - Use AVA_GETS_OK macro in avalon_read.
  1279. - Do all writes on avalon with a select() timeout to prevent indefinite blocking
  1280. and loop if less than desired is written.
  1281. - Check explicitly that ava_buffer_full equals the macro.
  1282. - Send initial reset as an avalon task to remove avalon_write function.
  1283. - avalon_clear_readbuf is no longer required.
  1284. - Check for 2 stray bytes on avalon reset.
  1285. - Create a separate thread for handling all work and idle submission to the
  1286. avalon which messages the scanhash function it has completed to update
  1287. statistics.
  1288. - usbutils ensure it compiles without stats
  1289. - usbutils include transfer mode in usbstats
  1290. - Give the avalon get results thread name the device number as well.
  1291. - Make sure we're not adjusting temps on every successful work retrieval on
  1292. avalon.
  1293. - Count missing work items from behind a successful work read in avalon as well.
  1294. - Change message for work not found in avalon parser.
  1295. - usbutils handle bulk_transfer partial writes
  1296. - Simplify debugging and only discard from avalon read buffer if at least one
  1297. full result has been discarded.
  1298. - Only display discarded bytes in avalon if they're not used as nonces.
  1299. - Only loop once through avalon_parse_results, but do so after timeouts as well.
  1300. - Only debug and move ram if spare bytes exist in avalon buffer.
  1301. - Remove off by one error.
  1302. - Inverted logic.
  1303. - Add more debugging to avalon reads.
  1304. - Convert unsigned size_ts to ints for parsing avalon messages.
  1305. - Cope with not finding nonces in avalon parsing gracefully by not overflowing
  1306. buffers.
  1307. - Adjust avalon temp values on one lot of valid nonces from the parser.
  1308. - Created a threaded message parser for avalon reads.
  1309. - Avalon_wait_write is not effective during resets so do it after going idle.
  1310. - Send only a single byte reset.
  1311. - Repeat going idle after avalon reset, and wait for write ready before sending
  1312. each reset request instead of some arbitrary sleep time.
  1313. - Timeouts on avalon_read and avalon_write should be 100ms.
  1314. - Don't close avalon after detecting it until we're cleaning up, instead using
  1315. reset for comms failures.
  1316. - Check for avalon_wait_write before sending reset command.
  1317. - Sleep in avalon_write_ready.
  1318. - Make avalon_wait_write a bool function and check its return value.
  1319. - Show how many idle tasks are sent to avalon if it aborts on buffer full.
  1320. - Reset avalon->device_fd after it is closed.
  1321. - Create an avalon_wait_write function that is used before sending avalon idle
  1322. command.
  1323. - Avoid repeating avalon_idle in do_avalon_close and extra sleep.
  1324. - Pass fd to avalon_idle.
  1325. - Do avalon_reset after info structure is set up.
  1326. - Rework avalon reset sequence to include idling of chips and waiting for them
  1327. to go idle followed by 2nd reset and then checking result.
  1328. - Do a non-blocking read of anything in the avalon buffer after opening the
  1329. device.
  1330. - Assign the avalon info data to the device_data in cgpu_info.
  1331. - thread shutdown is different on windows
  1332. - usbutils make all windows timeouts 999ms
  1333. - usb add another Cairnsmore1 USB chip
  1334. - icarus do the full detect test twice if required
  1335. - CMR usb config guess
  1336. - usb add transfer_read and commented out in icarus
  1337. - usbutils allow unrounded control transfers
  1338. - icarus ICA initialisation
  1339. - icarus report err on read failure
  1340. - icarus correct device_id and use device_data for icarus_info
  1341. - miner.h remove unused device_file and add device_data
  1342. - miner.h icarus no long uses fd
  1343. - icarus AMU config transfers
  1344. - Create a logwin_update function which mandatorily updates the logwin and use
  1345. it when input is expected to prevent display refresh delays.
  1346. - usbutils force an unknown IDENT for zero
  1347. - icarus set default options/timing based on device
  1348. - Must unlock curses as well in logwin_update.
  1349. - Create a logwin_update function which mandatorily updates the logwin and use
  1350. it when input is expected to prevent display refresh delays.
  1351. - icarus report usb write error information
  1352. - Add name to icarus copyright notice.
  1353. - Check for *pth dereference on pthread_join
  1354. - usbutils name latency correctly
  1355. - Check for restart before buffering more reads in Icarus.
  1356. - Icarus should timeout if it's greater than the timeout duration even if it's
  1357. receiving data.
  1358. - We should check for amount buffered in icarus get_nonce against amount already
  1359. received.
  1360. - Make mining threads report out during work submission.
  1361. - submit_work_async is no longer used directly by driver code.
  1362. - Fix first read timeout on icarus get nonce.
  1363. - Retry icarus_initialise if the first read attempt fails.
  1364. - Properly pthread_join miner threads on shutdown.
  1365. - Properly pthread_join miner threads on shutdown.
  1366. - Use a persistent single separate thread for stratum share submission that uses
  1367. workqueues since all stratum sends are serialised.
  1368. - All stratum calls to recv_line are serialised from the one place so there is
  1369. no need to use locking around recv().
  1370. - Only allow the mining thread to be cancelled when it is not within driver
  1371. code, making for cleaner shutdown and allowing us to pthread_join the miner
  1372. threads on kill_work().
  1373. - Only allow the mining thread to be cancelled when it is not within driver
  1374. code, making for cleaner shutdown and allowing us to pthread_join the miner
  1375. threads on kill_work().
  1376. - Set pool->probed to true after an attempt to resolve the url via stratum code.
  1377. - icarus test nodev everywhere
  1378. - usbutils/icarus separate FTDI transfer values and more debug
  1379. - add icarus to hotplug
  1380. - usbutils add rest of icarus
  1381. - simple serial-USB python test script
  1382. - icarus->USB v0.1 incomplete - missing initialise()
  1383. - README spelling
  1384. - Update documentation for icarus switch to USB
  1385. - Add USB rules for supported USB devices
  1386. - switch icarus configuration to usb
  1387. - usbutils new command for icarus
  1388. - usb add a numeric sub-indentity for each name
  1389. - usbutils - make FTDI handling automatic
  1390. - fix duplicate name
  1391. - usbutils set Black Arrow Lancelot's as BAL and match the lot->llt name
  1392. - usbutils identify Icarus devices
  1393. - libusb_control_transfer 16 bit words are endian specific.
  1394. - usb_applog separate amt display
  1395. - Show pool difficulty more verbosely if it changes via stratum.
  1396. - Attribute whatever stats we can get on untracked stratum shares based on
  1397. current pool diff.
  1398. - Provide a --lowmem option which does not cache shares on failed submission to
  1399. prevent low memory hardware (eg Avalon) from crashing.
  1400. - Update util.c
  1401. Version 3.1.1 - May 11th, 2013
  1402. - Use a discrete device target for scrypt that dynamically changes to ensure we
  1403. still report a work utility even if no shares are submitted such as in solo
  1404. mining.
  1405. - Make set_work_target a function to set a specified char as target for use
  1406. elsewhere.
  1407. - Further consolidate the hash regeneration between sha and scrypt doing it only
  1408. once and always checking the share diff for both before submission.
  1409. - Regenerate the hash before checking the share diff in hashtest().
  1410. - Minor typo.
  1411. - Use a scantime of 30 seconds for scrypt if none is specified.
  1412. - Support more shares to be returned for scrypt mining.
  1413. - Update the write config to properly record device entries and remove disabled
  1414. option.
  1415. - Show a different warning and loglevel for failure to resolve a URL on first or
  1416. subsequent testing of stratum pool URLs.
  1417. - Fix the problem of seting up termio of ttyUSB0 for icarus. the CSIZE is the
  1418. mask of CS2/4/8 From: navyxliu <navy.xliu@gmail.com>
  1419. - Set all stratum sockets to nonblocking to avoid trying to use MSG_DONTWAIT on
  1420. windows.
  1421. - Fix warnings on win32 build.
  1422. - Only use MSG_NOSIGNAL for !win32 since it doesn't exist on windows.
  1423. - Use MSG_NOSIGNAL on stratum send()
  1424. - Set TCP_NODELAY for !linux for raw sockets.
  1425. - Use TCP_NODELAY with raw sockets if !opt_delaynet
  1426. - Make raw sockets compile on windows
  1427. - Recheck select succeeds on EWOULDBLOCK for stratum.
  1428. - usbutils/mmq fixed size usb_read default to wait for all data
  1429. - usbutils optional (disabled by default) dev debug
  1430. - Add an ftdi usb read macro without newline
  1431. - Avalon usb interface should be 0.
  1432. - Add more debug for failure to USB init.
  1433. - Recv() should all be non-blocking for raw sockets in stratum.
  1434. - Change verbosity and error for getaddrinfo warnings in setup stratum socket.
  1435. - Free servinfo after p is checked in setup stratum socket.
  1436. - Use raw sockets without curl for stratum communications.
  1437. - Sacrifice curl handle memory on stratum disconnects on all versions of libcurl
  1438. to avoid curl corruption.
  1439. - Don't use TCP_NODELAY if opt_delaynet is enabled with stratum.
  1440. - Fix warnings in avalon driver.
  1441. - Make FULLNONCE an ULL to fix a warning on 32 bit.
  1442. - ztx correct applog typing
  1443. - ocl correct applog typing
  1444. - util correct applog typing
  1445. - api correct applog typing
  1446. - cgminer correct applog typing
  1447. - scrypt correct applog typing
  1448. - bfl correct applog typing
  1449. - ica correct applog typing
  1450. - mmq correct applog typing
  1451. - adl fix trailing %
  1452. - usbutils correct applog typing
  1453. - applog - force type checking
  1454. - Simplify the many lines passed as API data in the avalon driver now that the
  1455. API does not need persistent storage for the name.
  1456. - Duplicate the name string always in api_add_data_full to not need persistent
  1457. storage for names passed to it.
  1458. - Add extra matching work count data in API for Avalon with 4 modules.
  1459. Version 3.1.0 - April 28th, 2013
  1460. - va_copy is meant to be matched by a va_end in log_generic.
  1461. - usbutils remove_in_use break
  1462. - usbutils remove_in_use missing prev
  1463. - usbutils missing add_in_use
  1464. - Clean up summary slightly better on exit.
  1465. - Make the scan sleep time after scanwork in bflsc dynamic to keep queues
  1466. between watermark levels.
  1467. - Remove unused temp counts in bflsc.
  1468. - Calculate a rolling 5 min average set of temperatures for bflsc.
  1469. - Damp the display of voltage for BFLSC devices.
  1470. - Damp the temperature display measurement for bflsc since it fluctuates so
  1471. wildly.
  1472. - bflsc add volt stats
  1473. - Handle failed tolines command in bflsc driver.
  1474. - Can use a read lock instead of a write lock in bflsc scanwork.
  1475. - Since we are filling a queue on the bflsc devices, there is no need to run
  1476. through scanwork frequently provided we use the restart_wait function to abort
  1477. early during a block change.
  1478. - Remove flushed work in bfl scanwork from the hash table.
  1479. - Set correct device in process_nonces in bflsc driver.
  1480. - bflsc add work reply INPROCESS: missing from the spec
  1481. - bflsc put in some error messages not yet written
  1482. - bflsc get completed hashes as late as possible
  1483. - Fix potential memory leak with unused work items in bflsc_queue_full
  1484. - Reverse bools in bflsc_queue_full
  1485. - Avoid recursive loop calling correct function instead.
  1486. - bflsc fix details identification
  1487. - Differentiate BFLSC device from regular bitforce and give warning if no
  1488. support is compiled in.
  1489. - util.c str_text make a fully text readable version of str
  1490. - BFLSC fix FPGA identity overlap
  1491. - Locking error in bflsc_send_work
  1492. - Use htobe32 function for converting nonce in bflsc.
  1493. - Replace deprecated bzero with memset in bflsc driver.
  1494. - Fix compilation of bflsc driver without opencl.
  1495. - Check for realloc failures in bflsc driver.
  1496. - Check for failure to calloc in bflsc driver.
  1497. - Trivial style change
  1498. - Use copy_time function in bflsc driver.
  1499. - Use cgtime in bflsc driver and update copyright notice.
  1500. - Use a separate function for bfl initialise that doesn't require locking.
  1501. - Fix BFLSC building.
  1502. - bflsc v0.1
  1503. Version 3.0.1 - April 25th, 2013
  1504. - Bypass attempting to read and save binary files on OSX to avoid crashes on >1
  1505. GPU.
  1506. - Receive failures in recv_line should unconditionally fail.
  1507. - Use sock_blocks in api.c
  1508. - Use sock_blocks function for stratum send and receive.
  1509. - Create an OS specific sock_blocks function.
  1510. Version 3.0.0 - April 22nd, 2013
  1511. - Further fix distdir for hexdump.c
  1512. - Fix build and distdir.
  1513. - Remove all CPU mining code.
  1514. - compile on win32
  1515. - Update SCRYPT README with improved hashrates for 7970.
  1516. - Use copy_time helper throughout cgminer.c
  1517. - Provide wrappers for commonly used timer routines with API stats.
  1518. - Avoid one cgtime call in sole_hash_work.
  1519. - Fulltest is true if value is <= target.
  1520. - Use system host to endian functions for clarity in fulltest.
  1521. - Provide endian_flipX functions to avoid special casing big endian in cgminer.c
  1522. - Provide a flip128 helper to simplify big endian flipping.
  1523. - Use flip helpers to simplify code for calculation of midstate.
  1524. - Use flip32 function instead of open coding it in gen_stratum_work.
  1525. - Move util.c exports to util.h
  1526. - Fix warning on building avalon on win32
  1527. - Use cgtime in driver-avalon.c
  1528. - Use cgtime in driver-icarus.c
  1529. - Use cgtime in driver-bitforce.c
  1530. - Use cgtime in logging.c
  1531. - Use cgtime in usbutils.c
  1532. - Use cgtime in driver-opencl.c
  1533. - Use cgtime wrapper in driver-modminer.c
  1534. - Use cgtime in driver-ztex.c
  1535. - Use cgtime in compat.h
  1536. - Use cgtime instead of gettimeofday in fpgautils.c
  1537. - Replace gettimeofday usage in cgminer.c with cgtime
  1538. - Create a cgminer specific gettimeofday wrapper that is always called with tz
  1539. set to NULL and increases the resolution on windows.
  1540. - Add high resolution to nmsleep wrapper on windows.
  1541. - Set default ocl work size for scrypt to 256.
  1542. - define le32toh if needed
  1543. - fliter out the wrong result from adjust fan code
  1544. - compile avalon driver on win32 and win64
  1545. - Restart threads on the rare chance we found the block ourselves.
  1546. - Add more FAQs about crossfire.
  1547. - Set last device valid work on adding device.
  1548. - Increment last device valid work count in submit_nonce to cover scrypt.
  1549. - Set opt_scrypt drv max diff for correctness.
  1550. - Make scrypt submission use the submit_nonce code, with nonces matching
  1551. endianness.
  1552. - Do testing for HW errors on submit nonce for both scrypt and sha.
  1553. - Increment hardware error count from the one site.
  1554. - Rename scrypt regenhash function for consistency.
  1555. - Add new best share info to verbose logging.
  1556. - Add notice for when network diff is changed.
  1557. - Convert error getting device IDs in ocl code to info log level only since
  1558. multiple platforms may be installed and the error is harmless there.
  1559. - Unnecessary extra array in ocl code.
  1560. - Further driver FAQs.
  1561. - Add MAC FAQ.
  1562. - Add more FAQ details.
  1563. - Check for work restart after disable in the hash queued work loop since it may
  1564. be a long time before we re-enable a device.
  1565. - Unconditionally test for many wrong results on avalon and reset to avoid
  1566. passing a corrupt avalon result to temperature code.
  1567. - build out of source dir
  1568. - Set device_diff for queued work or there will be no diff1 share count.
  1569. - Only reset an avalon device with no results when there are no results
  1570. consecutively.
  1571. - More FAQs.
  1572. - More FAQs.
  1573. - Cleanup when stratum curl fails to initialise.
  1574. - Avoid applog in recalloc_sock.
  1575. - Avoid applog under stratum_lock in recv_line.
  1576. - Avoid applog under stratum_lock in __stratum_send.
  1577. - Put spacing around locking in util.c for clarity.
  1578. - Avoid applog under cg_wlock.
  1579. - Put spacing around locking code for clarity.
  1580. - Avoid applog under pool_lock.
  1581. - Avoid more recursive locks.
  1582. - Avoid applog while ch_lock is held.
  1583. - Avoid recursive locks in fill_queue.
  1584. - Variable is already initialised in global scope.
  1585. - More GPU faqs.
  1586. - More README faqs.
  1587. - Yet more README faqs.
  1588. - Add more faqs to README.
  1589. - Wrap result wrong tests in avalon scanhash in unlikely() and only consider a
  1590. hash count of zero wrong if a restart wasn't issued.
  1591. - avalon: if result_wrong >= get_work_count jump out the read loop
  1592. - Fix warning on 32bit.
  1593. - Fix warning on 32bit.
  1594. - Avoid curl_easy_cleanup on old curl versions in setup_stratum_curl as well.
  1595. - fix the fan control on max temp2/3
  1596. - for some reason network down. one simple cgminer command: "cgminer -o
  1597. 127.0.0.1:8888 -O fa:ke --avalon-options 115200:32:10:50:256" can idle the
  1598. avalon for safe power and protect chip
  1599. - if hash_count == 0; reinit avalon, fix the 0MHS bug use the max value of temp1
  1600. and temp2 for fan control
  1601. - Reinstate the matching_work_count per subdevice on avalon based on the work
  1602. subid.
  1603. - Avalon driver is missing the drv_id.
  1604. - Rationalise and simplify the share diff and block solve detection to a common
  1605. site.
  1606. - Rationalise and simplify the share diff and block solve detection to a common
  1607. site.
  1608. - Make the avalon array size a macro.
  1609. - Use replacement of work items in the avalon buffer as needed instead of
  1610. flushing them.
  1611. - Reinstate wrong work count to reset avalon regardless and display number of
  1612. wrong results.
  1613. - Revert "The result_wrong measurement for avalon is continually leading to
  1614. false positives so remove it."
  1615. - select() on serial usb in avalon does not work properly with zero timeout.
  1616. - The result_wrong measurement for avalon is continually leading to false
  1617. positives so remove it.
  1618. - Revert "Use only 2 queued work arrays in avalon."
  1619. - Use no timeout on further reads in avalon_gets
  1620. - Do sequential reads in avalon_get_reset to cope with partial reads.
  1621. - Show read discrepancy in avalon_get_reset.
  1622. - Reuse avalon_get_work_count variable.
  1623. - Check for AVA_GETS_RESTART when deciding if avalon has messed up.
  1624. - Make the detection of all wrong results on avalon much more conservative to
  1625. avoid false positives on work restarts.
  1626. - Show error codes on select and read fail in avalon.
  1627. - If we get a restart message in avalon_gets still check if there's a receive
  1628. message to parse first without a timeout before returning AVA_GETS_RESTART.
  1629. - Use only 2 queued work arrays in avalon.
  1630. - avalon_gets is always called from the one call site so inline it.
  1631. - The read_count is unused by the avalon get result code and no longer required
  1632. for avalon reset so simplify code removing it.
  1633. - Use a separate avalon_get_reset function for resetting avalon instead of using
  1634. avalon_get_result.
  1635. - The current hash count returned by avalon scanhash is just an obfuscated
  1636. utility counter so make it explicit.
  1637. - Check for a restart before a timeout in message parsing code in avalon.
  1638. - We should check for a restart message before checking for a timeout in avalon
  1639. scanhash.
  1640. - Store the subid for the work item in avalon.
  1641. - usbutils more stats for bflsc
  1642. - Fix record_temp_fan function in avalon driver. Patch by Xiangfu
  1643. <xiangfu@openmobilefree.net>
  1644. - Remove inappropriate memset of struct avalon result which was corrupting fan
  1645. values.
  1646. - Fix warning with no curses built in.
  1647. - Bump version to 2.11.4
  1648. - Add API support for Avalon.
  1649. - Only do_avalon_close once on multiple errors.
  1650. - Reset the result_wrong count on block change in avalon scanhash to prevent
  1651. false positives for all nonces failed.
  1652. - Small timeouts on select() instead of instant timeout increase reliability of
  1653. socket reads and writes.
  1654. - Only get extra work in fill_queue if we don't have any unqueued work in the
  1655. list.
  1656. - Small timeouts on select() instead of instant timeout increase reliability of
  1657. socket reads and writes.
  1658. - Rotate the avalon work array and free work on AVA_SEND_BUFFER_EMPTY as well.
  1659. - Only get extra work in fill_queue if we don't have any unqueued work in the
  1660. list.
  1661. - Don't get any work if our queue is already full in avalon_fill.
  1662. - Differentiate socket closed from socket error in recv_line.
  1663. - Differentiate socket closed from socket error in recv_line.
  1664. - Free avalon->works in the event we call avalon_prepare on failure to
  1665. initialise.
  1666. - Fix warnings.
  1667. - Create an array of 4 lots of work for avalon and cycle through them.
  1668. - Remove unused per unit matching work count for avalon.
  1669. - Rename the confusing avalon_info pointer.
  1670. - Simplify avalon scanhash code using the new find_queued_work_bymidstate
  1671. function. Partially works only.
  1672. - Members of cgpu_info for avalon are not meant to be in the union.
  1673. - Use correct struct device_drv for avalon_drv.
  1674. - cgminer.c -S help to only say Icarus
  1675. - Check enough work is queued before queueing more in avalon_fill.
  1676. - Actually put the work in the avalon queue.
  1677. - Rneame avalon_api to avalon_drv.
  1678. - First draft of port of avalon driver to new cgminer queued infrastructure.
  1679. - Add Makefile entry for driver-avalon.
  1680. - Add configure support for avalon.
  1681. Version 2.11.4 - April 5th, 2013
  1682. - Remove bfl-sc option from configure for 2.11 branch.
  1683. - Only update hashrate calculation with the log interval.
  1684. - Update the total_tv_end only when we show the log to prevent failure to update
  1685. logs.
  1686. - Minor README updates.
  1687. - Add example 7970 tuning for scrypt in readme.
  1688. - Update driver recommendations.
  1689. - Add extensive GPU FAQs for the flood of new Scrypt miners.
  1690. - Remove help option for cpumining in build environment.
  1691. - Remove scripts that make it too easy to compile CPU mining support.
  1692. - Win32 and win64 build updates
  1693. - Remove references to CPU mining from README.
  1694. - Show share hash as little endian as needed.
  1695. - usbutils extra message requirements
  1696. - Make hashmeter frequency for hash_queued_work match sole_work.
  1697. - Update links and recommended SDKs.
  1698. - Update scrypt readme re drivers and sdk.
  1699. - usbutils.c usb_cmdname() usb_cmds -> string name
  1700. - BFL FPGA Windows timeout set to 999ms
  1701. - AUTHORS - spam update time (one year since the last)
  1702. - Update README for x970 memdiff values.
  1703. - Update README to match changes to display.
  1704. - Remove increasingly irrelevant discarded work from status lines.
  1705. - Remove increasingly irrelevant queued and efficiency values from status and
  1706. move WU to status line.
  1707. - Allow cgminer to start if usb hotplug is enabled but no devices yet exist.
  1708. - Do not scan other gpu platforms if one is specified.
  1709. - Update README for sync objects on windows.
  1710. - Update README about intensity.
  1711. - Add information for setting gpu max alloc and sync parameters for windows with
  1712. scrypt.
  1713. - If the hashmeter is less than the log interval and being updated by the
  1714. watchdog, don't update the hashrate.
  1715. Version 2.11.3 - March 17, 2013
  1716. - Update docs and reorder README to show executive summary near top.
  1717. - Update the hashmeter at most 5 times per second.
  1718. - Usbutils use its own internal read buffer
  1719. - Calculate work utility for devices that support target diffs of greater than
  1720. 1, and update scrypt code to use it.
  1721. - usbutils allow read termination match to be a string
  1722. - Set default GPU threads to 1 for scrypt.
  1723. - Connect backup stratum pools if the primary pool cannot deliver work.
  1724. - Use a new algorithm for choosing a thread concurrency when none or no shader
  1725. value is specified for scrypt.
  1726. - Do not round up the bufsize to the maximum allocable with scrypt.
  1727. - Remove the rounding-up of the scrypt padbuffer which was not effectual and
  1728. counter-productive on devices with lots of ram, limiting thread concurrencies
  1729. and intensities.
  1730. - bufsize is an unsigned integer, make it so for debug.
  1731. - Update the hashmeter once per second but only display the extra logs every
  1732. opt_log_inteval.
  1733. - add a dummy ztex to usbutils so cgminer -n lists ztex also
  1734. - nDevs required for -n with usb
  1735. - USB device list - convert some common error numbers to messages
  1736. - USB -n 'known' text only without ---usb-list-all
  1737. - USB modify -n and --usb-dump to only show known devices or use new
  1738. --usb-list-all option to see all
  1739. - Make pool adding while running asynchronous, using the pool test thread
  1740. functionality.
  1741. - Only curl easy cleanup a stratum curl if it exists.
  1742. - Sacrifice the ram of curl handles in stratum disconnects when we have built
  1743. with old libcurl to avoid crashes.
  1744. - cgminer -n to include a USB device list
  1745. - usbutils allow call of usb_all() from other code
  1746. - Convert gbt_lock to a cg_lock.
  1747. - Add intermediate variants of cglocks that can be up or downgraded to read or
  1748. write locks and use them for stratum work generation.
  1749. - Move the stratum and GBT data to be protected under a new cg_lock data_lock.
  1750. - Convert the ch_lock to cg_lock.
  1751. - Convert the control_lock to a cg_lock.
  1752. - Remove unused qd_lock.
  1753. - Implement cg_lock write biased rwlocks.
  1754. - do usb_initialise() after the started message so we see it
  1755. - --usb-dump display brief dump if value = 0
  1756. - USB add --usb options to limit USB device selection v0.1
  1757. Version 2.11.2 - March 9, 2013
  1758. - Whitelist AMD APP SDK 2.8 for diablo kernel.
  1759. - Cope with the highest opencl platform not having usable devices.
  1760. - Fix memory leak with share submission on GPU work structures as discovered by
  1761. twobitcoins.
  1762. - usb_cleanup() without locking.
  1763. - Use curl_easy_cleanup to close any open stratum sockets.
  1764. - Show pool number in switch message
  1765. - Don't start testing any pools with the watchpool thread if any of the test
  1766. threads are still active.
  1767. - Set sockd to false should curl setup fail on stratum.
  1768. - Close any open sockets when reusing a curl handle and reopen the socket
  1769. whenever we're retrying stratum.
  1770. - Set pool died on failed testing to allow idle flag and time to be set.
  1771. - Remove unused pthread_t typedefs from struct pool.
  1772. - Perform pool_resus on all pools that are found alive with the test pool
  1773. threads.
  1774. - Use pool_unworkable in select_balanced as well.
  1775. - Differentiate pool_unusable from pool_unworkable.
  1776. - Keep a connection open on higher priority stratum pools to fail back to them.
  1777. - Rename threads according to what pool they're associated with as well.
  1778. - Set the wrong bool in pool_active
  1779. - Start the stratum thread only if we successfully init and authorise it,
  1780. otherwise unset the init flag.
  1781. - Make the initialisation of the stratum thread more robust allowing the
  1782. watchpool thread safe access to it after the stratum thread is started.
  1783. - API no longer ignore send() status
  1784. - API make the main socket non-static
  1785. Version 2.11.1 - March 7, 2013
  1786. - Shorten the time before keepalive probes are sent out and how frequently
  1787. they're sent with stratum curls.
  1788. - Only set stratum auth once to prevent multiple threads being started.
  1789. - Display select return value on select fail in stratum thread.
  1790. - Clear the socket of anything in the receive buffer if we're going to retry
  1791. connecting.
  1792. - Allow pools to be resuscitated on first startup by the watchpool thread.
  1793. - Check all pools simultaneously at startup switching to the first alive one to
  1794. speed up startup.
  1795. - Clear just the socket buffer when we don't care what is left in a stratum
  1796. socket.
  1797. - Clear the stratum socket whenever we are closing it since the buffer is going
  1798. to be reused.
  1799. - Do not continue work from a stratum pool where the connection has been
  1800. interrupted.
  1801. - Reset stratum_notify flag on suspend_stratum as well.
  1802. - Close any sockets opened if we fail to initiate stratum but have opened the
  1803. socket.
  1804. - Close any existing stratum socket if we are attempting to restart stratum so
  1805. the pool knows the connection has gone.
  1806. - Show mechanism of stratum interruption if select times out.
  1807. - Make stratum connection interrupted message higher priority to be visible at
  1808. normal logging levels.
  1809. - Implement client.show_message support for stratum.
  1810. - API add 'Network Difficulty' to 'coin'
  1811. - Setup BFLSC support
  1812. - API use control_lock when switching pools
  1813. - Make sure to retry only once with noresume support for stratum.
  1814. - Instead of keeping track of when the last work item was generated to keep
  1815. stratum connections open, keep them open if any shares have been submitted
  1816. awaiting a response.
  1817. - usbutils.c copy full size to 'Last Command'
  1818. - configure - set USE_USBUTILS when usbutils is required and use it in the code
  1819. - Clear last pool work on switching pools if the current pool supports local
  1820. work generation or we are in failover only mode.
  1821. - make rw locks: mining_thr_lock and devices_lock
  1822. - Release MMQ device only once (not 4 times)
  1823. - api.c fix MSG overlap
  1824. - Hotplug - allow setting interval via --hotplug or API
  1825. - curses - fix - put a dev_width inside #ifdef
  1826. - usb_cleanup() use correct locking mechanism
  1827. - Implement and use usb_cleanup() on shutdown or restart
  1828. - miner.php report 'Last Valid Work' as time before request
  1829. - API - return Last Valid Work
  1830. - api -> drv
  1831. - ZTX bug set missing drv_id
  1832. Version 2.11.0 - March 2, 2013
  1833. - Update kernel file names signifying changes.
  1834. - Update a pool's last work time when the work is popped as well as staged.
  1835. - API always report failed send() replies
  1836. - Update diff stale: total and pools when stratum throws away shares
  1837. - Keep stratum connections open for 2 minutes after the last work item was
  1838. staged to allow stray shares to be submitted on pool switching.
  1839. - Try to extract the sessionid associated with mining.notify on 3rd level array
  1840. and submit it along with the userid to support mining resume, failing gracefully
  1841. and restarting if the pool rejects it.
  1842. - Speed up watchdog interval and therefore display updates to 2 seconds.
  1843. - Update copyright dates.
  1844. - Cope with misread sessionid on stratum for now.
  1845. - Use constants from the array of __constants throughout the diablo kernel.
  1846. - Create a __constant array for use within diablo kernel.
  1847. - Fix --benchmark generating valid work for cgminer.
  1848. - Use the sessionid as passed on stratum connect to attempt to resume a
  1849. connection once and then clear it if it fails, to use a new connection.
  1850. - Move to storing the nonce1 in the work struct instead of the sessionid for the
  1851. now defunct first draft mining.resume protocol.
  1852. - Use global constant arrays for all other constants used in scrypt kernel.
  1853. - Use global __constants for sha functions in scrypt kernel.
  1854. - Use constants for endian swap macros.
  1855. - Revise scrypt kernel copyright notice.
  1856. - Separate out additions in scrypt kernel.
  1857. - Reuse some Vals[] variables that can be assigned to constants earlier in the
  1858. poclbm kernel, making for fewer ops.
  1859. - Put all constants used in poclbm kernel into __const memory array to speed up
  1860. concurrent reads on the wavefront.
  1861. - BFL stop 1st init command if no device
  1862. - Add a get_queued function for devices to use to retrieve work items from the
  1863. queued hashtable.
  1864. - Bugfix: Duplicate stratum sessionid when copying work, to avoid double-free
  1865. - Bugfix: Missing pool_no parameter to applog for no-stratum-sessionid debug
  1866. message
  1867. - Add the choice of hash loop to the device driver, defaulting to hash_sole_work
  1868. if none is specified.
  1869. - Add comments.
  1870. - Add a driver specific flush_work for queued devices that may have work items
  1871. already queued to abort working on them on the device and discard them.
  1872. - Flush queued work on a restart from the hash database and discard the work
  1873. structs.
  1874. - Create a central point for removal of work items completed by queued device
  1875. drivers.
  1876. - Create a fill_queue function that creates hashtables of as many work items as
  1877. is required by the device driver till it flags the queue full.
  1878. - Create the hash queued work variant for use with devices that are fast enough
  1879. to require a queue.
  1880. - Update copyright year.
  1881. - Fix tv_lastupdate being made into tv_end and update the hashmeter on cycle,
  1882. not opt_log_interval.
  1883. - Fix tv_lastupdate being made into tv_end and update the hashmeter on cycle,
  1884. not opt_log_interval.
  1885. - Only continue submitting shares with mining.resume support on stratum when the
  1886. session id matches.
  1887. - Provide support for mining.resume with stratum, currently re-authorising after
  1888. successful resumption pending finalising of the protocol process.
  1889. - Provide basic framework for restarting stratum depending on whether resume
  1890. support exists or not.
  1891. - Abstract out the setting up of the stratum curl socket.
  1892. - Free sessionid in clean_work and remove redundant setting of strings to NULL
  1893. since the whole work struct is zeroed.
  1894. - Only clear stratum shares mandatorily on stratum dropouts when the pool does
  1895. not support resume.
  1896. - Try resubmitting stratum shares every 5 seconds for up to 2 minutes if the
  1897. pool session id exists and matches on failure to submit.
  1898. - Do as much outside of mutex locking of sshare_lock as possible.
  1899. - Remove last reference to struct work used outside the sshare_lock in
  1900. submit_work_thread
  1901. - Unlock the sshare_lock in submit_work_thread when all references to work and
  1902. sshare are complete.
  1903. - Add timestamps to stratum_share structs as they're generated and copy the
  1904. stratum sessionid if it exists to stratum work generated.
  1905. - Store session id for stratum if the pool supports it for future mining.resume
  1906. support.
  1907. - API.java allow partial reads
  1908. - debug_cb buffer type warning
  1909. - MMQ rewrite the last of the old scanhash loop and drastically reduce CPU
  1910. - hash_sole_work can be static
  1911. - Make the numbuf larger to accept larger scrypt parameters.
  1912. - Keep the unique id of each work item across copy_work to prevent multiple work
  1913. items having the same id.
  1914. - Abstract out the main hashing loop to allow us to use a separate loop for
  1915. devices that are fast enough to require queued work.
  1916. - Provide a noop thread_enable function for drivers that don't support it.
  1917. - Provide a noop thread_shutdown function for drivers that don't support it.
  1918. - Provide a noop hw_error function for drivers that don't support it.
  1919. - Provide a noop prepare_work for drivers that don't support it.
  1920. - Provide a noop thread_init for drivers that don't support it.
  1921. - Provide a noop can_limit_work for devices that don't support it.
  1922. - Provide a noop thread_prepare function for drivers that don't use
  1923. thread_prepare.
  1924. - Use blank_get_statline_before for GPU devices that don't support adl
  1925. monitoring.
  1926. - Provide a noop get_stats function for drivers that don't support it.
  1927. - Provide a blank get_statline for drivers that don't support it.
  1928. - Provide a blank get_statline_before function for drivers that don't have one.
  1929. - Fill drivers missing reinit_device with a noop version.
  1930. - add 'count' to cumstomsummarypage 'calc'
  1931. - hotplug use get_thread() where appropriate
  1932. - convert sleep(const) to nmsleep()
  1933. - remove empty #ifdef
  1934. - call a separate get_devices() with locking, as required
  1935. - usbutils - avoid free cgusb twice
  1936. - usbutils hotplug v0.1
  1937. - Report USB nodev as ZOMBIE on the screen
  1938. - Change file modes.
  1939. Version 2.10.5 - February 7, 2013
  1940. - Fix logic fail on partial writes with stratum send that was leading to corrupt
  1941. message submissions.
  1942. - Do not consider every call to stratum_resumed a pool recovery unless it was
  1943. actually idle.
  1944. - Do not enable the pool disable on reject feature unless explicitly enabled
  1945. with --disable-rejecting.
  1946. - Stratum disconnect shares - count total against stale
  1947. - Use sanity checking to prevent a possible overflow with invalid data being
  1948. given by the pool for difficulty as reported by luke-Jr.
  1949. - Check for calloc failure for completeness in gen_stratum_work.
  1950. - Cache the coinbase length to speed up stratum work generation.
  1951. - Cache the header length when generating stratum work to avoid calculating it
  1952. on every work generation, and to only need one alloc+sprintf, speeding up work
  1953. generation.
  1954. - Use heap ram for coinbase in gen_stratum_work, zeroing it before use.
  1955. - Provide a wrapper for aligning lengths of size_t to 4 byte boundaries.
  1956. - Fix memory leak on stratum share submission.
  1957. - Zero the best share string memory when zeroing stats.
  1958. Version 2.10.4 - December 29, 2012
  1959. - Change the pool stratum socket buffer to be dynamically allocated to
  1960. accomodate any size coinbase and keep receiving data in recv line for up to 60s
  1961. if no end of line has been received.
  1962. - Differentiate socket full from sock full.
  1963. - Allow stratum to startup without notify but check it is valid before creating
  1964. stratum work.
  1965. - Do not try to generate stratum work unless the notify command has succeeded.
  1966. - Reset total diff1 shares when zeroing stats as well to show correct work
  1967. utility.
  1968. Version 2.10.3 - December 26, 2012
  1969. - Do not give the share submission failure message on planned stratum
  1970. disconnects.
  1971. - Parse anything in the stratum socket if it's full without waiting. Empty the
  1972. socket even if a connection is not needed in case there are share returns.
  1973. - Provide a mechanism to zero all the statistics from the menu.
  1974. - Display the current pool diff in the status line.
  1975. - Display block diff in status line.
  1976. - Generalise the code for solving a block to enable block solve detection with
  1977. scrypt mining.
  1978. - Generate the output hash for scrypt as well and use the one function to set
  1979. share_diff.
  1980. - Use the flip80 function in regeneratehash and the correct sized hash array.
  1981. - Use one size for scratchbuf as a macro in scrypt.c
  1982. - Stage work outside of the stgd lock to prevent attempted recursive locking in
  1983. clone_available.
  1984. - share_diff needs to be performed on a BE version of the output hash to work,
  1985. leading to false best_share values as spotted by luke-Jr.
  1986. - Remove the unused sha224 functions.
  1987. - Use the flip functions in hashtest.
  1988. - Simplify the setting of the nonce data field in work on submitting nonces.
  1989. - Scrypt code does not enter the hashtest function.
  1990. - Go back to cloning available work under staged lock.
  1991. - Updated links to AMD APP SDK
  1992. - Updated link to ADL SDK
  1993. - scrypt_diff uses a uint64_t as well.
  1994. - Correct target for stratum support with scrypt mining.
  1995. - libztex: fixed a typo
  1996. - libztex: check returnvalue of libusb_claim_interface() and release the
  1997. interface in case of early exit
  1998. Version 2.10.2 - December 19, 2012
  1999. - Stop all work from the current pool if it's a stratum pool once it is
  2000. disconnected since it will be invalid upon reconnecting.
  2001. - Discard all staged work from stratum pools as well as the shares upon
  2002. disconnection since all the work becomes invalid.
  2003. - Use correct cbreak after 15 second delay when no pool is found alive.
  2004. - MMQ missing firmware -> ERR not DEBUG
  2005. - Allow stratum to work with scrypt.
  2006. - MMQ ensure delta clock can never exceed limits
  2007. - MMQ lowercase new string constants
  2008. - MMQ add api pgaset for clock
  2009. - API V1.23 - new pgaset command, to be used soon
  2010. - Protect the best_share/best_diff values under control lock.
  2011. - MMQ style police
  2012. - MMQ count work check timeout failures
  2013. - MMQ allow partial work replies and count them
  2014. - Check a stratum pool hasn't gone dead while being a backup pool and missed
  2015. having its idle flag cleared.
  2016. - MMQ overheat: remove clockdown (doesn't help) + ensure no lost shares
  2017. - API-README grammar
  2018. - API-README explain custom page extensions in miner.php
  2019. - miner.php add a sample group pool report
  2020. - miner.php allow where,group,having on cumstom pages
  2021. Version 2.10.1 - December 14, 2012
  2022. - Check for EWOULDBLOCK when supported in send and recv as well.
  2023. - Use the raw send() command instead of curl_easy_send since curl raw socket
  2024. usage introduces random bugs on windows.
  2025. - Use raw recv() command in place of curl_easy_recv since the curl
  2026. implementation introduces random bugs on windows builds when the recv fails.
  2027. - miner.php when displaying a single rig, add prev/next rig buttons if they
  2028. exist, next to refresh
  2029. - miner.php allow custom page joins for STATS
  2030. - API show if pool has GBT (so people know not to use that pool)
  2031. - miner.php - include windows easyphp link
  2032. - driver-ztex: use the correct size for the swap array
  2033. - API stats - display pool byte transfer stats
  2034. - Pool store data transfer stats
  2035. - README ModMiner dependency
  2036. - Benchmark incorrect work size
  2037. - ChangeLog refer to NEWS
  2038. - MMQ handle over temp differently and hash longer
  2039. - driver-ztex: search the complete noncerange based on the actual speed
  2040. - README - update ModMiner details
  2041. - API-README update
  2042. - api use a dynamic io buffer, truncated before it reaches the current ~64k
  2043. limit
  2044. Version 2.10.0 - December 10, 2012
  2045. - Include prctl header for thread renaming to work.
  2046. - Set tv_idle time if a pool is not active when input from the menu.
  2047. - usb display message when device is in use/another cgminer
  2048. - libztex: avoid the use of libusb_error_name()
  2049. - minor unlikely zero pointer test
  2050. - BeaverCreek doesn't like BFI INT patching.
  2051. - Only stratum pools that are idle need to be kicked via cnx_needed.
  2052. - mmq - abbreviate the temperature numbers
  2053. - Do not do any setup if opt_api_listen is disabled in api.c.
  2054. - usbutils.c uninitialised usbstat for non-primary mmqs
  2055. - Only set the lagging flag for select_pool() on failed getwork if we're not in
  2056. opt_fail_only mode.
  2057. - libztex: in case the selectFpga() failed set the selected fpga to unknown
  2058. - Modified windows-build.txt to update git instructions.
  2059. - libztex: use a function for the twice called firmware reset code
  2060. - libztex: removed an unused struct member (ztex->valid)
  2061. - driver-ztex: support for broken fpga on a multifpga board
  2062. - Set the pool lagging flag on startup to avoid it being shown initially, and
  2063. only unset it once the maximum number of staged work items has been reached.
  2064. - Avoid recursive locking of the stgd lock.
  2065. - Return value of keep_sockalive is no longer used.
  2066. - Remove dependency on mstcpip.h for windows build by making curl version >=
  2067. 7.25.0 mandatory on windows builds, and use curl functions for keepalive
  2068. whenever possible instead.
  2069. - Make main() the getwork scheduler once everything is set up, so that all app
  2070. exits use the kill_work and quit paths.
  2071. - ztex: more style and whitespace fixes
  2072. - libztex: silenced another warning
  2073. - Set successful connect to true on auth stratum to allow summary on exit from
  2074. single stratum pool.
  2075. - Only consider work stale for stratum of different job_id if it's not a share.
  2076. - Increment version preempting changed version signifying different codebase to
  2077. 2.9
  2078. - Hash_pop should signal further waiters on its own pthread conditional in case
  2079. there are multiple waiters.
  2080. - Check the job_id has not changed on stratum work when deciding if the work is
  2081. stale as might occur across disconnections.
  2082. - Perform pool_resus on getwork pool that generates work in getwork_thread.
  2083. - Set pool lagging message for getwork pool that falls to zero staged in getwork
  2084. thread.
  2085. - Stage extra work when the primary pool is a getwork pool without rolltime.
  2086. - Do not try to clean up twice if kill message is given.
  2087. - Only recalculate total_staged in getwork thread if required.
  2088. - Include the correct config header in libztex and include it before other
  2089. includes.
  2090. - Implement a completely new getwork scheduler. Stage all work from the one
  2091. thread, making it possible to serialise all requests minimising the number of
  2092. getworks requested or local work generated. Use a pthread conditional to wake up
  2093. the thread whenever work is removed to generate enough work to stay above the
  2094. watermark set by opt_queue. Remove all remnants of the old queueing mechanism,
  2095. deleting the now defunct queued count.
  2096. - libztex: fixed some warnings and removed some whitespaces
  2097. - libztex: silenced some warnings
  2098. - Remove all references to the now unused workio_cmd structure.
  2099. - Remove the old workio command queue thread, replacing it with a kill
  2100. conditional to exit the program.
  2101. - Remove getwork command from workio_cmd queues and do them directly from
  2102. queue_request.
  2103. - Begin tearing down the old workio command queues by removing submit commands
  2104. from there and submit them asynchronously via their own threads.
  2105. - Update windows build instructions.
  2106. - Set pool probed to true on successful authorisation with stratum to avoid it
  2107. being pinged later with pool_getswork.
  2108. - driver-ztex: libztex_setFreq() must be called before ztex_releaseFpga()
  2109. - driver-ztex: changed two pairs of malloc()/memset() to calloc()
  2110. - libztex: Read bitstream file in 2kb blocks with simpler and faster code
  2111. - Added the binary versions of ztex_ufm1_15d4.ihx and ztex_ufm1_15y1.ihx
  2112. - Trivial space removal.
  2113. - libztex: Add firmware download support for ZTEX 1.15d and 1.15x
  2114. - libztex: Factor out local version of libusb_get_string_descriptor_ascii()
  2115. - Shut up some boring old cpu warnings.
  2116. - Style changes.
  2117. - Allow pool active to be called on stratum or disabled pools in the watchpool
  2118. thread if the pool has not been probed.
  2119. - libztex: Make log messages say bitstream when refering to bitstreams
  2120. - libztex: Don't return error when a bitstream was already configured
  2121. - libztex: Read bitstream file in 64kb blocks with simpler and faster code
  2122. - libztex: Verify that the mining firmware is not a dummy firmware
  2123. - libztex: Match mining firmware ZTEX descriptor against the dummy firmware
  2124. - Combine shared padding into one char.
  2125. - libztex: Start download sequence only after reading in the new firmware
  2126. - libztex: Download mining firmware to all devices with dummy firmware
  2127. - lock (most of) the threaded statistics updates
  2128. - README stats don't add up
  2129. - usbutils.c remove compiler warning
  2130. - Make need connection return true if a pool is idle.
  2131. - API add Best Share to summary
  2132. - Check on creating new GBT work if the structures are up to date and update
  2133. them as required rather than regularly.
  2134. - Update windows build instructions.
  2135. - Enable backup stratum connections for getwork when the primary pool doesn't
  2136. have longpoll aka solo mining.
  2137. - Check for correct absence of opt_fail_only in cnx_needed.
  2138. - Remove unused variable.
  2139. - The specification for stratum has been elaborated to say that a changed diff
  2140. applies only to new work so do not retarget when submitting shares.
  2141. - Use a variable length string array in submit_upstream_work to cope with
  2142. massive GBT submissions.
  2143. - API lock access to some summary statistics (and copy them)
  2144. - Suspend stratum connections to backup pools when there is no requirement to
  2145. potentially grab work from them.
  2146. - Fix missing export for RenameThread.
  2147. - enumerate the mining threadnames
  2148. - MMQ avoid possible number overrun crashes
  2149. - mmq usb v0.4 + api usb stats
  2150. - setting the name of the threads for linux,freebsd,openbsd and osx code is
  2151. borrowed from bitcoins util.c, so it is already tested
  2152. - Don't show broken WU value with scrypt mining.
  2153. - Style police.
  2154. - Remove unused getwork times in getswork.
  2155. - Fix readme wordwrap.
  2156. Version 2.9.6 - December 2, 2012
  2157. - Make gen_stratum_work more robust by using a dynamically allocated array for
  2158. the header in case bogus data is sent by the pool to avoid overflowing a static
  2159. array.
  2160. - scrypt_diff now returns a uint64_t
  2161. - Support monitoring and reporting much higher diffs for scrypt mining,
  2162. truncating irrelevant zeroes from displayed hash.
  2163. - Pass ostate values around in scrypt to be able to extract full hashes if
  2164. needed later on.
  2165. - Since we will be using calloc_str to put a string into it, convert the
  2166. function to calloc_strcat which does it automatically.
  2167. - Revert "Handle crash exceptions by trying to restart cgminer unless the
  2168. --no-restart option is used."
  2169. - Count longpoll and GBT decodes as queued work since the count otherwise
  2170. remains static.
  2171. - Use the string helper functions to create gbt blocks of any length.
  2172. - Provide helper functions calloc_str and realloc_strcat to create and extend
  2173. arbitrary length arrays based on string length.
  2174. Version 2.9.5 - November 25, 2012
  2175. - fixes target calc for mips openwrt
  2176. - openwrt needs roundl
  2177. - Get rid of unused last_work in opencl thread data.
  2178. - Do away with the flaky free_work api in the driver code which would often lose
  2179. the work data in opencl and simply flush it before exiting the opencl scanhash.
  2180. - Use base_work for comparison just for cleanness in __copy_work
  2181. - Remove all static work structs, using the make and free functions.
  2182. - Add pool no. to stale share detected message.
  2183. - Add info about which pool share became stale while resubmitting.
  2184. -b Copy the work on opencl_free_work
  2185. - Add an extra slot in the max backlog for ztex to minimise dupes.
  2186. - Do not use or count the getworks submitted which are simply testing that pools
  2187. are still up. This was increasing share leakage and making stats not reflect
  2188. real work.
  2189. - Track all dynamically allocated memory within the work struct by copying work
  2190. structs in a common place, creating freshly allocated heap ram for all arrays
  2191. within the copied struct. Clear all work structs from the same place to ensure
  2192. memory does not leak from arrays within the struct. Convert the gbt coinbase and
  2193. stratum strings within the work struct to heap ram. This will allow arbitrary
  2194. lengths without an upper limit for the strings, preventing the overflows that
  2195. happen with GBT.
  2196. - libztex: Work around ZTEX USB firmware bug exposed by the FreeBSD libusb
  2197. - opencl: Use new dev_error function for REASON_DEV_NOSTART
  2198. Version 2.9.4 - November 18, 2012
  2199. - Provide rudimentary support for the balancing failover strategies with stratum
  2200. and GBT by switching pools silently on getwork requests.
  2201. - Convert remaining modminer and bfl uses of usleep to nmsleep.
  2202. - Convert libztex to nmsleep where possible.
  2203. - Convert unreliable usleep calls to nmsleep calls in ztex driver.
  2204. - Support workid for block submission on GBT pools that use it.
  2205. - Provide rudimentary support for literal ipv6 addresses when parsing stratum
  2206. URLs.
  2207. - Work around libcurl cflags not working on hacked up mingw installations on
  2208. windows.
  2209. - Only increase gpu engine speed by a larger step if the temperature is below
  2210. hysteresis instead of increasing it to max speed.
  2211. - Convert pool not responding and pool alive message on backup pools to verbose
  2212. level only since they mean a single failed getwork.
  2213. - Update work block on the longpoll work item before calling restart threads to
  2214. ensure all work but the longpoll work item gets discarded when we call
  2215. discard_stale from restart_threads.
  2216. - Do not attempt to remove the stratum share hash after unsuccessful submission
  2217. since it may already be removed by clear_stratum_shares.
  2218. - Check against a double for current pool diff.
  2219. - Support for fractional diffs and the classic just-below-1 share all FFs diff
  2220. target.
  2221. Version 2.9.3 - November 11, 2012
  2222. - Make header larger on gen stratum work to accomodate \0 at the end.
  2223. Version 2.9.2 - November 11, 2012
  2224. - Use stratum block change from backup pools as an alternative to longpoll for
  2225. pools that don't support LP.
  2226. - Check share target diff for best_share to be calculated when solo mining.
  2227. - Round some more static string arrays to 4 byte boundaries.
  2228. - There is no need for the static arrays to be larger than required, so long as
  2229. they're 4 byte aligned to appease ARM.
  2230. - Store the full stratum url information in rpc_url for correct configuration
  2231. file saving.
  2232. - Put in a hack to prevent dud work from sneaking into test_work_current being
  2233. seen as a new block.
  2234. - Reset the work->longpoll flag where it will affect stratum work items as well.
  2235. - Check for both coinbase/append and submit/coinbase support before using GBT
  2236. protocol.
  2237. - First pass through testing for GBT should not set probed to true since we are
  2238. about to probe again.
  2239. - Hash1 is only used by the deprecated cpu mining code and never changes so
  2240. remove it from the work struct and bypass needing to process the value for all
  2241. other mining.
  2242. - Get a work item once per minute for all getwork and GBT pools to test they're
  2243. still alive and to maintain a current GBT template.
  2244. - Get a fresh block template with GBT pools on switching to them.
  2245. Version 2.9.1 - November 6, 2012
  2246. - Reset work flags to prevent GBT shares from being submitted as stratum ones
  2247. after switching.
  2248. Version 2.9.0 - November 6, 2012
  2249. - Add endian swap defines for where missing.
  2250. - Only retarget stratum shares to new pool diff if diff has dropped.
  2251. - Remove resetting of probed variable when detecting GBT.
  2252. - Count lost stratum share submits and increase message priority to warning.
  2253. - Only retrieve a new block template for GBT pools that are the current pool.
  2254. - Show which pool untracked share messages have come from.
  2255. - Add management for dead GBT pools.
  2256. - Count lost shares with stratum as submit stale lost.
  2257. - Discard record of stratum shares sent and report lost shares on disconnection
  2258. since they will never be reported back.
  2259. - Swab, don't just swap the bytes in the GBT target.
  2260. - Change status window message for GBT connected pools versus LP.
  2261. - Generate a gbt work item from longpoll when required to set new block and
  2262. message appropriately.
  2263. - Use existing pool submit_old bool from gbt data.
  2264. - Retrieve a new block template if more than 30 seconds has elapsed since the
  2265. last one to keep the data current and test the pool is still alive.
  2266. - Update GBT longpollid every time we request a new longpoll.
  2267. - Manage appropriate response codes for share submission with GBT.
  2268. - Allow the longpoll thread to start with GBT and only set the longpollid once.
  2269. - Correct last few components of GBT block generation courtesy of Luke-jr.
  2270. - Use correct length for offsetting extra nonce and remaining data.
  2271. - Flip all 80 bytes in the flip function which was wrongly named flip256 for its
  2272. purpose.
  2273. - Calculate midstate for gbt work and remove now unused variable.
  2274. - Use a standard function for flipping bytes.
  2275. - Insert the extra nonce and remaining data in the correct position in the
  2276. coinbase.
  2277. - Remove txn size debugging and enlarge gbt block string to prevent overflow.
  2278. - Remove varint display debugging.
  2279. - Build varint correctly for share submission and sleep 5 seconds before
  2280. retrying submit.
  2281. - Make gbt_coinbase large enough for submissions, swap bytes correctly to make a
  2282. header from GBT and encode the number of transactions in share submission.
  2283. - Store the fixed size entries as static variables in GBT in binary form,
  2284. byteswapping as is required.
  2285. - 32 bit hex encoded variables should be in LE with GBT.
  2286. - Target and prevblockhash need to be reversed from GBT variables.
  2287. - Construct block for submission when using GBT.
  2288. - Use same string for debug as for submission and make string larger to cope
  2289. with future GBT messages.
  2290. - Skip trying to decipher LP url if we have GBT support.
  2291. - Store all the transaction hashes in pool->txn_hashes instead of separating
  2292. txn0 and correct generation of merkle root, fixing memory overwrites.
  2293. - Hook into various places to generate GBT work where appropriate.
  2294. - Create extra work fields when generating GBT work.
  2295. - Generate header from correct hashing generation of the merkle root for GBT.
  2296. - Generate the merkle root for gbt work generation.
  2297. - Create a store of the transactions with GBT in the minimum size form required
  2298. to generate work items with a varied coinbase.
  2299. - Create a function that generates a GBT coinbase from the existing pool
  2300. variables.
  2301. - Extract and store the various variables GBT uses when decoding gbt work.
  2302. - Check for invalid json result in work_decode.
  2303. - Decode work in separate functions for getwork vs gbt.
  2304. - Check for the coinbase/append mutable in GBT support to decide whether to use
  2305. it or not.
  2306. - Add a gbt mutex within the pool struct for protecting the gbt values.
  2307. - Convert work decode function to prepare for decoding block templates.
  2308. - Check for GBT support on first probing the pool and convert to using the GBT
  2309. request as the rpc request for that pool.
  2310. - Make the rpc request used with getwork a pool variable to allow it to be
  2311. converted to/from gbt requests.
  2312. - Changes to build prototypes to support building on FreeBSD 9.1-RC2 amd64
  2313. - Free old stratum_work data before replacing it
  2314. - There is no need for addrinfo any more.
  2315. - server and client sockaddr_in are no longer used in struct pool.
  2316. - Merge pull request #322 from luke-jr/bugfix_stratum_tmpwork
  2317. - Set sshare id and swork_id within the sshare mutex to avoid multiple share
  2318. submits with the same id.
  2319. - Initialize temporary stratum work
  2320. Version 2.8.7 - October 29, 2012
  2321. - Fail on select() failing in stratum thread without needing to attempt
  2322. recv_line.
  2323. - Add share to stratum database before sending it again in case we get a
  2324. response from the pool before it's added.
  2325. Version 2.8.6 - October 29, 2012
  2326. - Shorten the initiate stratum connect timeout to 30 seconds.
  2327. - Shorten the stratum timeout on read to 90 seconds to detect unresponsive pool.
  2328. - Display best share difficulty on exit.
  2329. - Make stratum socket fail more robust on windows by disabling the send buffer.
  2330. - Reuse the same curl handle forcing a new connection instead of risking
  2331. derefencing.
  2332. - Add information about submission failure to stratum send.
  2333. - Only add stratum share to database if we succeeded in submitting it, with a
  2334. debug output saying it succeeded.
  2335. - Use keepalive with stratum sockets to improve its ability to detect broken
  2336. connections.
  2337. - Show only the URL in the status bar to avoid long prefixes making for extra
  2338. long lines.
  2339. - Display compact status in menu and update README to reflect current menu
  2340. entries.
  2341. - Add a compact display mode that does not list per device statistics in the
  2342. status window.
  2343. - Add blank spaces after best share displayed.
  2344. - Round a few static string arrays up to 4 byte boundaries for ARM.
  2345. - Display best share diff for scrypt as well.
  2346. - Show the best diff share as "best share" and add info to the README.
  2347. - Display the best diff share submitted so far.
  2348. - Redundant check.
  2349. - The work struct pointer in struct pc_data in findnonce is never freed yet
  2350. there is no need to allocate it separately so make struct work a static part of
  2351. the struct pc_data. s
  2352. Version 2.8.5 - October 23, 2012
  2353. - Handle crash exceptions by trying to restart cgminer unless the --no-restart
  2354. option is used.
  2355. - Switch queued count when choosing a different pool from a failed stratum pool
  2356. in getwork thread.
  2357. - Put a mandatory 5s wait between reattempting a getwork on failure to avoid
  2358. hammering requests.
  2359. - The ATI stream / AMD APP SDK environment variables appear to only interfere
  2360. with win32 builds so bypass them.
  2361. - Make sure to check pool stratum curl exists under lock before attempting any
  2362. recv to not risk dereferencing upon attempting to reinitiate stratum.
  2363. - Avoid redefining macros and align to 4 byte boundaries.
  2364. - API - add Stratum information to pools
  2365. - update FPGA-README for MMQ
  2366. Version 2.8.4 - October 18, 2012
  2367. - Time for dynamic is in microseconds, not ms.
  2368. - x86_64 builds of mingw32 are not supported directly and should just configure
  2369. as generic mingw32 builds since they're NOT 64 bit.
  2370. - Cope with both ATI stream and AMD APP SDK roots being set when building.
  2371. - Use 3 significant digits when suffix string is used and values are >1000.
  2372. - MMQ new initialisation (that works) and clocking control
  2373. - Get rid of unused warning for !scrypt.
  2374. - Use select on stratum send to make sure the socket is writeable.
  2375. - Cope with dval being zero in suffix_string and display a single decimal place
  2376. when significant digits is not specified but the value is greater than 1000.
  2377. - Pad out the suffix string function with zeroes on the right.
  2378. - Failure to calloc in bin2hex is a fatal failure always so just check for that
  2379. failure within the function and abort, simplifying the rest of the code.
  2380. - Provide locking around the change of the stratum curl structures to avoid
  2381. possible races.
  2382. - Bump opencl kernel version numbers.
  2383. - Remove atomic ops from opencl kernels given rarity of more than once nonce on
  2384. the same wavefront and the potential increased ramspeed requirements to use the
  2385. atomics.
  2386. - Clear the pool idle flag in stratum when it comes back to life.
  2387. - Display correct share hash and share difficulty with scrypt mining.
  2388. - Use explicit host to BE functions in scrypt code instead of hard coding
  2389. byteswap everywhere.
  2390. - Show work target diff for scrypt mining.
  2391. - Ease the checking on allocation of padbuffer8 in the hope it works partially
  2392. anyway on an apparently failed call.
  2393. - Watch for buffer overflows on receiving data into the socket buffer.
  2394. - Round target difficulties down to be in keeping with the rounding of detected
  2395. share difficulties.
  2396. - Dramatically simplify the dynamic intensity calculation by oversampling many
  2397. runs through the opencl kernel till we're likely well within the timer
  2398. resolution on windows.
  2399. - String alignment to 4 byte boundaries and optimisations for bin<->hex
  2400. conversions.
  2401. - In opencl_free_work, make sure to still flush results in dynamic mode.
  2402. - Align static arrays to 4 byte boundaries to appease ARM builds for stratum.
  2403. Version 2.8.3 - October 12, 2012
  2404. - Left align values that are suffix_string generated.
  2405. - Share_diff should not be converting the work data to hex.
  2406. - Off by one error.
  2407. - Prevent overflows of the port char array in extract_sockaddr.
  2408. - Disable stratum detection with scrypt.
  2409. - Use the suffix string function when displaying device hashrates.
  2410. - Be consistent with the get_statline function.
  2411. - Use the suffix string function for displaying hashrate with 4 significant
  2412. digits.
  2413. - Display the actual share diff next to the pool required diff, using a suffix
  2414. creation function to prevent values of >1000 being shown in their entirety.
  2415. - Fix 4 * 0 being 0 that would break dynamic intensity mode.
  2416. - Fix wrong byteswap macro being used on mingw32 which was breaking target
  2417. generation on stratum.
  2418. Version 2.8.2 - October 11, 2012
  2419. - Reinstate the history on dynamic intensity mode to damp fluctuations in
  2420. intensity but use an upper limit on how much the value can increase at any time
  2421. to cope with rare overflows.
  2422. - Create a fix-protocol option which prevents cgminer from switching to stratum
  2423. if it's detected.
  2424. - Simplify target generation code.
  2425. - Add support for client.get_version for stratum.
  2426. - Use a 64 bit unsigned integer on the diff target to generate the hex target.
  2427. - Update reconnect message to show whole address including port.
  2428. - Look for null values and parse correct separate array entries for url and port
  2429. with client reconnect commands for stratum.
  2430. - The command for stratum is client.reconnect, not mining.reconnect.
  2431. - Only copy the stratum url to the rpc url if an rpc url does not exist.
  2432. - Implement rudimentary mining.reconnect support for stratum.
  2433. - Ignore the value of stratum_active on calling initiate_stratum and assume
  2434. we're always trying to reinitiate it, and set the active flag to false in that
  2435. function.
  2436. - stratum auth can be unset if we fail to authorise on subsequent calls to
  2437. auth_stratum which undoes the requirement of setting it in one place so set it
  2438. in pool_active.
  2439. Version 2.8.1 - October 8, 2012
  2440. - Use the stratum url as the rpc url advertised if we switch to it.
  2441. - Count an invalid nonce count as a hardware error on opencl.
  2442. - Count each stratum work item as local work.
  2443. - Cope with one stratum pool being the only active pool when it dies by sleeping
  2444. for 5 seconds before retrying to get work from it instead of getting work
  2445. indefinitely.
  2446. - Detect stratum outage based on either select timing out or receiving an empty
  2447. buffer and properly re-establish connection by disabling the stratum_active
  2448. flag, coping with empty buffers in parse_stratum.
  2449. Version 2.8.0 - October 7, 2012
  2450. - Major upgrade - support for the stratum mining protocol.
  2451. - Fix various modminer warnings on mingw.
  2452. - Fix sign warning on windows build for bitforce.
  2453. - Cast socketfail to integer since SOCKET is an unsigned int on windows.
  2454. - Use strtod not strtol for bitforce temp backup.
  2455. - Cope with broken drivers returning nonsense values for bitforce temperatures.
  2456. - Minor warning fixes.
  2457. - Use the stratum thread to detect when a stratum pool has died based on no
  2458. message for 2 minutes.
  2459. - Only set the stratum auth flag once and once the stratum thread is started,
  2460. use that to set/unset the stratum active flag.
  2461. - Only hand off to stratum from getwork if we succeed in initiating the
  2462. protocol.
  2463. - Target should only be 32 bytes copied.
  2464. - Use a static array for work submission data instead of stack memory.
  2465. - Clear the buffer data before sprinting to it.
  2466. - Clear work stratum strings before setting them and add them to debug output.
  2467. - Drop stratum connect failed message to verbose level only since it's a regular
  2468. probing message.
  2469. - TCP Keepalive in curl is only in very recent versions and not required with
  2470. regular messages on stratum anyway.
  2471. - Move stratum sockets to curl infrastructure with locking around send+recv to
  2472. begin support for proxies and ssl.
  2473. - Make detect stratum fail if a proxy has been set up.
  2474. - Stratum does not currently have any proxy support so do not try to switch to
  2475. stratum if a proxy has been specified.
  2476. - Windows doesn't work with MSG_PEEK on recv so move to a continuously updating
  2477. buffer for incoming messages.
  2478. - Alloca is unreliable on windows so use static arrays in util.c stratum code.
  2479. - Begin support for mingw stratum build.
  2480. - Add space to reject reason.
  2481. - Parse the reject reason where possible from stratum share submission.
  2482. - Pass json error value to share result function to be able to parse reject
  2483. reason in stratum.
  2484. - Don't try to parse unneeded parameters in response to mining.subscribe.
  2485. - Remove the sshare hash entry if we failed to send it.
  2486. - Change notify message to info level to avoid spamming repeatedly when a pool
  2487. is down.
  2488. - Check the stratum pool difference has not changed compared to the work diff
  2489. when testing whether a share meets the target or not and retarget if necessary.
  2490. - Bit error in target calculation for stratum.
  2491. - Set work_block in gen_stratum_work for when work is reused to avoid thinking
  2492. it's all stale.
  2493. - Offset the current block detection to the prev block hash.
  2494. - We should be testing for id_val, not id in parse stratum response.
  2495. - Make target on stratum scale to any size by clearing sequential bits according
  2496. to diff.
  2497. - Correct target calculation in gen_stratum_work.
  2498. - If a share result has an error code but still has an id, it is likely a
  2499. reject, not an error.
  2500. - Initiate stratum the first time in pool_active only, allowing us to switch to
  2501. it on getting a failed getwork and detecting the presence of stratum on the url
  2502. at that time.
  2503. - Use 5 second timeout on sock full for now as a temporary workaround.
  2504. - If no stratum url is set by the end of the detect stratum routine, copy the
  2505. sockaddr url.
  2506. - Make all buffers slightly larger to prevent overflow.
  2507. - Make the stratum recv buffer larger than the recvsize.
  2508. - Userpass needs to be copied to user and pass earlier to allow stratum
  2509. authorisation to work with it.
  2510. - Store a sockaddr url of the stripped url used in determining sockaddr to not
  2511. confuse it with the stratum url and fix build warnings.
  2512. - Decrease the queued count with stratum work once it's staged as well.
  2513. - Allow the stratum retry to initiate and auth stratum in pool_alive to make
  2514. sure the stratum thread is started.
  2515. - Avoid duplicating pool->rpc_url and setting pool->stratum_url twice to itself.
  2516. - Detect if a getwork based pool has the X-Stratum header on startup, and if so,
  2517. switch to the stratum based pool.
  2518. - Comment update.
  2519. - Minor message change.
  2520. - Create a work item from a "clean" request from stratum allowing the new block
  2521. to be detected and the appropriate block change message to be given.
  2522. - Use statically allocated stratum strings in struct work to cope with the
  2523. inability to safely deallocate dynamically allocated ram.
  2524. - Use the current pool when deciding whether to reuse work from a stratum source
  2525. rather than the work's previous pool.
  2526. - Copy the stratum url to the rpc url to avoid none being set.
  2527. - Provide locking around stratum send operations to avoid races.
  2528. - Submit shares from stratum through the abstracted submit share function
  2529. detecting what message they belong to and showing the data from the associated
  2530. work, and then deleting it from the hash.
  2531. - Use a more robust mechanism to obtain a \n terminated string over a socket.
  2532. - Abstract out share submit as a function to be useable by stratum.
  2533. - Rename parse_stratum to parse_method as it is only for stratum messages that
  2534. contain methods.
  2535. - Display stratum as mechanism in status line when current pool is running it.
  2536. - Count each stratum notify as a getwork equivalent.
  2537. - Correct nonce submitted with share.
  2538. - Extranonce2 should be added before coinbase2.
  2539. - We should be hashing the binary coinbase, not the hex one.
  2540. - Fix endianness of nonce submitted for stratum.
  2541. - Check that stratum is already active in initiate_stratum to avoid
  2542. de-authorising ourselves by subscribing again.
  2543. - Begin implementing a hash database of submissions and attempt sending results.
  2544. - Copy parameters from stratum work required for share submission.
  2545. - Set lagging flag on first adding a pool to prevent pool slow warning at
  2546. startup.
  2547. - Fix work->target being a 32 byte binary in gen_stratum_work.
  2548. - Store and display stripped url in its own variable.
  2549. - Create machinery to divert work requests to stratum.
  2550. - Generate the work target in gen_stratum_work, setting default diff to 1 in
  2551. case it is not yet set.
  2552. - Generate work data, midstate and hash1 in gen_stratum_work.
  2553. - Generate header created from stratum structures in gen_stratum_work.
  2554. - Generate merkle root hash in gen_stratum_work.
  2555. - Generate the coinbase for generation of stratum based work.
  2556. - The number of transactions is variable so make merkle a variable length
  2557. dynamically allocated array and track how many there are for stratum.
  2558. - Rename nonce2 to n2size reflecting that it's a size variable and not the
  2559. actual nonce.
  2560. - Provide rudimentary support for stratum clean work command in the stratum
  2561. thread.
  2562. - Cope with pools being removed in the stratum thread.
  2563. - Use the pool sock value directly in the stratum thread in case it changes
  2564. after reconnecting.
  2565. - Create a stratum thread per pool that has stratum that monitors the socket and
  2566. serves received data.
  2567. - Check return value of stratum_parse.
  2568. - Complete authorisation in stratum.
  2569. - Implement stratum parsing of notify parameters and storing them in the pool
  2570. stratum work structure.
  2571. - Create helper functions for duplicating json strings to avoid keeping json
  2572. references in use.
  2573. - Append \n in the sock_send function instead of adding it when constructing
  2574. json in stratum.
  2575. - Don't keep any json references around with stratum structures.
  2576. - Create parse_stratum function that hands off stratum parameters to other
  2577. functions to manage pool stratum work struct variables. Implement mining
  2578. difficulty setting.
  2579. - Create helper functions for checking when a socket is ready to read on and
  2580. receive a single line at a time. Begin stratum authorisation process.
  2581. - Provide a helper function for reading a single \n terminated string from a
  2582. socket.
  2583. - Create a stratum work structure to store current work variables.
  2584. - Test specifically for stratum being active in pool_active.
  2585. - Detect stratum in common place when adding urls, and use a bool to tell us
  2586. when it's active.
  2587. - Fix warnings.
  2588. - Extract and store various parameters on stratum init confirming successful
  2589. mining notify.
  2590. - Use existing socket macros and close the socket on failure in init stratum.
  2591. - Initiate stratum and grab first json result.
  2592. - Get detailed addressinfo from the parsed URL for future raw socket usage when
  2593. possible. IPV4 only for now.
  2594. - Prepare for getaddrinfo call.
  2595. - Add data structures to pool struct for socket communications.
  2596. - Put all socket definitions in util.h to allow reusing by added socket
  2597. functions to be used in util.c.
  2598. Version 2.7.7 - October 7, 2012
  2599. - Fix unused warnings on ming build.
  2600. - Fix sign warning in ocl.c
  2601. - fds need to be zeroed before set in modminer.
  2602. - Put scrypt warning on separate line to avoid 0 being shown on windows as
  2603. bufsize.
  2604. - Display correct pool number when block is found.
  2605. - Prevent corrupt values returned from the opencl code from trying to read
  2606. beyond the end of the buffer by masking the value to a max of 15.
  2607. - Icarus USB write failure is also a comms error
  2608. - api.c DEBUG message has no paramter
  2609. - Icarus catch more USB errors and close/reopen the port
  2610. - API-README update cgminer verison number
  2611. - hashmeter fix stats kh/s on 32bit windows
  2612. Version 2.7.6 - September 24, 2012
  2613. - Reorder libztex header include order to fix missing struct definition.
  2614. - Display share difficulty on log with a shortened hash display on submission.
  2615. - API stats add some pool getwork difficulty stats
  2616. - Ignore any pings pushed to the worker threads if the thread is still paused to
  2617. prevent it being enabled and disabled repeatedly.
  2618. - README - FAQ - usermod group - shouldn't remove other groups
  2619. - Test for sequential getwork failures on a pool that might actually be up but
  2620. failing to deliver work as we may end up hammering it repeatedly by mistake.
  2621. - reduce windows compile warnings
  2622. - util.c - bug - proxy - no data end condition
  2623. - As we average gpu time over 5 work intervals for dynamic GPU intensity, there
  2624. is no need to maintain a rolling average and it avoids the potential long term
  2625. corruption of a single overflow value.
  2626. - Test for the now-automatically exported variable AMDAPPSDKROOT when looking
  2627. for the presence of the OpenCL headers.
  2628. - API don't change 'Diff1 Shares' - backward compatability FTW
  2629. - miner.php highlighting correctly handling difficulty
  2630. - API - Add last share difficulty for devices and pool
  2631. - Store and report Accepted,Rejected,Stale difficulty in the summary and API
  2632. - WorkTime - display prevblock for scrypt
  2633. - api.c remove compile warnings
  2634. - Calculate work difficulty for each getwork and display with WorkTime debug
  2635. - remove MMQ unused variable warning
  2636. - FPGA - allow long or short device names in detect code + style police
  2637. - WorkTime - multiple nonce per work and identify the work source
  2638. - Optional WorkTime details with each Accepted/Rejected work item
  2639. - Icarus - ignore hardware errors in timing mode
  2640. - miner.php oops - mistype
  2641. - miner.php by default don't display IP/Port numbers in error messages
  2642. - api.c all STATUS messages automatically escaped
  2643. - api.c add missing escape for comma in MSG_PGAUNW
  2644. - API add display of and setting queue,scantime,expiry
  2645. - HW: dont submit bad shares
  2646. - save individual pool proxy settings to config
  2647. - --default-config - allow command line to define the default configuration file
  2648. for loading and saving
  2649. - API-README update for pools proxy info
  2650. - README URL proxy must use quote so show in the example
  2651. - bug: remove proxy: from the front of the proxy used
  2652. - CURL support for individual proxy per pool and all proxy types
  2653. - README spelling/etc
  2654. - README - FPGA device FAQ
  2655. - HW: error counter auto for all devices - ztex code not fixed
  2656. - API pgaidentify - unsupported message should be a warning
  2657. - API/BFL identify a device - currently only BFL to flash the led
  2658. - BFL add throttle count to internal stats + API
  2659. - BFL: missing device id in log message
  2660. - miner.php correct to new Diff1 Work field names
  2661. - API add device diff1 work
  2662. - API-README update
  2663. - api.c Correct diff1 field name
  2664. - count device diff1 shares
  2665. - API-README more debug parameter information
  2666. - API allow full debug settings control
  2667. Version 2.7.5 - August 31, 2012
  2668. - Adjust opencl intensity when adjusting thread count to prevent it getting
  2669. pegged at a value below the minimum threads possible.
  2670. - miner.h max_hashes -> int64_t
  2671. - Keep the local block number in the blocks structs stored and sort them by
  2672. number to guarantee we delete the oldest when ageing the block struct entries.
  2673. - Use correct sdk version detection for SDK 2.7
  2674. - Revert "Pick worksize 256 with Cypress if none is specified."
  2675. - Test for lagging once more in queue_request to enable work to leak to backup
  2676. pools.
  2677. - There is no need to try to switch pools in select_pool since the current pool
  2678. is actually not affected by the choice of pool to get work from.
  2679. - Only clear the pool lagging flag if we're staging work faster than we're using
  2680. it.
  2681. - needed flag is currently always false in queue_request. Remove it for now.
  2682. - thr is always NULL going into queue_request now.
  2683. Version 2.7.4 - August 23, 2012
  2684. - Perform select_pool even when not lagging to allow it to switch back if needed
  2685. to the primary.
  2686. - Simplify macros in output kernels avoiding apparent loops and local variables.
  2687. - Carry the needed bool over the work command queue.
  2688. - Move the decision to queue further work upstream before threads are spawned
  2689. based on fine grained per-pool stats and increment the queued count immediately.
  2690. - Track queued and staged per pool once again for future use.
  2691. - OpenCL 1.0 does not have native atomic_add and extremely slow support with
  2692. atom_add so detect opencl1.0 and use a non-atomic workaround.
  2693. - Pools: add RollTime info to API 'stats' and 'Stats' button in miner.php
  2694. Version 2.7.3 - August 22, 2012
  2695. - Minimise the number of getwork threads we generate.
  2696. Version 2.7.2 - August 22, 2012
  2697. - Pick worksize 256 with Cypress if none is specified.
  2698. - Give warning with sdk2.7 and phatk as well.
  2699. - Whitelist sdk2.7 for diablo kernel as well.
  2700. - Only keep the last 6 blocks in the uthash database to keep memory usage
  2701. constant. Storing more is unhelpful anyway.
  2702. - BFL Flash - always distribute source
  2703. - Increase kernel versions signifying changed APIs.
  2704. - BFL flash - include source in builds and more FPGA-README
  2705. - Check we haven't staged work while waiting for a curl entry before proceeding.
  2706. - Use atomic ops to never miss a nonce on opencl kernels, including nonce==0,
  2707. also allowing us to make the output buffer smaller.
  2708. - Remove compile errors/warnings and document compile/usage in FPGA-README
  2709. - bitforce-firmware-flash.c by Luke-jr
  2710. - Ignore the submit_fail flag when deciding whether to recruit more curls or not
  2711. since we have upper bounds on how many curls can be recruited, this test is
  2712. redundant and can lead to problems.
  2713. - API-README update cgminer version number
  2714. - API-README fix groups P: example mistake
  2715. - API-README add COIN and other edits
  2716. - gpu->hit should be reset on new work as well.
  2717. - Do not add time to dynamic opencl calculations over a getwork.
  2718. - miner.php allow 'coin' is custom pages
  2719. Version 2.7.1 - August 21, 2012
  2720. - Update windows build instructions courtesy of sharky.
  2721. - Increase max curls to number of mining threads + queue * 2, accounting for up
  2722. and downstream comms.
  2723. - Queue enough requests to get started.
  2724. - There is no point trying to clone_work in get_work() any more since we clone
  2725. on every get_work_thread where possible.
  2726. - There is no point subtracting 1 from maxq in get_work_thread.
  2727. - Only set lagging flag once there are no staged work items.
  2728. - select_pool does not switch back to the primary once lagging is disabled.
  2729. - miner.php allow page title to be defined in myminer.php
  2730. - Free work before retrying in get_work_thread.
  2731. - Increment total work counter under mutex lock.
  2732. - Increment the queued count after the curl is popped in case there's a delay
  2733. waiting on curls and we think we've queued work when in fact we're waiting
  2734. - API new command 'coin' with mining information
  2735. - Do the dynamic timing in opencl code over a single pass through scanhash to
  2736. make sure we're only getting opencl times contributing to the measured inte
  2737. - Increase curl reaping time to 5 minutes since comms between curl requests can
  2738. be 2 mins apart with lots of rolltime.
  2739. - No need for extra variable in hash_push.
  2740. - Remove short options -r and -R to allow them to be reused and remove readme
  2741. entries for deprecated options.
  2742. - Avoid attempting to recursively lock the console mutex by disabling warnings
  2743. in gpu_fanpercent when fanspeed monitoring fails on windows. Debugged by l
  2744. - Deprecate the opt_fail_pause parameter, leaving a null placeholder for
  2745. existing configurations.
  2746. - Don't pause after failed getwork, set lagging flag and reassess.
  2747. - Add message to share if it's a resubmit.
  2748. - We should not be pausing in trying to resubmit shares.
  2749. - Get rid of the extending fail pause on failed connects since we discard work
  2750. after a period.
  2751. - get_work always returns true so turn it into a void function.
  2752. - get_work never returns false so get rid of fail pause loop.
  2753. - Get rid of pause and retry from get_upstream_work so we only do it from one
  2754. place.
  2755. - Deprecate the opt_retries feature as no one wants cgminer to automatically
  2756. abort. Leave a null placeholder for configurations that still have it.
  2757. - Reinstate fix ADL gpu-map not working when there are more ADL devices than
  2758. openCL patch by Nite69. Add virtual adl mapping for when none is specified o
  2759. - miner.php show summary Diff1 Shares total
  2760. - miner.php fix Work Utility totals
  2761. - miner.php format new Work Utility and Diff1 Shares
  2762. - API V1.17 show Work Utility and Diff1 Shares
  2763. Version 2.7.0 - August 18, 2012
  2764. - Introduce a new statistic, Work Utility, which is the number of difficulty 1
  2765. shares solved per minute. This is useful for measuring a relative rate of work
  2766. that is independent of reject rate and target difficulty.
  2767. - Implement a new pool strategy, BALANCE, which monitors work performed per pool
  2768. as a rolling average every 10 minutes to try and distribute work evenly over all
  2769. the pools. Do this by monitoring diff1 solutions to allow different difficulty
  2770. target pools to be treated equally, along with solo mining. Update the
  2771. documentation to describe this strategy and more accurately describe the
  2772. load-balance one.
  2773. - Getwork fail was not being detected. Remove a vast amount of unused variables
  2774. and functions used in the old queue request mechanism and redefine the getfail
  2775. testing.
  2776. - Don't try to start devices that don't support scrypt when scrypt mining.
  2777. - 0 is a valid return value for read so only break out if read returns -1.
  2778. - Consider us lagging only once our queue is almost full and no staged work.
  2779. - Simplify the enough work algorithm dramatically.
  2780. - Only queue from backup pools once we have nothing staged.
  2781. - Don't keep queueing work indefinitely if we're in opt failover mode.
  2782. - Make sure we don't opt out of queueing more work if all the queued work is
  2783. from one pool.
  2784. - Set lagging flag if we're on the last of our staged items.
  2785. - Reinstate clone on grabbing work.
  2786. - Grab clones from hashlist wherever possible first.
  2787. - Cull all the early queue requests since we request every time work is popped
  2788. now.
  2789. - Keep track of staged rollable work item counts to speed up clone_available.
  2790. - Make expiry on should_roll to 2/3 time instead of share duration since some
  2791. hardware will have very fast share times.
  2792. - Do the cheaper comparison first.
  2793. - Check that we'll get 1 shares' worth of work time by rolling before saying we
  2794. should roll the work.
  2795. - Simplify all those total_secs usages by initialising it to 1 second.
  2796. - Overlap queued decrementing with staged incrementing.
  2797. - Artificially set the pool lagging flag on pool switch in failover only mode as
  2798. well.
  2799. - Artificially set the pool lagging flag on work restart to avoid messages about
  2800. slow pools after every longpoll.
  2801. - Factor in opt_queue value into enough work queued or staged.
  2802. - Roll work whenever we can on getwork.
  2803. - Queue requests for getwork regardless and test whether we should send for a
  2804. getwork from the getwork thread itself.
  2805. - Get rid of age_work().
  2806. - 0 is a valid return value for read so only break out if read returns -1.
  2807. - Offset libusb reads/writes by length written as well in ztex.
  2808. - Cope with timeouts and partial reads in ztex code.
  2809. - fpga serial I/O extra debug (disabled by default)
  2810. Version 2.6.5 - August 15, 2012
  2811. - Don't try to get bitforce temperature if we're polling for a result to
  2812. minimise the chance of interleaved responses.
  2813. - Set memory clock based on memdiff if present from with engine changes,
  2814. allowing it to parallel manual changes from the menu as well.
  2815. - Increase the timeout on bitforce as per Paul Sheppard's suggestion to account
  2816. for throttling + work time + excess.
  2817. - Fix ADL gpu-map not working when there are more ADL devices than openCL.
  2818. Initial patch supplied by Nite69. Modified to suit.
  2819. - Windows' timer resolution is limited to 15ms accuracy. This was breaking
  2820. dynamic intensity since it tries to measure below this. Since we are repeatedly
  2821. sampling similar timeframes, we can average the gpu_us result over 5 different
  2822. values to get very fine precision.
  2823. - Fix harmless unused warnings in scrypt.h.
  2824. - api.c typo
  2825. - API allow display/change failover-only setting
  2826. - Check we are not lagging as well as there is enough work in getwork.
  2827. - Minimise locking and unlocking when getting counts by reusing shared mutex
  2828. lock functions.
  2829. - Avoid getting more work if by the time the getwork thread is spawned we find
  2830. ourselves with enough work.
  2831. - The bitforce buffer is cleared and hw error count incremented on return from a
  2832. failed send_work already so no need to do it within the send_work function.
  2833. - miner.php allow a custom page section to select all fields with '*' - e.g. to
  2834. create a STATS section on a custom page
  2835. - Escape " and \ when writing json config file
  2836. - miner.php optional single rig totals (on by default)
  2837. Version 2.6.4 - August 7, 2012
  2838. - Convert the serial autodetect functions to use int instead of char to
  2839. enumerate devices.
  2840. - Make the serial open timeout for BFL generically 1 second on windows.
  2841. - Deuglify windows autodetect code for BFL.
  2842. - There is no point zeroing temperature in BFL if we fail to get a response, and
  2843. we should register it as a HW error, suggesting throttling.
  2844. - Update SCRYPT README with information about HW errors.
  2845. - Use the scrypt CPU code to confirm results from OCL code, and mark failures as
  2846. HW errors, making it easier to tune scrypt parameters.
  2847. - We may as well leave one curl still available per pool instead of reaping the
  2848. last one.
  2849. - Need to recheck the pool->curls count on regaining the pool lock after the
  2850. pthread conditional wait returns.
  2851. - Display reaped debug message outside mutex lock to avoid recursive locking.
  2852. - Add specific information when ADL detects error -10 saying the device is not
  2853. enabled.
  2854. - api.c update API start message and include port number
  2855. - miner.php ignore arg when readonly
  2856. - miner.php allow pool inputs: delete, addpool, poolpriority
  2857. Version 2.6.3 - August 5, 2012
  2858. - Count likely throttling episodes on bitforce devices as hardware errors.
  2859. - Style cleanups.
  2860. - Use FTD2XX.DLL on Windows to autodetect BitFORCE SHA256 devices.
  2861. - Make pool_disabled the first in the enums == 0, fixing the pool enabled count
  2862. which compares if value is not enabled before enabling it.
  2863. - Correct writing of scrypt parameters to config file based on command line
  2864. parameters only.
  2865. - Use different variables for command line specified lookup gap and thread
  2866. concurrency to differentiate user defined versus auto chosen values.
  2867. - Queue a request on pool switch in case we have no work from the new pool yet.
  2868. - Display failover only mode in pool menu and allow it to be toggled live.
  2869. - Reinstate check for system queueing lag when the current pool's queue is maxed
  2870. out, there is no staged work, and the work is needed now.
  2871. - There is no need for pool active testing to be mandatory any more with queue
  2872. request changes.
  2873. - Fix harmless warnings.
  2874. - Check the current staged and global queued as well before queueing requests.
  2875. Discard stales before ageing work in the watchdog thread. Queue requests after
  2876. discarding and ageing work in watchdog thread. Display accurate global queued in
  2877. curses output. Reuse variable in age_work().
  2878. - The queueing mechanism has become a complex state machine that is no longer
  2879. predictable. Rewrite it from scratch watching only current queues in flight and
  2880. staged work available on a pool by pool basis.
  2881. - API remove unused warning in non-GPU compile
  2882. - api.c in linux allow to open a closed socket in TIME_WAIT
  2883. - Queue an extra request whenever staged work drops below mining thread count in
  2884. hash_pop.
  2885. - Update debian package configs to v2.6.2
  2886. Version 2.6.2 - August 3, 2012
  2887. - Scrypt mining does not support block testing yet so don't try to print it.
  2888. - Clear the bitforce buffer whenever we get an unexpected result as it has
  2889. likely throttled and we are getting cached responses out of order, and use the
  2890. temperature monitoring as a kind of watchdog to flush unexpected results.
  2891. - It is not critical getting the temperature response in bitforce so don't
  2892. mandatorily wait on the mutex lock.
  2893. - Check there is a cutoff temp actually set in bitforce before using it as a cut
  2894. off value otherwise it may think it's set to zero degrees.
  2895. - We dropped the temporary stopping of curl recruiting on submit_fail by
  2896. mistake, reinstate it.
  2897. - Make threads report in either side of the scanhash function in case we miss
  2898. reporting in when restarting work.
  2899. - Don't make mandatory work and its clones last forever.
  2900. - Make test work for pool_active mandatory work items to smooth out staged work
  2901. counts when in failover-only mode.
  2902. - Add debugging output when work is found stale as to why.
  2903. - Print the 3 parameters that are passed to applog for a debug line in
  2904. bitforce.c
  2905. - Clear bitforce buffer on init as previously.
  2906. - Add some headroom to the number of curls available per pool to allow for
  2907. longpoll and sendwork curls.
  2908. - Revert "Revert "Change BFL driver thread initialising to a constant 100ms
  2909. delay between devices instead of a random arrangement.""
  2910. - Revert "Remove bitforce_thread_init"
  2911. - Show the correct base units on GPU summary.
  2912. - Differentiate between the send return value being a bool and the get return
  2913. value when managing them in bitforce scanhash.
  2914. - 23a8c60 Revert "bitforce: Skip out of sending work if work restart requested"
  2915. Version 2.6.1 - July 30, 2012
  2916. - Display scrypt as being built in as well.
  2917. - Fix build warning about KL_SCRYPT when built without scrypt support.
  2918. - Remove the low hash count determinant of hardware being sick. A low hash rate
  2919. can be for poor network connectivity or scrypt mining, neither of which are due
  2920. to a sick device.
  2921. - api.c poolpriority changes
  2922. Version 2.6.0 - July 29, 2012
  2923. - Display kilohash when suitable, but store the global mhash value still truly
  2924. in megahashes to not break the API output.
  2925. - Don't try and print curses output for devices that won't fit on the screen.
  2926. - Add scrypt documentation in the form of a separate readme.
  2927. - Fix build error without scrypt enabled.
  2928. - Limit total number of curls recruited per pool to the number of mining threads
  2929. to prevent blasting the network when we only have one pool to talk to.
  2930. - bitforce: Skip out of sending work if work restart requested
  2931. - Keep a counter of enabled pools and use that instead of iterating over the
  2932. pool list. Use that value to ensure we don't set the last remaining active pool
  2933. to the rejecting state.
  2934. - fpgautils: add support for 57.6 kBd serial
  2935. - miner.php add a socket RCV timeout for if cgminer is hung and the API thread
  2936. is still running
  2937. - Limit thread concurrency for scrypt to 5xshaders if shaders is specified.
  2938. - Simplify repeated use of gpus[gpu]. in ocl.c
  2939. - Find the nearest power of 2 maximum alloc size for the scrypt buffer that can
  2940. successfully be allocated and is large enough to accomodate the thread
  2941. concurrency chosen, thus mapping it to an intensity.
  2942. - Don't make opt_scrypt mandatory blocking with opencl code.
  2943. - Update kernel versions reflecting changes in the API.
  2944. - Make the thread concurrency and lookup gap options hidden on the command line
  2945. and autotune parameters with a newly parsed --shaders option.
  2946. - Fix target testing with scrypt kernel as it would have been missing shares
  2947. below target.
  2948. - Bugfix: Use a mutex to control non-curses output
  2949. - Simplify code to a single vprintf path for curses-less printing
  2950. - Move opt_quiet check to my_log_curses, so it works for curses-less builds
  2951. - Use log_generic for vapplog to cut down on code duplication
  2952. - Add space to log output now that there is more screen real estate available.
  2953. - BFL force all code to timeout to avoid hanging
  2954. - Bugfix: Copy argv[0] given to dirname()
  2955. - Always create the largest possible padbuffer for scrypt kernels even if not
  2956. needed for thread_concurrency, giving us some headroom for intensity levels.
  2957. - Use the detected maximum allocable memory on a GPU to determine the optimal
  2958. scrypt settings when lookup_gap and thread_concurrency parameters are not given.
  2959. - Check the maximum allocable memory size per opencl device.
  2960. - Add debugging output if buffer allocation fails for scrypt and round up
  2961. bufsize to a multiple of 256.
  2962. - Nonce testing for btc got screwed up, leading to no accepted shares. Fix it.
  2963. - Display size of scrypt buffer used in debug.
  2964. - Allow intensities up to 20 if scrypt is compiled in.
  2965. - Add name to scrypt kernel copyright.
  2966. - Allow lookup gap and thread concurrency to be passed per device and store
  2967. details in kernel binary filename.
  2968. - Ignore negative intensities for scrypt.
  2969. - Change the scale of intensity for scrypt kernel and fix a build warning.
  2970. - Correct target value passed to scrypt kernel.
  2971. - Use 256 output slots for kernels to allow 1 for each worksize.
  2972. - Test the target in the actual scrypt kernel itself saving further
  2973. calculations.
  2974. - Reinstate GPU only opencl device detection.
  2975. - Decrease lookup gap to 1. Does not seem to help in any way being 2.
  2976. - Fix build.
  2977. - Make pad0 and pad1 local variable in scrypt kernel.
  2978. - Constify input variable in scrypt kernel.
  2979. - Send correct values to scrypt kernel to get it finally working.
  2980. - Create command queue before compiling program in opencl.
  2981. - Detach pthread from within the api thread in case it is terminated due to not
  2982. being instantiated before pthread_cancel is called from main, leading to a
  2983. segfault.
  2984. - Debug output per thread hashrate is out by a factor of 1000.
  2985. - Initialise mdplatform.
  2986. - Find the gpu platform with the most devices and use that if no platform option
  2987. is passed.
  2988. - Allow more platforms to be probed if first does not return GPUs.
  2989. - Fix external scrypt algo missing.
  2990. - Limit scrypt to 1 vector.
  2991. - Handle KL_SCRYPT in config write.
  2992. - Get rid of stuff.
  2993. - Don't enqueuewrite buffer at all for pad8 and pass work details around for
  2994. scrypt in dev_blk.
  2995. - Set the correct data for cldata and prepare for pad8 fixes.
  2996. - Bugfix: Fix build without curses but with OpenCL
  2997. - Find the gpu platform with the most devices and use that if no platform option
  2998. is passed.
  2999. - Allow more platforms to be probed if first does not return GPUs.
  3000. - Get rid of spaces in arrays in scrypt kernel.
  3001. - Start with smaller amount of hashes in cpu mining to enable scrypt to return
  3002. today sometime.
  3003. - Show Khash hashrates when scrypt is in use.
  3004. - Free the scratchbuf memory allocated in scrypt and don't check if CPUs are
  3005. sick since they can't be. Prepare for khash hash rates in display.
  3006. - Add cpumining capability for scrypt.
  3007. - Set scrypt settings and buffer size in ocl.c code to be future modifiable.
  3008. - Cope with when we cannot set intensity low enough to meet dynamic interval by
  3009. inducing a forced sleep.
  3010. - Make dynamic and scrypt opencl calls blocking.
  3011. - Calculate midstate in separate function and remove likely/unlikely macros
  3012. since they're dependent on pools, not code design.
  3013. - bitforce: Use "full work" vs "nonce range" for kernel name
  3014. - Display in debug mode when we're making the midstate locally.
  3015. - Fix nonce submission code for scrypt.
  3016. - Make sure goffset is set for scrypt and drop padbuffer8 to something
  3017. manageable for now.
  3018. - Set up buffer8 for scrypt.
  3019. - Build fix for opt scrypt.
  3020. - Don't check postcalc nonce with sha256 in scrypt.
  3021. - Don't test nonce with sha and various fixes for scrypt.
  3022. - Make scrypt buffers and midstate compatible with cgminer.
  3023. - Use cgminer specific output array entries in scrypt kernel.
  3024. - Provide initial support for the scrypt kernel to compile with and mine scrypt
  3025. with the --scrypt option.
  3026. - Enable completely compiling scrypt out.
  3027. - Begin import of scrypt opencl kernel from reaper.
  3028. - bitforce_get_result returns -1 on error now.
  3029. - Check return value of read in BFgets
  3030. - Bugfix: Make our Windows nanosleep/sleep replacements standards-compliant
  3031. (which fixes nmsleep) and include compat.h for bitforce (for sleep)
  3032. - rpc: Use a single switch statement for both stringifications of cgpu->status
  3033. - Fix whitespace mangling.
  3034. - miner.php fix rig # when miners fail
  3035. - Only try to shut down work cleanly if we've successfully connected and started
  3036. mining.
  3037. - Use switch statement for cgpu->status and fix spelling.
  3038. - Abbrv. correction
  3039. - Bugfix: Don't declare devices SICK if they're just busy initialising
  3040. - Bugfix: Calculate nsec in nmsleep correctly
  3041. - Bugfix: Adapt OpenCL scanhash errors to driver API change (errors are now -1,
  3042. not 0)
  3043. - Remove superfluous ave_wait
  3044. - Put kname change for broken nonce-range back in
  3045. - Add average wait time to api stats
  3046. - Change BFL driver thread initialising to a constant 100ms delay between
  3047. devices instead of a random arrangement.
  3048. - Spelling typo.
  3049. - Time opencl work from start of queueing a kernel till it's flushed when
  3050. calculating dynamic intensity.
  3051. - Modify te scanhash API to use an int64_t and return -1 on error, allowing zero
  3052. to be a valid return value.
  3053. - Check for work restart after the hashmeter is invoked for we lose the hashes
  3054. otherwise contributed in the count.
  3055. - Remove disabled: label from mining thread function, using a separate
  3056. mt_disable function.
  3057. - Style changes.
  3058. - Missed one nonce-range disabling.
  3059. - Add average return time to api stats
  3060. - miner.php allow rig names in number buttons
  3061. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  3062. poll comes around, all threads restart at the same time anyway.
  3063. - Change timeouts to time-vals for accuracy.
  3064. - fix API support for big endian machines
  3065. - Cope with signals interrupting the nanosleep of nmsleep.
  3066. - Use standard cfsetispeed/cfsetospeed to set baud rate on *nix
  3067. - miner.php split() flagged deprecated in PHP 5.3.0
  3068. - More BFL tweaks. Add delay between closing and reopening port. Remove buffer
  3069. clear in re-init Add kernel type (mini-rig or single)
  3070. - Make long timeout 10seconds on bitforce for when usleep or nanosleep just
  3071. can't be accurate...
  3072. Version 2.5.0 - July 6, 2012
  3073. - Fix --benchmark not working since the dynamic addition of pools and pool
  3074. stats.
  3075. - Make disabling BFL nonce range support a warning since it has to be explicitly
  3076. enabled on the command line now.
  3077. - miner.php allow renaming table headers
  3078. - Make bitforce nonce range support a command line option --bfl-range since
  3079. enabling it decrease hashrate by 1%.
  3080. - Add sanity checking to make sure we don't make sleep_ms less than 0 in
  3081. bitforce.
  3082. - The fastest minirig devices need a significantly smaller starting sleep time.
  3083. - Use a much shorter initial sleep time to account for faster devices and nonce
  3084. range working, and increase it if nonce range fails to work.
  3085. - Use nmsleep instead of usleep in bitforce.
  3086. - Provide a ms based sleep function that uses nanosleep to avoid the inaccuracy
  3087. of usleep on SMP systems.
  3088. - delay_time_ms is always set so need not be initialised in bitforce.
  3089. - Increase bitforce timeout to 10 seconds.
  3090. - Add more hysteresis and poll ~5 times to allow for timer delays in bitforce
  3091. devices.
  3092. - miner.php allow alternating line colours (off by default)
  3093. - Display the actual duration of wait when it is greater than the cutoff.
  3094. - Set nonce to maximum once we determine nonce range support is broken.
  3095. - Initial wait time is always known so no need to zero it beforehand in
  3096. bitforce.
  3097. - No point counting wait time until the work is actually sent to bitforce
  3098. devices.
  3099. - Use string comparison functions instead of explicit comparisons.
  3100. - Account for wait_ms time when nonce_range is in use on BFL.
  3101. - Split nonces up into 1/5 chunks when nonce range is supported.
  3102. - limit clear buffer iterations.
  3103. - Ad fd check to clear buffer.
  3104. - miner.php remove incorrect 'DATE' error message
  3105. - miner.php allow summary header in custom pages
  3106. - Disable nonce range support in BFL when broken support is detected.
  3107. - Restart_wait is only called with a ms value so incorporate that into the
  3108. function.
  3109. - Only try to adjust dev width when curses is built in.
  3110. - miner.php define custom sum fields as a simple array
  3111. - Fix off-by-one error in nonce increment in bfl.
  3112. - Use BE when setting nonce in bitforce nonce range work.
  3113. - Enable nonce range in the normal init sequence for bfl.
  3114. - Queue extra work at 2/3 differently depending on whether we're using nonce
  3115. range or not.
  3116. - Initially enable support for nonce range support on bfl, splitting nonces up
  3117. into 3/4 size and only disable it if it fails on work submit.
  3118. - Attempt to detect nonce range support in BFL by sending work requring its
  3119. support.
  3120. - Limit retrying on busy for up to BITFORCE_TIMEOUT_MS
  3121. - Attempt to initialise while bitforce device returns BUSY.
  3122. - Extend length of string that can be passed to BFL devices.
  3123. - Fix signedness warning.
  3124. - Adjust device width column to be consistent.
  3125. - Use cgpu-> not gpus[] in watchdog thread.
  3126. - Add api stats (sleep time)
  3127. - Timing tweaks Added long and short timeouts, short for detecting throttling,
  3128. long to give up totally. Reset sleep time when device re-initialised Still check
  3129. results after timeout Back up a larger time if result on first poll.
  3130. - Add API Notify counter 'Comms Error'
  3131. - Style police on api.c
  3132. - Do all logging outside of the bitforce mutex locking to avoid deadlocks.
  3133. - Remove applog call from bfwrite to prevent grabbing nested mutexes.
  3134. - Bitforce style changes.
  3135. - Minor style changes.
  3136. - Remove needless roundl define.
  3137. - Made JSON error message verbose.
  3138. - Fine-tune timing adjustment. Also remove old work_restart timing.
  3139. - Check for gpu return times of >= 0, not just 0, to fix intensity dropping to
  3140. -10.
  3141. - Restart is zeroed in the mining thread so no need to do it inside the bitforce
  3142. code.
  3143. - More improvements to comms. BFL return nothing when throttling, so should not
  3144. be considered an error. Instead repeat with a longer delay.
  3145. - Polling every 10ms there's not much point checking the pthread_cond_timedwait
  3146. as it just adds overhead. Simply check the value of work_restart in the bfl main
  3147. polling loop.
  3148. - Use a pthread conditional that is broadcast whenever work restarts are
  3149. required. Create a generic wait function waiting a specified time on that
  3150. conditional that returns if the condition is met or a specified time passed to
  3151. it has elapsed. Use this to do smarter polling in bitforce to abort work, queue
  3152. more work, and check for results to minimise time spent working needlessly.
  3153. - Add busy time to wait time.
  3154. - api.c put version up to 1.14
  3155. - Add tiny delay after writing to BFL Change BFL errors to something more human
  3156. readable Send work busy re-tries after 10ms delay
  3157. Version 2.4.4 - July 1, 2012
  3158. - Fix builds on non gnu platforms.
  3159. - api.c ensure old mode is always available when not using --api-groups + quit()
  3160. on param errors
  3161. - Implement rudimentary X-Mining-Hashrate support.
  3162. - Detect large swings in temperature when below the target temperature range and
  3163. change fan by amounts dependant on the value of tdiff.
  3164. - Adjust the fanspeed by the magnitude of the temperature difference when in the
  3165. optimal range.
  3166. - Revert "Restarting cgminer from within after ADL has been corrupted only leads
  3167. to a crash. Display a warning only and disable fanspeed monitoring."
  3168. - api.c fix json already closed
  3169. - implement and document API option --api-groups
  3170. - Put upper bounds to under 2 hours that work can be rolled into the future for
  3171. bitcoind will deem it invalid beyond that.
  3172. - define API option --api-groups
  3173. - api.c allow unwell devices to be enabled so they can be cured
  3174. - miner.php - fix/enable autorefresh for custom pages
  3175. - miner.php allow custom summary pages - new 'Mobile' summary
  3176. - Work around pools that advertise very low expire= time inappropriately as this
  3177. leads to many false positives for stale shares detected.
  3178. - Only show ztex board count if any exist.
  3179. - There is no need for work to be a union in struct workio_cmd
  3180. - fpgautils.c include a debug message for all unknown open errors
  3181. - Don't keep rolling work right up to the expire= cut off. Use 2/3 of the time
  3182. between the scantime and the expiry as cutoff for reusing work.
  3183. - Log a specific error when serial opens fail due to lack of user permissions
  3184. - Increase GPU timing resolution to microsecond and add sanity check to ensure
  3185. times are positive.
  3186. - Opencl code may start executing before the clfinish order is given to it so
  3187. get the start timing used for dynamic intensity from before the kernel is
  3188. queued.
  3189. - fpgautils.c - set BAUD rate according to termio spec
  3190. - fpgautils.c - linux ordering back to the correct way
  3191. - miner.php remove unneeded '.'s
  3192. - miner.php add auto refresh options
  3193. - miner.php add 'restart' next to 'quit'
  3194. - miner.php make fontname/size configurable with myminer.php
  3195. - Make the pools array a dynamically allocated array to allow unlimited pools to
  3196. be added.
  3197. - Make the devices array a dynamically allocated array of pointers to allow
  3198. unlimited devices.
  3199. - Dynamic intensity for GPUs should be calculated on a per device basis. Clean
  3200. up the code to only calculate it if required as well.
  3201. - Use a queueing bool set under control_lock to prevent multiple calls to
  3202. queue_request racing.
  3203. - Use the work clone flag to determine if we should subtract it from the total
  3204. queued variable and provide a subtract queued function to prevent looping over
  3205. locked code.
  3206. - Don't decrement staged extras count from longpoll work.
  3207. - Count longpoll's contribution to the queue.
  3208. - Increase queued count before pushing message.
  3209. - Test we have enough work queued for pools with and without rolltime
  3210. capability.
  3211. - As work is sorted by age, we can discard the oldest work at regular intervals
  3212. to keep only 1 of the newest work items per mining thread.
  3213. - Roll work again after duplicating it to prevent duplicates on return to the
  3214. clone function.
  3215. - Abstract out work cloning and clone $mining_threads copies whenever a rollable
  3216. work item is found and return a clone instead.
  3217. - api.c display Pool Av in json
  3218. - Take into account average getwork delay as a marker of pool communications
  3219. when considering work stale.
  3220. - Work out a rolling average getwork delay stored in pool_stats.
  3221. - Getwork delay in stats should include retries for each getwork call.
  3222. - Walk through the thread list instead of searching for them when disabling
  3223. threads for dynamic mode.
  3224. - Extend nrolltime to support the expiry= parameter. Do this by turning the
  3225. rolltime bool into an integer set to the expiry time. If the pool supports
  3226. rolltime but not expiry= then set the expiry time to the standard scantime.
  3227. - When disabling fanspeed monitoring on adl failure, remove any twin GPU
  3228. association. This could have been leading to hangs on machines with dual GPU
  3229. cards when ADL failed.
  3230. - modminer: Don't delay 2nd+ FPGAs during work restart
  3231. - Disable OpenCL code when not available.
  3232. - Fix openwrt crashing on regeneratehash() by making check_solve a noop.
  3233. - FPGA - allow device detect override without an open failure
  3234. - Fix sign warning.
  3235. Version 2.4.3 - June 14, 2012
  3236. - can_roll and should_roll should have no bearing on the cycle period within the
  3237. miner_thread so remove it.
  3238. - Check for strategy being changed to load balance when enabling LPs.
  3239. - Check that all threads on the device that called get_work are waiting on
  3240. getwork before considering the pool lagging.
  3241. - Iterate over each thread belonging to each device in the hashmeter instead of
  3242. searching for them now that they're a list.
  3243. - When using rotate pool strategy, ensure we only select from alive enabled
  3244. pools.
  3245. - Start longpoll from every pool when load balance strategy is in use.
  3246. - Add mandatory and block fields to the work struct. Flag any shares that are
  3247. detected as blocks as mandatory to submit, along with longpoll work from a
  3248. previously rejecting pool.
  3249. - Consider the fan optimal if fanspeed is dropping but within the optimal speed
  3250. window.
  3251. - Fix typo in some API messages (succeess/success)
  3252. - api.c MMQ stat bugs
  3253. - Bugfix: Fix warnings when built without libudev support
  3254. - Bugfix: slay a variety of warnings
  3255. - Bugfix: modminer: Fix unsigned/signed comparison and similar warnings
  3256. - API add ModMinerQuad support
  3257. - Bugfix: Honour forceauto parameter in serial_detect functions
  3258. - modminer: Temperature sensor improvements
  3259. - modminer: Make log messages more consistent in format
  3260. - Only adjust GPU speed up if the fanspeed is within the normal fanrange and
  3261. hasn't been turned to maximum speed under overheat conditions.
  3262. - ModMiner use valid .name
  3263. - New driver: BTCFPGA ModMiner
  3264. - Abstract generally useful FPGA code into fpgautils.c
  3265. - API add stats for pool getworks
  3266. - miner.php option to hide specific fields from the display
  3267. - miner.php add version numbers to the summary page
  3268. - Update debian configs to v2.4.2
  3269. - Add API and FPGA READMEs into Makefile to be included in source distribution.
  3270. - Icarus - fix unit64_t printf warnings
  3271. Version 2.4.2 - June 2, 2012
  3272. - API.class compiled with Java SE 6.0_03 - works with Win7x64
  3273. - miner.php highlight devs too slow finding shares (possibly failing)
  3274. - API update version to V1.11 and document changes
  3275. - API save default config file if none specified
  3276. - api.c save success incorrectly returns error
  3277. - api.c replace BUFSIZ (linux/windows have different values)
  3278. - Move RPC API content out of README to API-README
  3279. - Open a longpoll connection if a pool is in the REJECTING state as it's the
  3280. only way to re-enable it automatically.
  3281. - Use only one longpoll as much as possible by using a pthread conditional
  3282. broadcast that each longpoll thread waits on and checks if it's the current pool
  3283. before
  3284. - If shares are known stale, don't use them to decide to disable a pool for
  3285. sequential rejects.
  3286. - Restarting cgminer from within after ADL has been corrupted only leads to a
  3287. crash. Display a warning only and disable fanspeed monitoring.
  3288. - Icarus: fix abort calculation/allow user specified abort
  3289. - Icarus: make --icarus-timing hidden and document it in FPGA-README
  3290. - Icarus: high accuracy timing and other bitstream speed support
  3291. - add-MIPSEB-to-icarus-for-BIG_ENDIAN
  3292. - work_decode only needs swab32 on midstate under BIG ENDIAN
  3293. - add compile command to api-example.c
  3294. - save config bugfix: writing an extra ',' when no gpus
  3295. - Add dpkg-source commits
  3296. Version 2.4.1 - May 6, 2012
  3297. - In the unlikely event of finding a block, display the block solved count with
  3298. the pool it came from for auditing.
  3299. - Display the device summary on exit even if a device has been disabled.
  3300. - Use correct pool enabled enums in api.c.
  3301. - Import Debian packaging configs
  3302. - Ensure we test for a pool recovering from idle so long as it's not set to
  3303. disabled.
  3304. - Fix pool number display.
  3305. - Give cgminer -T message only if curses is in use.
  3306. - Reinit_adl is no longer used.
  3307. - API 'stats' allow devices to add their own stats also for testing/debug
  3308. - API add getwork stats to cgminer - accesable from API 'stats'
  3309. - Don't initialise variables to zero when in global scope since they're already
  3310. initialised.
  3311. - Get rid of unitialised variable warning when it's false.
  3312. - Move a pool to POOL_REJECTING to be disabled only after 3 minutes of
  3313. continuous rejected shares.
  3314. - Some tweaks to reporting and logging.
  3315. - Change FPGA detection order since BFL hangs on an ICA
  3316. - API support new pool status
  3317. - Add a temporarily disabled state for enabled pools called POOL_REJECTING and
  3318. use the work from each longpoll to help determine when a rejecting pool has
  3319. started working again. Switch pools based on the multipool strategy once a pool
  3320. is re-enabled.
  3321. - Removing extra debug
  3322. - Fix the benchmark feature by bypassing the new networking code.
  3323. - Reset sequential reject counter after a pool is disabled for when it is
  3324. re-enabled.
  3325. - Icarus - correct MH/s and U: with work restart set at 8 seconds
  3326. - ztex updateFreq was always reporting on fpga 0
  3327. - Trying harder to get 1.15y working
  3328. - Specifying threads on multi fpga boards extra cgpu
  3329. - Missing the add cgpu per extra fpga on 1.15y boards
  3330. - API add last share time to each pool
  3331. - Don't try to reap curls if benchmarking is enabled.
  3332. Version 2.4.0 - May 3, 2012
  3333. - Only show longpoll warning once when it has failed.
  3334. - Convert hashes to an unsigned long long as well.
  3335. - Detect pools that have issues represented by endless rejected shares and
  3336. disable them, with a parameter to optionally disable this feature.
  3337. - Bugfix: Use a 64-bit type for hashes_done (miner_thread) since it can overflow
  3338. 32-bit on some FPGAs
  3339. - Implement an older header fix for a label existing before the pthread_cleanup
  3340. macro.
  3341. - Limit the number of curls we recruit on communication failures and with
  3342. delaynet enabled to 5 by maintaining a per-pool curl count, and using a pthread
  3343. conditional that wakes up when one is returned to the ring buffer.
  3344. - Generalise add_pool() functions since they're repeated in add_pool_details.
  3345. - Bugfix: Return failure, rather than quit, if BFwrite fails
  3346. - Disable failing devices such that the user can attempt to re-enable them
  3347. - Bugfix: thread_shutdown shouldn't try to free the device, since it's needed
  3348. afterward
  3349. - API bool's and 1TBS fixes
  3350. - Icarus - minimise code delays and name timer variables
  3351. - api.c V1.9 add 'restart' + redesign 'quit' so thread exits cleanly
  3352. - api.c bug - remove extra ']'s in notify command
  3353. - Increase pool watch interval to 30 seconds.
  3354. - Reap curls that are unused for over a minute. This allows connections to be
  3355. closed, thereby allowing the number of curl handles to always be the minimum
  3356. necessary to not delay networking.
  3357. - Use the ringbuffer of curls from the same pool for submit as well as getwork
  3358. threads. Since the curl handles were already connected to the same pool and are
  3359. immediately available, share submission will not be delayed by getworks.
  3360. - Implement a scaleable networking framework designed to cope with any sized
  3361. network requirements, yet minimise the number of connections being reopened. Do
  3362. this by create a ring buffer linked list of curl handles to be used by getwork,
  3363. recruiting extra handles when none is immediately available.
  3364. - There is no need for the submit and getwork curls to be tied to the pool
  3365. struct.
  3366. - Do not recruit extra connection threads if there have been connection errors
  3367. to the pool in question.
  3368. - We should not retry submitting shares indefinitely or we may end up with a
  3369. huge backlog during network outages, so discard stale shares if we failed to
  3370. submit them and they've become stale in the interim.
  3371. Version 2.3.6 - April 29, 2012
  3372. - Shorten stale share messages slightly.
  3373. - Protect the freeing of current_hash under mutex_lock to prevent racing on it
  3374. when set_curblock is hit concurrently.
  3375. - Change default behaviour to submitting stale, removing the --submit-stale
  3376. option and adding a --no-submit-stale option.
  3377. - Make sure to start the getwork and submit threads when a pool is added on the
  3378. fly. This fixes a crash when a pool is added to running cgminer and then
  3379. switched to.
  3380. - Faster hardware can easily outstrip the speed we can get work and submit
  3381. shares when using only one connection per pool.
  3382. - Test the queued list to see if any get/submits are already queued and if they
  3383. are, start recruiting extra connections by generating new threads.
  3384. - This allows us to reuse network connections at low loads but recuit new open
  3385. connections as they're needed, so that cgminer can scale to hardware of any
  3386. size.
  3387. Version 2.3.5 - April 28, 2012
  3388. - Restarting cgminer leads to a socket that can't be bound for 60 seconds, so
  3389. increase the interval that API binding waits to 30 seconds to minimise the
  3390. number of times it will retry, spamming the logs.
  3391. - Give a longpoll message for any longpoll that detects a block change, primary
  3392. or backup, and also display which pool it was.
  3393. - Decrease utility display to one decimal place.
  3394. - Small cosmetic output alignment.
  3395. - Add pool number to stale share message.
  3396. - Add space to log output now that there is more screen real estate available.
  3397. - Indentation clean up.
  3398. - Merge branch 'master' of github.com:ckolivas/cgminer
  3399. - Remove thread id display from rejected shares as well.
  3400. - Merge pull request #185 from Diapolo/diakgcn
  3401. - add goffset support for diakgcn with -v 1 and update kernel version
  3402. - Set have_longpoll to true when there is at least one pool with longpoll.
  3403. - Don't display the thread ID since it adds no useful information over the
  3404. device number.
  3405. - Don't display the first 8 bytes of a share since they will always be zero at
  3406. >= 1 difficulty.
  3407. - work->longpoll is reset across test_work_current so we need to recheck what
  3408. pool it belongs to.
  3409. - Use longpolls from backup pools with failover-only enabled just to check for
  3410. block changes, but don't use them as work.
  3411. - Start longpoll only after we have tried to extract the longpoll URL.
  3412. - Check for submitold flag on resubmit of shares, and give different message for
  3413. stale shares on retry.
  3414. - Check for submitold before submitstale.
  3415. - Don't force fresh curl connections on anything but longpoll threads.
  3416. - Create one longpoll thread per pool, using backup pools for those pools that
  3417. don't have longpoll.
  3418. - Use the work created from the longpoll return only if we don't have
  3419. failover-enabled, and only flag the work as a longpoll if it is the current
  3420. pool.
  3421. - This will work around the problem of trying to restart the single longpoll
  3422. thread on pool changes that was leading to race conditions.
  3423. - It will also have less work restarts from the multiple longpolls received from
  3424. different pools.
  3425. - Remove the ability to disable longpoll. It is not a useful feature and will
  3426. conflict with planned changes to longpoll code.
  3427. - Remove the invalid entries from the example configuration file.
  3428. - Add support for latest ATI SDK on windows.
  3429. - Export missing function from libztex.
  3430. - miner.php change socktimeoutsec = 10 (it only waits once)
  3431. - Bugfix: Make initial_args a const char** to satisfy exec argument type warning
  3432. (on Windows only)
  3433. - miner.php add a timeout so you don't sit and wait ... forever
  3434. - Create discrete persistent submit and get work threads per pool, thus allowing
  3435. all submitworks belonging to the same pool to reuse the same curl handle, and
  3436. all getworks to reuse their own handle.
  3437. - Use separate handles for submission to not make getwork potentially delay
  3438. share submission which is time critical.
  3439. - This will allow much more reusing of persistent connections instead of opening
  3440. new ones which can flood routers.
  3441. - This mandated a rework of the extra longpoll support (for when pools are
  3442. switched) and this is managed by restarting longpoll cleanly and waiting for a
  3443. thread join.
  3444. - miner.php only show the current date header once
  3445. - miner.php also add current time like single rig page
  3446. - miner.php display rig 'when' table at top of the multi-rig summary page
  3447. - README - add some Ztex details
  3448. - api.c include zTex in the FPGA support list
  3449. - api.c ensure 'devs' shows PGA's when only PGA code is compiled
  3450. - cgminer.c sharelog code consistency and compile warning fix
  3451. - README correct API version number
  3452. - README spelling error
  3453. - api.c combine all pairs of sprintfs()
  3454. - api.c uncomment and use BLANK (and COMMA)
  3455. - Code style cleanup
  3456. - Annotating frequency changes with the changed from value
  3457. - README clarification of 'notify' command
  3458. - README update for API RPC 'devdetails'
  3459. - api.c 'devdetails' list static details of devices
  3460. - Using less heap space as my TP-Link seems to not handle this much
  3461. Version 2.3.4 - April 25, 2012
  3462. - Extensively document the cause of GPU device issues and the use of --gpu-map.
  3463. - Support for share logging
  3464. - Detect poorly performing combination of SDK and phatk kernel and add verbose
  3465. warning at startup.
  3466. - Icarus update to new add_cgpu()
  3467. - Icarus driver working with Linux and Windows
  3468. - api.c fix unused variable compile warning
  3469. - Display all OpenCL devices when -n is called as well to allow debugging of
  3470. differential mapping of OpenCL to ADL.
  3471. - Add a --gpu-map option which will allow arbitrarily mapping ADL devices to
  3472. OpenCL devices for instances where association by enumeration alone fails.
  3473. - Increase upper limit on number of extra items to queue as some FPGA code can't
  3474. yet reliably keep many devices busy.
  3475. - Display configuration file information when -c option is passed and only when
  3476. file exists on loading default config file.
  3477. - Display configuration file loaded, if any, and debug output if configuration
  3478. file parsing failed.
  3479. - Add missing ztex header to Makefile for distribution.
  3480. - Document long-form COM port device names on Windows, required to specify
  3481. serial ports above 9
  3482. - Include ztex bitstreams firmware in distribution and install if configured in.
  3483. - Style police on driver-ztex.c
  3484. - work_restart should only be changed by cgminer.c now
  3485. - Shut down the api cleanly when the api thread is cancelled. This should allow
  3486. the api socket to be closed successfully to next be reopened with app_restart.
  3487. - Make a union for cgpu device handles, and rename "device" to "device_ztex"
  3488. since it's Ztex-specific
  3489. - Initialise name variable.
  3490. - Remove unnecessary check for variable that always has memory allocated.
  3491. - Bugfix: Missing "break" no-op in default case
  3492. - Make the status window and log window as large as can fit on startup,
  3493. rechecking to see if it can be enlarged after the fact. This allows any number
  3494. of devices to be displayed provided the window is made long enough without
  3495. corrupting the output.
  3496. - Style police on libztex.c.
  3497. - API add removepool like the screen interface
  3498. - api.c escape required characters in return strings + pools returns the
  3499. username
  3500. - Set lp_path to NULL after free for consistency.
  3501. - Removing dmalloc import left behind by mistake
  3502. - Fixing leak in resp_hdr_cb
  3503. - miner.php warning highlight GPU stats if they are zero (e.g. ADL not enabled)
  3504. - miner.php highlight any device that isn't 'Enabled'
  3505. - miner.php highlight any Status that isn't 'Alive'
  3506. - miner.php optionally support multiple rigs
  3507. - Initial Ztex support 1.15x board.
  3508. Version 2.3.3 - April 15, 2012
  3509. - Don't even display that cpumining is disabled on ./configure to discourage
  3510. people from enabling it.
  3511. - Do a complete cgminer restart if the ATI Display Library fails, as it does on
  3512. windows after running for some time, when fanspeed reporting fails.
  3513. - Cache the initial arguments passed to cgminer and implement an attempted
  3514. restart option from the settings menu.
  3515. - Disable per-device status lines when there are more than 8 devices since
  3516. screen output will be corrupted, enumerating them to the log output instead at
  3517. startup.
  3518. - Reuse Vals[] array more than W[] till they're re-initialised on the second
  3519. sha256 cycle in poclbm kernel.
  3520. - Minor variable alignment in poclbm kernel.
  3521. - Make sure to disable devices with any status not being DEV_ENABLED to ensure
  3522. that thermal cutoff code works as it was setting the status to DEV_RECOVER.
  3523. - Re-initialising ADL simply made the driver fail since it is corruption over
  3524. time within the windows driver that's responsible. Revert "Attempt to
  3525. re-initialise ADL should a device that previously reported fanspeed stops
  3526. reporting it."
  3527. - Microoptimise poclbm kernel by ordering Val variables according to usage
  3528. frequency.
  3529. Version 2.3.2 - March 31, 2012
  3530. - Damping small changes in hashrate so dramatically has the tendency to always
  3531. make the hashrate underread so go back to gentle damping instead.
  3532. - Revert the crossover of variables from Vals to W in poclbm kernel now that
  3533. Vals are the first declared variables so they're used more frequently.
  3534. - Vals variables appearing first in the array in poclbm is faster.
  3535. - Change the preferred vector width to 1 for Tahiti only, not all poclbm
  3536. kernels.
  3537. - Use a time constant 0.63 for when large changes in hashrate are detected to
  3538. damp change in case the large change is an aliasing artefact instead of a real
  3539. chang
  3540. - Only increment stale counter if the detected stales are discarded.
  3541. - Attempt to re-initialise ADL should a device that previously reported fanspeed
  3542. stops reporting it.
  3543. - Move the ADL setup and clearing to separate functions and provide a reinit_adl
  3544. function to be used when adl fails while running.
  3545. - Use slightly more damping on the decay time function in the never-ending quest
  3546. to smooth off the hashmeter.
  3547. - Set the starting fanspeed to a safe and fairly neutral 50% when autofan is
  3548. enabled.
  3549. - Provide locking around updates of cgpu hashrates as well to prevent multiple
  3550. threads accessing data fields on the same device.
  3551. - Display the beginning of the new block in verbose mode in the logs.
  3552. - Reinstate old diablo kernel variable ordering from 120222, adding only goffset
  3553. and vector size hint. The massive variable ordering change only helped one SDK
  3554. on
  3555. - Change the version number on the correct kernels.
  3556. - api.c devicecode/osinfo incorrectly swapped for json
  3557. - Add extensive instructions on how to make a native windows build.
  3558. - Update version numbers of poclbm and diablo kernels as their APIs have also
  3559. changed.
  3560. - Use global offset parameter to diablo and poclbm kernel ONLY for 1 vector
  3561. kernels.
  3562. - Use poclbm preferentially on Tahiti now regardless of SDK.
  3563. - Remove unused constant passed to poclbm.
  3564. - Clean up use of macros in poclbm and use bitselect everywhere possible.
  3565. - Add vector type hint to diablo kernel.
  3566. - Add worksize and vector attribute hints to the poclbm kernel.
  3567. - Spaces for non-aligned variables in poclbm.
  3568. - More tidying of poclbm.
  3569. - Swap Vals and W variables where they can overlap in poclbm.
  3570. - More tidying of poclbm.
  3571. - Tidy up first half of poclbm.
  3572. - Clean up use of any() by diablo and poclbm kernels.
  3573. - Minor variable symmetry changes in poclbm.
  3574. - Put additions on separate lines for consistency in poclbm.
  3575. - Consolidate last use of W11 into Vals4 in poclbm.
  3576. - Change email due to SPAM
  3577. - api.c miner.php add a '*' to the front of all notify counters - simplifies
  3578. future support of new counters
  3579. - miner.php add display 'notify' command
  3580. - Small change to help arch's without processor affinity
  3581. - Fix bitforce compile error
  3582. - api.c notify should report disabled devices also - of course
  3583. - API returns the simple device history with the 'notify' command
  3584. - code changes for supporting a simple device history
  3585. - api.c Report an OS string in config to help with device issues
  3586. - api.c fix Log Interval - integer in JSON
  3587. - api.c config 'Device Code' to show list of compiled devices + README
  3588. - api.c increase buffer size close to current code allowable limit
  3589. - removed 8-component vector support from kernel, as this is not supported in
  3590. CGMINER anyway
  3591. - forgot to update kernel modification date, fixed ;)
  3592. - reordered an addition in the kernel, which results in less instructions used
  3593. in the GPU ISA code for GCN
  3594. - miner.php: option for readonly or check privileged access
  3595. - Ignore reduntant-with-build options --disable-gpu, --no-adl, and --no-restart
  3596. - miner.php: ereg_replace is DEPRECATED so use preg_replace instead
  3597. - Make curses TUI support optional at compile-time.
  3598. - Bugfix: AC_ARG_WITH provides withval instead of enableval
  3599. - miner.php split devs output for different devices
  3600. - api.c: correct error messages
  3601. - icarus.c modify (regular) timeout warning to only be debug
  3602. - icarus.c set the windows TODO timeout
  3603. - Allow specifying a specific driver for --scan-serial
  3604. - optimized nonce-check and output code for -v 2 and -v 4
  3605. - Bugfix: Check for libudev header (not just library) in configure, and document
  3606. optional dependency
  3607. - Add API support for Icarus and Bitforce
  3608. - Next API version is 1.4 (1.3 is current)
  3609. - README/api.c add "When" the request was processed to STATUS
  3610. - Bugfix: ZLX to read BitFORCE temp, not ZKX -.-
  3611. - Use libudev to autodetect BitFORCE GPUs, if available
  3612. - Use the return value of fan_autotune to set fan_optimal instead of passing it
  3613. as a pointer.
  3614. - Pass the lasttemp from the device we're using to adjust fanspeed in twin
  3615. devices.
  3616. - fix the name to 3 chars, fix the multi-icarus support
  3617. - Bugfix: "-S auto" is the default if no -S is specified, and there is no such
  3618. delay in using it
  3619. - README add information missing from --scan-serial
  3620. - Update README RPC API Version comment
  3621. - Bugfix: Allow enabling CPU even without OpenCL support
  3622. - Change failed-to-mine number of requested shares messge to avoid segfault on
  3623. recursive calling of quit().
  3624. - Get rid of extra char which is just truncated in poclbm kernel.
  3625. - only small code formating changes
  3626. - removed vec_step() as this could lead to errors on older SDKs
  3627. - unified code for generating nonce in kernel and moved addition of base to the
  3628. end -> faster
  3629. Version 2.3.1 - February 24, 2012
  3630. - Revert input and output code on diakgcn and phatk kernels to old style which
  3631. worked better for older hardware and SDKs.
  3632. - Add a vector*worksize parameter passed to those kernels to avoid one op.
  3633. - Increase the speed of hashrate adaptation.
  3634. - Only send out extra longpoll requests if we want longpolls.
  3635. - API implement addpool command
  3636. - API return the untouched Total MH also (API now version 1.3)
  3637. - Add enable/disablepool to miner.php example and reduce font size 1pt
  3638. Version 2.3.0 - February 23, 2012
  3639. - Consider extra longpoll work items as staged_extra so as to make sure we queue
  3640. more work if queueing regular work items as longpolls.
  3641. - Use diablo kernel on all future SDKs for Tahiti and set preferred vector width
  3642. to 1 on poclbm kernel only.
  3643. - Explicitly type the constants in diakgcn kernel as uint, to be in line with
  3644. poclbm kernel.
  3645. - Reset all hash counters at the same time as resetting start times to get
  3646. accurate hashrates on exiting which is mandatory for benchmarking.
  3647. - Report thread out before it starts to avoid being flagged as sick when waiting
  3648. for the first work item.
  3649. - Don't disable and re-enable devices as they may recover and in the meantime
  3650. have their status set to OFF.
  3651. - API new commands enablepool and disablepool (version already incremented)
  3652. - Tolerate new-format temperature readings for bitforce
  3653. - Modify cgminer.c pool control to allow API to call it
  3654. - Bugfix: Fix BitFORCE driver memory leak in debug logging
  3655. - Extra byte was being unused in poclbm leading to failure on some platforms.
  3656. - Explicitly type the constants in poclbm kernel as uint.
  3657. - Don't save 'include' when saving the configuration
  3658. - Allow configuration file to include another recursively
  3659. - Use the SDK and hardware information to choose good performing default
  3660. kernels.
  3661. - Move phatk kernel to offset vector based nonce bases as well.
  3662. - Add a --benchmark feature which works on a fake item indefinitely to compare
  3663. device performance without any server or networking influence.
  3664. - Allow writing of multiple worksizes to the configuration file.
  3665. - Allow writing of multiple vector sizes to the configuration file.
  3666. - Allow writing of multiple kernels to the configuration file.
  3667. - Allow multiple different kernels to be chosen per device.
  3668. - Allow the worksize to be set per-device.
  3669. - Allow different vectors to be set per device.
  3670. - If we're well below the target temperature, increase gpu engine speed back to
  3671. maximum in case we have gotten lost between profiles during an idle period.
  3672. - We should be setting the value of fan_optimal, not its address.
  3673. - As all kernels will be new versions it's an opportunity to change the .bin
  3674. format and make it simpler. Specifying bitalign is redundant and long can be l.
  3675. - Use any() in kernel output code.
  3676. - Put the nonce for each vector offset in advance, avoiding one extra addition
  3677. in the kernel.
  3678. - Reset times after all mining threads are started to make estimating hashrates
  3679. easier at startup.
  3680. - Bugfix: allow no-exec (NX) stack
  3681. - Fix minor warning.
  3682. - fix the bitforce.c code style follow 1TBS
  3683. - fix icarus.c compile warning
  3684. - small changes to speedup no vec for AMD 898.1 OCL runtime
  3685. - Update licensing to GPL V3.
  3686. - Reset the longpoll flag after it's been used once to prevent it restarting
  3687. work again.
  3688. - Begin import of DiabloMiner kernel.
  3689. - Modify API debug messages to say API instead of DBG
  3690. - When API shuts down cgminer don't kill itself
  3691. - Don't make rolled work from the longpoll be seen as other longpoll work items.
  3692. - API add 'privileged' command so can verify access level
  3693. - Set the lp_sent variable under lock since there will almost always be a race
  3694. on setting this variable, potentially leading to multiple LPs being sent out.
  3695. - API restrict access to all non display commands by default
  3696. - Update API version to 1.2 for new 'Log Interval'
  3697. - API add --log Interval to 'config' reply
  3698. - --api-allow special case 0/0 means all
  3699. Version 2.2.7 - February 20, 2012
  3700. - Send out extra longpolls when we have switched pools and the longpoll thread
  3701. is still bound to the old one. This is particularly useful with p2pool where
  3702. longpolls do not correlate with main bitcoin block change and would have led to
  3703. high reject rates on failover.
  3704. - Store whether a work item is the result of a longpoll or not in struct work
  3705. and use it to help determine block changes directly from the work longpoll bool.
  3706. - Keep track of when a longpoll has been sent for a pool and if the current pool
  3707. is requesting work but has not sent a longpoll request, convert one of the work
  3708. items to a longpoll.
  3709. - Store the longpoll url in the pool struct and update it from the pool_active
  3710. test in case it changes. This is to allow further changes to longpoll management
  3711. on switching pools.
  3712. - Re-check for a longpoll supporting pool every 30 seconds if none is found
  3713. initially.
  3714. - Report threads as busy waiting on getwork on startup to avoid them being
  3715. flagged sick on startup during slow networking.
  3716. - Allow devices that are disabled due to overheating to be flagged as recovering
  3717. instead of disabling them and re-enable them if they're below ideal temperatures
  3718. - Tahiti prefers worksize 64 with poclbm.
  3719. - No need to expressly retain the opencl program now that the zero binary issue
  3720. is fixed. This actually fixes cgminer to work with the latest SDK included with
  3721. the ATI catalyst driver 12.2.
  3722. - Show error code on any opencl failure status.
  3723. - Add detection for version 898.1 SDK as well but only give SDK 2.6 warning once
  3724. on startup instead of with each device initialisation.
  3725. - Always use a fresh connection for longpoll as prolonged persistent connections
  3726. can fail for many reasons.
  3727. - Keep track of intended engine clock speed and only adjust up if it's higher
  3728. than the last intended speed. This avoids setting the clock speed to one
  3729. relative to a lower profile one by mistake.
  3730. - Use gpu-memdiff on startup if an engine clockspeed is set and a memdiff value
  3731. is set.
  3732. - Revert "Adjust engine speed up according to performance level engine setting,
  3733. not the current engine speed." - ineffectual.
  3734. - Freeze the queues on all threads that are sent the pause message to prevent
  3735. them trying to start up again with saved pings in their queues.
  3736. - Updates to diakgcn kernel/
  3737. - Consolidate all screen updates to the watchdog thread and touch both windows
  3738. before refresh.
  3739. - Curses will be disabled in clean_up so don't do it early in kill_work, and
  3740. disable_adl so that GPU settings may be restored to normal in case shutting down
  3741. curses leads to instability on windows.
  3742. - Stop the mining threads before trying to kill them.
  3743. - Plain refresh() does not give reliably screen updates so get rid of all uses
  3744. of it.
  3745. - First release with working diakgcn kernel.
  3746. Version 2.2.6 - February 16, 2012
  3747. - Provide warning on each startup about sdk 2.6
  3748. - Fix unused warnings on win32.
  3749. - bitforce: Simplify BFopen WIN32 ifdef/else
  3750. - Fix initialization warning with jansson 1.3
  3751. - bitforce: Cleanup extraneous TODO that isn't needed
  3752. - Move tcsetattr (and new tcflush) into *nix BFopen to simplify things a bit
  3753. - Add message explaining 2nd thread disabling for dynamic mode and how to tune
  3754. it.
  3755. - Move logwindow down once number of devices is known.
  3756. - Automatically choose phatk kernel for bitalign non-gcn ATI cards, and then
  3757. only select poclbm if SDK2.6 is detected.
  3758. - Allow the refresh interval to be adjusted in dynamic intensity with a
  3759. --gpu-dyninterval parameter.
  3760. - Make curses display visible right from the beginning and fix the window sizes
  3761. so the initial messages don't get lost once the status window is drawn.
  3762. - The amount of work scanned can fluctuate when intensity changes and since we
  3763. do this one cycle behind, we increment the work more than enough to prevent
  3764. repeati
  3765. - bitforce: Set a 30 second timeout for serial port on Windows, since the
  3766. default is undefined
  3767. - Use PreVal4addT1 instead of PreVal4 in poclbm kernel.
  3768. - Import PreVal4 and PreVal0 into poclbm kernel.
  3769. - Import more prepared constants into poclbm kernel.
  3770. - Keep variables in one array but use Vals[] name for consistency with other
  3771. kernel designs.
  3772. - Replace constants that are mandatorily added in poclbm kernel with one value.
  3773. - Remove addition of final constant before testing for result in poclbm kernel.
  3774. - Hand optimise variable addition order.
  3775. - Hand optimise first variable declaration order in poclbm kernel.
  3776. - Radical reordering machine based first pass to change variables as late as
  3777. possible, bringing their usage close together.
  3778. - fix strcpy NULL pointer if env HOME unset.
  3779. - bitforce: Disable automatic scanning when at least one device is specified
  3780. manually
  3781. - Unroll all poclbm additions to enable further optimisations.
  3782. Version 2.2.5 - February 13, 2012
  3783. - Make output buffer write only as per Diapolo's suggestion.
  3784. - Constify nonce in poclbm.
  3785. - Use local and group id on poclbm kernel as well.
  3786. - Microoptimise phatk kernel on return code.
  3787. - Adjust engine speed up according to performance level engine setting, not the
  3788. current engine speed.
  3789. - Try to load a binary if we've defaulted to the poclbm kernel on SDK2.6
  3790. - Use the poclbm kernel on SDK2.6 with bitalign devices only if there is no
  3791. binary available.
  3792. - Further generic microoptimisations to poclbm kernel.
  3793. - The longstanding generation of a zero sized binary appears to be due to the
  3794. OpenCL library putting the binary in a RANDOM SLOT amongst 4 possible binary
  3795. locations. Iterate over each of them after building from source till the real
  3796. binary is found and use that.
  3797. - Fix harmless warnings with -Wsign-compare to allow cgminer to build with -W.
  3798. - Fix missing field initialisers warnings.
  3799. - Put win32 equivalents of nanosleep and sleep into compat.h fixing sleep() for
  3800. adl.c.
  3801. - Restore compatibility with Jansson 1.3 and 2.0 (api.c required 2.1)
  3802. - Modularized logging, support for priority based logging
  3803. - Move CPU chipset specific optimization into device-cpu
  3804. Version 2.2.4 - February 11, 2012
  3805. - Fix double definition of A0 B0 to zeroA zeroB.
  3806. - Retain cl program after successfully loading a binary image. May decrease
  3807. failures to build kernels at startup.
  3808. - Variable unused after this so remove setting it.
  3809. - BFI INT patching is not necessarily true on binary loading of files and not
  3810. true on ATI SDK2.6+. Report bitalign instead.
  3811. - Various string fixes for reject reason.
  3812. - Generalize --temp-cutoff and implement support for reading temperature from
  3813. BitFORCE FPGAs
  3814. - Change message from recovered to alive since it is used on startup as well as
  3815. when a pool has recovered.
  3816. - Start mining as soon as any pool is found active and rely on the watchpool
  3817. thread to bring up other pools.
  3818. - Delayed responses from testing pools that are down can hold up the watchdog
  3819. thread from getting to its device testing code, leading to false detection of
  3820. the GPU not checking in, and can substantially delay auto gpu/auto fan
  3821. management leading to overheating. Move pool watching to its own thread.
  3822. - Bugfix: BitFORCE index needs to be static to count correctly
  3823. - Space out retrieval of extra work according to the number of mining threads.
  3824. - Make shutdown more robust. Enable the input thread only after the other
  3825. threads exist. Don't kill off the workio thread and use it to exit main() only
  3826. if there is an unexpected problem. Use kill_work() for all anticipated shutdowns
  3827. where possible. Remove unused thread entry.
  3828. - Change poclbm version number.
  3829. - One array is faster than 2 separate arrays so change to that in poclbm kernel.
  3830. - Microoptimisations to poclbm kernel which increase throughput slightly.
  3831. - Import diablominer kernel. Currently disabled as not working.
  3832. - Import diapolo kernel. Currently disabled as not working.
  3833. - Conflicting entries of cl_kernel may have been causing problems, and
  3834. automatically chosen kernel type was not being passed on. Rename the enum to
  3835. cl_kernels and store the chosen kernel in each clState.
  3836. - Set cl_amd_media_ops with the BITALIGN flag and allow non-bitselect devices to
  3837. build.
  3838. - ALlow much longer filenames for kernels to load properly.
  3839. - Allow different kernels to be used by different devices and fix the logic fail
  3840. of overcorrecting on last commit with !strstr.
  3841. - Fix kernel selection process and build error.
  3842. - queue_phatk_kernel now uses CL_SET_VARG() for base-nonce(s), too
  3843. - added OpenCL >= 1.1 detection code, in preparation of OpenCL 1.1 global offset
  3844. parameter support
  3845. - Use K array explicitly to make it clear what is being added.
  3846. - Work items have a tendency to expire at exactly the same time and we don't
  3847. queue extra items when there are plenty in the queue, regardless of age. Allow
  3848. extra work items to be queued if adequate time has passed since we last
  3849. requested work even if over the limit.
  3850. - Discard work when failover-only is enabled and the work has come from a
  3851. different pool.
  3852. - Missing include to build on newer mingw32.
  3853. - Move from the thread safe localtime_r to regular localtime which is the only
  3854. one supported on newer pthread libraries on mingw32 to make it compile with the
  3855. newer ming. Thread safety is of no importance where localtime is used in this
  3856. code.
  3857. - Define in_addr_t in windows if required
  3858. - sys/wait.h not required in windows
  3859. - Allow API to restrict access by IP address
  3860. - Add pool switching to example miner.php
  3861. - Display X-Reject-Reason, when provided
  3862. - Remove the test for whether the device is on the highest profil level before
  3863. raising the GPU speed as it is ineffectual and may prevent raising the GPU
  3864. speed.
  3865. - Remove unnecessary check for opt_debug one every invocation of applog at
  3866. LOG_DEBUG level and place the check in applog().
  3867. Version 2.2.3 - February 6, 2012
  3868. - Revert "Rewrite the convoluted get_work() function to be much simpler and roll
  3869. work as much as possible with each new work item." This seems to cause a race on
  3870. work in free_work(). Presumably other threads are still accessing the structure.
  3871. Version 2.2.2 - February 6, 2012
  3872. - Provide support for the submitold extension on a per-pool basis based on the
  3873. value being detected in a longpoll.
  3874. - Don't send a ping to a dynamic device if it's not enabled as that will just
  3875. enable it for one pass and then disable it again.
  3876. - Rewrite the convoluted get_work() function to be much simpler and roll work as
  3877. much as possible with each new work item.
  3878. - Roll as much work as possible from the work returned from a longpoll.
  3879. - Rolling work on each loop through the mining thread serves no purpose.
  3880. - Allow to stage more than necessary work items if we're just rolling work.
  3881. - Replace divide_work with reuse_work function used twice.
  3882. - Give rolled work a new ID to make sure there is no confusion in the hashtable
  3883. lookups.
  3884. - Remove now-defunct hash_div variables.
  3885. - Remove unused get_dondata function.
  3886. - Silence ADL warnings.
  3887. - Silence unused parameter warnings.
  3888. - Stagger the restart of every next thread per device to keep devices busy ahead
  3889. of accessory threads per device.
  3890. - Deprecate the --donation feature. Needlessly complex, questionable usefulness,
  3891. depends on author's server and a central pool of some kind, and was not heavily
  3892. adopted.
  3893. - It's devices that report back now, not threads, update message.
  3894. - Continue auto-management of fan and engine speeds even if a device is disabled
  3895. for safety reasons.
  3896. - No need to check we're highest performance level when throttling GPU engine
  3897. speed.
  3898. - Abstract out tests for whether work has come from a block that has been seen
  3899. before and whether a string is from a previously seen block.
  3900. - Probe but don't set the timeout to 15 seconds as some networks take a long
  3901. time to timeout.
  3902. - Remove most compiler warnings from api.c
  3903. - Add last share's pool info in cgpu_info
  3904. - Allow the OpenCL platform ID to be chosen with --gpu-platform.
  3905. - Iterate over all platforms displaying their information and number of devices
  3906. when --ndevs is called.
  3907. - Deprecate main.c
  3908. - Some networks can take a long time to resolve so go back to 60 second timeouts
  3909. instead of 15.
  3910. - Only enable curses on failure if curses is desired.
  3911. - Fix warnings in bitforce.c
  3912. - Bugfix: Need to open BitForce tty for read-write
  3913. - Fix various build issues.
  3914. - Modularize code: main.c -> device-cpu + device-gpu
  3915. - Fix phatk kernel not working on non-bitalign capable devices (Nvidia, older
  3916. ATI).
  3917. - Update poclbm kernel for better performance on GCN and new SDKs with bitalign
  3918. support when not BFI INT patching. Update phatk kernel to work properly for non
  3919. BFI INT patched kernels, providing support for phatk to run on GCN and non-ATI
  3920. cards.
  3921. - Return last accepted share pool/time for devices
  3922. - Display accepted share pool/time for CPUs
  3923. - Bug intensity always shows GPU 0
  3924. - Update example web miner.php to use new API commands
  3925. Version 2.2.1 - January 30, 2012
  3926. NOTE - The GPU Device reordering in 2.2.0 by default was considered a bad idea
  3927. so the original GPU ordering is used by default again unless reordering is
  3928. explicitly requested.
  3929. - Fix bitforce failing to build into cgminer.
  3930. - Add missing options to write config function.
  3931. - Add a --gpu-reorder option to only reorder devices according to PCI Bus ID
  3932. when requested.
  3933. - Fix for midstate support being broken on pools that supported no-midstate
  3934. work by ensuring numbers are 32 bits in sha2.c
  3935. - Set virtual GPUs to work when ADL is disabled or all mining will occur on GPU
  3936. 0.
  3937. - Add information about paused threads in the menu status.
  3938. - Disable all but the first thread on GPUs in dynamic mode for better
  3939. interactivity.
  3940. - Set the latest network access time on share submission for --net-delay even if
  3941. we're not delaying that submission for further network access.
  3942. - Clear adl on exiting after probing values since it may attempt to overclock.
  3943. - As share submission is usually staggered, and delays can be costly, submit
  3944. shares without delay even when --net-delay is enabled.
  3945. - Display GPU number and device name when ADL is successfully enabled on it.
  3946. - Display GPU ordering remapping in verbose mode.
  3947. - Don't fail in the case the number of ADL and OpenCL devices do not match, and
  3948. do not attempt to reorder devices unless they match. Instead give a warning
  3949. about
  3950. - Display error codes should ADL not return ADL_OK in the more critical function
  3951. calls.
  3952. - Fix unused warning.
  3953. - Fix compile warnings in api.c
  3954. - Add extensive ADL based device info in debug mode.
  3955. - Make --ndevs display verbose opencl information as well to make debugging
  3956. version information easier.
  3957. - Display information about the opencl platform with verbose enabled.
  3958. - Explicitly check for nvidia in opencl platform strings as well.
  3959. Version 2.2.0 - January 29, 2012
  3960. NOTE: GPU Device order will change with this release with ATI GPUs as cgminer
  3961. now can enumerate them according to their Bus ID which means the values should
  3962. now correlate with their physical position on the motherboard.
  3963. - Default to poclbm kernel on Tahiti (7970) since phatk does not work, even
  3964. though performance is sub-standard so that at least it will mine successfully by
  3965. defau
  3966. - Retain cl program after every possible place we might build the program.
  3967. - Update ADL SDK URL.
  3968. - Fix potential overflow.
  3969. - Map GPU devices to virtual devices in their true physical order based on
  3970. BusNumber.
  3971. - Change the warning that comes with failure to init cl on a device to be more
  3972. generic and accurate.
  3973. - Advertise longpoll support in X-Mining-Extensions
  3974. - Detect dual GPU cards by iterating through all GPUs, finding ones without
  3975. fanspeed and matching twins with fanspeed one bus ID apart.
  3976. - Do not attempt to build the program that becomes the kernel twice. This could
  3977. have been leading to failures on initialising cl.
  3978. - Some opencl compilers have issues with no spaces after -D in the compiler
  3979. options.
  3980. - Allow intensity up to 14.
  3981. - Use calloced stack memory for CompilerOptions to ensure sprintf writes to the
  3982. beginning of the char.
  3983. - Whitelist 79x0 cards to prefer no vectors as they perform better without.
  3984. - Adjust fan speed gently while in the optimal range when temperature is
  3985. drifting to minimise overshoot in either direction.
  3986. - Detect dual GPU cards via the indirect information of - 1st card has a fan
  3987. controller. 2nd card does not have a fan controller, cards share the same device
  3988. name
  3989. - Instead of using the BFI_INT patching hack on any device reporting
  3990. cl_amd_media_ops, create a whitelist of devices that need it. This should enable
  3991. GCN architec
  3992. - Fixed API compiling issue on OS X
  3993. - Add more explanation of JSON format and the 'save' command
  3994. - Return an error if using ADL API commands when it's not available
  3995. - Read off lpThermalControllerInfo from each ADL device.
  3996. - Add ADL_Overdrive5_ThermalDevices_Enum interface.
  3997. - Add API commands: config, switchpool, gpu settings, save
  3998. - Implement socks4 proxy support.
  3999. - Fix send() for JSON strings
  4000. - Introduce a --net-delay option which guarantees at least 250ms between any
  4001. networking requests to not overload slow routers.
  4002. - Generalise locking init code.
  4003. - Allow invalid values to be in the configuration file, just skipping over them
  4004. provided the rest of the file is valid JSON. This will allow older configurat
  4005. - Allow CPU mining explicitly enable only if other mining support is built in.
  4006. - BitForce FPGA support
  4007. - Configure out building and support of all CPU mining code unless
  4008. --enable-cpumining is enabled.
  4009. - Allow parsed values to be zero which will allow 0 values in the config file to
  4010. work.
  4011. - Advertise that we can make our own midstate, so the pool can skip generating
  4012. it for us
  4013. - Refactor the CPU scanhash_* functions to use a common API. Fixes bugs.
  4014. - Don't consider a pool lagging if a request has only just been filed. This
  4015. should decrease the false positives for "pool not providing work fast enough".
  4016. - Invalidating work after longpoll made hash_pop return no work giving a false
  4017. positive for dead pool. Rework hash_pop to retry while finds no staged work u
  4018. - Remove TCP_NODELAY from curl options as many small packets may be contributing
  4019. to network overload, when --net-delay is enabled.
  4020. - Refactor miner_thread to be common code for any kind of device
  4021. - Simplify submit_nonce loop and avoid potentially missing FOUND - 1 entry.
  4022. Reported by Luke-Jr.
  4023. - Micro-optimisation in sha256_sse2 code courtesy of Guido Ascioti
  4024. guido.ascioti@gmail.com
  4025. - Refactor to abstract device-specific code
  4026. Version 2.1.2 - January 6, 2012
  4027. - If api-description is specified, save it when writing the config file
  4028. - Adjust utility width to be constant maximum as well.
  4029. - Add percent signs to reject ratio outputs
  4030. - Should the donation pool fail, don't make the fallover pool behave as though
  4031. the primary pool is lagging.
  4032. - Use an alternative pool should the donation getwork fail.
  4033. Version 2.1.1 - January 1, 2012
  4034. - Include API examples in distribution tarball.
  4035. - Don't attempt to pthread_join when cancelling threads as they're already
  4036. detached and doing so can lead to a segfault.
  4037. - Give more generic message if slow pool at startup is the donation pool.
  4038. - Continue to attempt restarting GPU threads if they're flagged dead at 1 min.
  4039. intervals.
  4040. - Don't attempt to restart sick flagged GPUs while they're still registering
  4041. activity.
  4042. - Make curl use fresh connections whenever there is any communication issue
  4043. in case there are dead persistent connections preventing further comms from
  4044. working.
  4045. - Display pool in summary if only 1 pool.
  4046. - Adjust column width of A/R/HW to be the maximum of any device and align them.
  4047. Version 2.1.0 - December 27, 2011
  4048. - Major infrastructure upgrade with RPC interface for controlling via sockets
  4049. encoded with/without JSON courtesy of Andrew Smith. Added documentation for
  4050. use of the API and sample code to use with it.
  4051. - Updated linux-usb-cgminer document.
  4052. - Rewrite of longpoll mechanism to choose the current pool wherever possible to
  4053. use for the longpoll, or any pool that supports longpoll if the current one
  4054. does not.
  4055. - Display information about longpoll when the chosen server has changed.
  4056. - Fix the bug where longpoll generated work may have been sent back to the
  4057. wrong pool, causing rejects.
  4058. - Fix a few race conditions on closing cgminer which caused some of the crashes
  4059. on exit.
  4060. - Only adjust gpu engine speed in autotune mode if the gpu is currently at the
  4061. performance level of that being adjusted.
  4062. - Various fixes for parsing/writing of configuration files.
  4063. - Do not add blank lines for threads of unused CPUs.
  4064. - Show which pool is unresponsive on startup.
  4065. - Only show GPU management menu item if GPUs are in use.
  4066. - Align most device columns in the curses display.
  4067. Version 2.0.8 - November 11, 2011
  4068. - Make longpoll do a mandatory flushing of all work even if the block hasn't
  4069. changed, thus supporting longpoll initiated work change of any sort and merged
  4070. mining.
  4071. - Byteswap computed hash in hashtest so it can be correctly checked. This fixes
  4072. the very rare possibility that a block solve on solo mining was missed.
  4073. - Add x86_64 w64 mingw32 target
  4074. - Allow a fixed speed difference between memory and GPU clock speed with
  4075. --gpu-memdiff that will change memory speed when GPU speed is changed in
  4076. autotune mode.
  4077. - Don't load the default config if a config file is specified on the command
  4078. line.
  4079. - Don't build VIA on apple since -a auto bombs instead of gracefully ignoring
  4080. VIA failing.
  4081. - Build fix for dlopen/dlclose errors in glibc.
  4082. Version 2.0.7 - October 17, 2011
  4083. - Support work without midstate or hash1, which are deprecated in bitcoind 0.5+
  4084. - Go to kernel build should we fail to clCreateProgramWithBinary instead of
  4085. failing on that device. This should fix the windows problems with devices not
  4086. initialising.
  4087. - Support new configuration file format courtesy of Chris Savery which can write
  4088. the config file from the menu and will load it on startup.
  4089. - Write unix configuration to .cgminer/cgminer.conf by default and prompt to
  4090. overwrite if given a filename from the menu that exists.
  4091. Version 2.0.6 - October 9, 2011
  4092. - Must initialise the donorpool mutex or it fails on windows.
  4093. - Don't make donation work interfere with block change detection allowing
  4094. donation to work regardless of the block chain we're mining on.
  4095. - Expire shares as stale with a separate timeout from the scantime, defaulting
  4096. to 120 seconds.
  4097. - Retry pools after a delay of 15 seconds if none can be contacted on startup
  4098. unless a key is pressed.
  4099. - Don't try to build adl features without having adl.
  4100. - Properly check shares against target difficulty - This will no longer show
  4101. shares when solo mining at all unless they're considered to be a block solve.
  4102. - Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
  4103. - Try to use SSL if the server supports it.
  4104. - Display the total solved blocks on exit (LOL if you're lucky).
  4105. - Use ADL activity report to tell us if a sick GPU is still busy suggesting it
  4106. is hard hung and do not attempt to restart it.
  4107. Version 2.0.5 - September 27, 2011
  4108. - Intensity can now be set to dynamic or static values per-device.
  4109. - New donation feature --donation sends a proportion of shares to author's
  4110. account of choice, but is disabled by default!
  4111. - The hash being displayed and block detection has been fixed.
  4112. - Devices not being mined on will not attempt to be ADL managed.
  4113. - Intensity is now displayed per GPU device.
  4114. - Make longpoll attempt to restart as often as opt_retries specifies.
  4115. - We weren't rolling work as often as we could.
  4116. - Correct some memory management issues.
  4117. - Build fixes.
  4118. - Don't mess with GPUs if we don't have them.
  4119. Version 2.0.4 - September 23, 2011
  4120. - Confused Longpoll messages should be finally fixed with cgminer knowing for
  4121. sure who found the new block and possibly avoiding a rare crash.
  4122. - Display now shows the actual hash and will say BLOCK! if a block is deemed
  4123. solved.
  4124. - Extra spaces, which would double space lines on small terminals, have been
  4125. removed.
  4126. - Fan speed change is now damped if it is already heading in the correct
  4127. direction to minimise overshoot.
  4128. - Building without opencl libraries is fixed.
  4129. - GPUs are autoselected if there is only one when in the GPU management menu.
  4130. - GPU menu is refreshed instead of returning to status after a GPU change.
  4131. Version 2.0.3 - September 17, 2011
  4132. - Various modes of failure to set fanspeeds and adl values have been addressed
  4133. and auto-fan should work now on most hardware, and possibly other values
  4134. which previously would not have worked.
  4135. - Fixed a crash that can occur on switching pools due to longpoll thread races.
  4136. - Use ATISTREAMSDKROOT if available at build time.
  4137. - Fanspeed management is returned to the driver default on exit instead of
  4138. whatever it was when cgminer was started.
  4139. - Logging of events deemed WARNING or ERR now will display even during
  4140. periods where menu input is being awaited on.
  4141. Version 2.0.2 - September 11, 2011
  4142. - Exit cleanly if we abort before various threads are set up or if they no
  4143. longer exist.
  4144. - Fix a rare crash in HASH_DEL due to using different mutexes to protect the
  4145. data.
  4146. - Flag devices that have never started and don't allow enabling of devices
  4147. without restarting them.
  4148. - Only force the adapter speed to high if we've flagged this device as being
  4149. managed.
  4150. - Flag any devices with autofan or autogpu as being managed.
  4151. - Use a re-entrant value to store what fanspeed we're trying to set in case the
  4152. card doesn't support small changes. Force it to a multiple of 10% if it
  4153. fails on trying to speed up the fan.
  4154. - Do not bother resetting values to old ones if changes to GPU parameters report
  4155. failure, instead returning a failure code only if the return value from get()
  4156. differs.
  4157. - Remove redundant check.
  4158. - Only display supported values from fanspeed on change settings.
  4159. - Missing bracket from output.
  4160. - Display fan percentage on devices that only support reporting percent and not
  4161. RPM.
  4162. - Properly substitute DLOPEN flags to build with ADL support when -ldl is needed
  4163. and not when opencl is not found.
  4164. Version 2.0.1 - September 9, 2011
  4165. - Fix building on 32bit glibc with dlopen with -lpthread and -ldl
  4166. - ByteReverse is not used and the bswap opcode breaks big endian builds. Remove
  4167. it.
  4168. - Ignore whether the display is active or not since only display enabled devices
  4169. work this way, and we skip over repeat entries anwyay.
  4170. - Only reset values on exiting if we've ever modified them.
  4171. - Flag adl as active if any card is successfully activated.
  4172. - Add a thermal cutoff option as well and set it to 95 degrees by default.
  4173. - Change the fan speed by only 5% if it's over the target temperature but less
  4174. than the hysteresis value to minimise overshoot down in temperature.
  4175. - Add a --no-adl option to disable ADL monitoring and GPU settings.
  4176. - Only show longpoll received delayed message at verbose level.
  4177. - Allow temperatures greater than 100 degrees.
  4178. - We should be passing a float for the remainder of the vddc values.
  4179. - Implement accepting a range of engine speeds as well to allow a lower limit to
  4180. be specified on the command line.
  4181. - Allow per-device fan ranges to be set and use them in auto-fan mode.
  4182. - Display which GPU has overheated in warning message.
  4183. - Allow temperature targets to be set on a per-card basis on the command line.
  4184. - Display fan range in autofan status.
  4185. - Setting the hysteresis is unlikely to be useful on the fly and doesn't belong
  4186. in the per-gpu submenu.
  4187. - With many cards, the GPU summaries can be quite long so use a terse output
  4188. line when showing them all.
  4189. - Use a terser device status line to show fan RPM as well when available.
  4190. - Define max gpudevices in one macro.
  4191. - Allow adapterid 0 cards to enumerate as a device as they will be non-AMD
  4192. cards, and enable ADL on any AMD card.
  4193. - Do away with the increasingly confusing and irrelevant total queued and
  4194. efficiency measures per device.
  4195. - Only display values in the log if they're supported and standardise device log
  4196. line printing.
  4197. Version 2.0.0 - September 6, 2011
  4198. Major feature upgrade - GPU monitoring, (over)clocking and fan control for ATI
  4199. GPUs.
  4200. New command line switches:
  4201. --auto-fan- Automatically adjust all GPU fan speeds to maintain a target
  4202. temperature
  4203. --auto-gpu- Automatically adjust all GPU engine clock speeds to maintain
  4204. a target temperature
  4205. --gpu-engine <arg> Set the GPU engine (over)clock in Mhz - one value for all or
  4206. separate by commas for per card.
  4207. --gpu-fan <arg> Set the GPU fan percentage - one value for all or separate
  4208. by commas for per card.
  4209. --gpu-memclock <arg> Set the GPU memory (over)clock in Mhz - one value for all
  4210. or separate by commas for per card.
  4211. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or
  4212. separate by commas for per card.
  4213. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate
  4214. by commas for per card.
  4215. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside
  4216. limits when automanaging speeds (default: 3)
  4217. --temp-overheat <arg> Set the overheat temperature when automatically managing
  4218. fan and GPU speeds (default: 85)
  4219. --temp-target <arg> Set the target temperature when automatically managing fan
  4220. and GPU speeds (default: 75)
  4221. - Implement ATI ADL support for GPU parameter monitoring now and setting later
  4222. (temp, fan, clocks etc.).
  4223. - Check for the presence of the ADL header files in ADL_SDK.
  4224. - Import adl_functions.h from amd overdrive ctrl.
  4225. - Implement a setup function that tries to detect GPUs that support the ADL and
  4226. link in the parameters into the gpus struct.
  4227. - Put a summary of monitoring information from the GPU menu.
  4228. - Implement changing memory speed and voltage on the fly.
  4229. - Implement fan speed setting.
  4230. - Minor corrections to set fan speed by percentage.
  4231. - Make sure to read off the value in RPM only.
  4232. - Implement auto fanspeed adjustment to maintain a target temperature and
  4233. fanspeed below 85%, with an overheat check that will speed the fan up to 100%.
  4234. - Add an --auto-fan command line option to allow all GPUs to have autofan
  4235. enabled from startup.
  4236. - Add a gpu autotune option which adjusts GPU speed to maintain a target
  4237. temperature within the bounds of the default GPU speed and any overclocking set.
  4238. - Avoid a dereference if the longpoll thread doesn't exist.
  4239. - Clean up by setting performance profiles and fan settings to startup levels on
  4240. exit.
  4241. - Add a small amount of hysteresis before lowering clock speed.
  4242. - Allow target, overheat and hysteresis temperatures to be set from command
  4243. line.
  4244. - Combine all stats collating into one function to avoid repeating function
  4245. calls on each variable.
  4246. - Add gpu statistics to debugging output via the watchdog thread.
  4247. - Implement menus to change temperature limits.
  4248. - Implement setting the GPU engine clock speed of all devices or each device as
  4249. a comma separated value.
  4250. - Implement setting the GPU memory clock speed of all devices or each device as
  4251. a comma separated value.
  4252. - Implement setting the GPU voltage of all devices or each device as a comma
  4253. separated value.
  4254. - Implement setting the GPU fan speed of all devices or each device as a comma
  4255. separated value.
  4256. - Add support for monitoring powertune setting.
  4257. - Implement changing of powertune value from the GPU change settings menu.
  4258. - Get the value of powertune in get_stats.
  4259. - Implement setting the GPU powertune value of all devices or each device as a
  4260. comma separated value.
  4261. - Remove the safety checks in speed setting since confirmation is done first in
  4262. the menu, then show the new current values after a short pause.
  4263. - Force the speed to high on startup and restore it to whatever the setting was
  4264. on exit.
  4265. - Add temperature to standard output where possible and use more compact output.
  4266. - Move and print at the same time in curses to avoid random trampling display
  4267. errors.
  4268. - Update the status window only from the watchdog thread, do not rewrite the top
  4269. status messages and only refresh once all the status window is complete,
  4270. clearing the window each time to avoid corruption.
  4271. - Set a safe starting fan speed if we're automanaging the speeds.
  4272. - Provide locking around all adl calls to prevent races.
  4273. - Lower profile settings cannot be higher than higher profile ones so link any
  4274. drops in settings.
  4275. - Add new needed text files to distribution.
  4276. - Queue requests ignoring the number of staged clones since they get discarded
  4277. very easily leading to false positives for pool not providing work fast enough.
  4278. - Include libgen.h in opt.c to fix win32 compilation warnings.
  4279. - Fix compilation warning on win32.
  4280. - Add the directory name from the arguments cgminer was called from as well to
  4281. allow it running from a relative pathname.
  4282. - Add a --disable-adl option to configure and only enable it if opencl support
  4283. exists.
  4284. - Retry before returning a failure to get upstream work as a failure to avoid
  4285. false positives for pool dead.
  4286. - Retry also if the decoding of work fails.
  4287. - Use the presence of X-Roll-Ntime in the header as a bool for exists unless N
  4288. is found in the response.
  4289. Version 1.6.2 - September 2, 2011
  4290. - Add --failover-only option to not leak work to backup pools when the primary
  4291. pool is lagging.
  4292. - Change recommendation to intensity 9 for dedicated miners.
  4293. - Fix the bouncing short term value by allowing it to change dynamically when
  4294. the latest value is very different from the rolling value, but damp the change
  4295. when it gets close.
  4296. - Use the curses_lock to protect the curses_active variable and test it under
  4297. lock.
  4298. - Go back to requesting work 2/3 of the way through the current scantime with
  4299. CPU mining as reports of mining threads running out of work have occurred with
  4300. only 5 seconds to retrieve work.
  4301. - Add start and stop time scheduling for regular time of day running or once off
  4302. start/stop options.
  4303. - Print summary on quit modes.
  4304. - Put some sanity checks on the times that can be input.
  4305. - Give a verbose message when no active pools are found and pause before
  4306. exiting.
  4307. - Add verbose message when a GPU fails to initialise, and disable the correct
  4308. GPU.
  4309. - Cryptopp asm32 was not correctly updated to the incremental nonce code so the
  4310. hash counter was bogus.
  4311. - Get rid of poorly executed curl check.
  4312. - If curl does not have sockopts, do not try to compile the
  4313. json_rpc_call_sockopt_cb function, making it possible to build against older
  4314. curl libraries.
  4315. - Most people expect /usr/local when an unspecified prefix is used so change to
  4316. that.
  4317. - Rename localgen occasions to getwork fail occasions since localgen is
  4318. unrelated now.
  4319. Version 1.6.1 - August 29, 2011
  4320. - Copy cgminer path, not cat it.
  4321. - Switching between redrawing windows does not fix the crash with old
  4322. libncurses, so redraw both windows, but only when the window size hasn't
  4323. changed.
  4324. - Reinstate minimum 1 extra in queue to make it extremely unlikely to ever have
  4325. 0 staged work items and any idle time.
  4326. - Return -1 if no input is detected from the menu to prevent it being
  4327. interpreted as a 0.
  4328. - Make pthread, libcurl and libcurses library checks mandatory or fail.
  4329. - Add a --disable-opencl configure option to make it possible to override
  4330. detection of opencl and build without GPU mining support.
  4331. - Confusion over the variable name for number of devices was passing a bogus
  4332. value which likely was causing the zero sized binary issue.
  4333. - cgminer no longer supports default url user and pass so remove them.
  4334. - Don't show value of intensity since it's dynamic by default.
  4335. - Add options to explicitly enable CPU mining or disable GPU mining.
  4336. - Convert the opt queue into a minimum number of work items to have queued
  4337. instead of an extra number to decrease risk of getting idle devices without
  4338. increasing risk of higher rejects.
  4339. - Statify tv_sort.
  4340. - Check for SSE2 before trying to build 32 bit SSE2 assembly version. Prevents
  4341. build failure when yasm is installed but -msse2 is not specified.
  4342. - Add some defines to configure.ac to enable exporting of values and packaging,
  4343. and clean up output.
  4344. - Give convenient summary at end of ./configure.
  4345. - Display version information and add --version command line option, and make
  4346. sure we flush stdout.
  4347. - Enable curses after the mining threads are set up so that failure messages
  4348. won't be lost in the curses interface.
  4349. - Disable curses after inputting a pool if we requested no curses interface.
  4350. - Add an option to break out after successfully mining a number of accepted
  4351. shares.
  4352. - Exit with a failed return code if we did not reach opt_shares.
  4353. - The cpu mining work data can get modified before we copy it if we submit it
  4354. async, and the sync submission is not truly sync anyway, so just submit it sync.
  4355. Version 1.6.0 - August 26, 2011
  4356. - Make restarting of GPUs optional for systems that hang on any attempt to
  4357. restart them. Fix DEAD status by comparing it to last live time rather than
  4358. last attempted restart time since that happens every minute.
  4359. - Move staged threads to hashes so we can sort them by time.
  4360. - Create a hash list of all the blocks created and search them to detect when a
  4361. new block has definitely appeared, using that information to detect stale work
  4362. and discard it.
  4363. - Update configure.ac for newer autoconf tools.
  4364. - Use the new hashes directly for counts instead of the fragile counters
  4365. currently in use.
  4366. - Update to latest sse2 code from cpuminer-ng.
  4367. - Allow LP to reset block detect and block detect lp flags to know who really
  4368. came first.
  4369. - Get start times just before mining begins to not have very slow rise in
  4370. average.
  4371. - Add message about needing one server.
  4372. - We can queue all the necessary work without hitting frequent stales now with
  4373. the time and string stale protection active all the time. This prevents a
  4374. pool being falsely labelled as not providing work fast enough.
  4375. - Include uthash.h in distro.
  4376. - Implement SSE2 32 bit assembly algorithm as well.
  4377. - Fail gracefully if unable to open the opencl files.
  4378. - Make cgminer look in the install directory for the .cl files making make
  4379. install work correctly.
  4380. - Allow a custom kernel path to be entered on the command line.
  4381. - Bump threshhold for lag up to maximum queued but no staged work.
  4382. - Remove fragile source patching for bitalign, vectors et. al and simply pass it
  4383. with the compiler options.
  4384. - Actually check the value returned for the x-roll-ntime extension to make sure
  4385. it isn't saying N.
  4386. - Prevent segfault on exit for when accessory threads don't exist.
  4387. - Disable curl debugging with opt protocol since it spews to stderr.
  4388. Version 1.5.8 - August 23, 2011
  4389. - Minimise how much more work can be given in cpu mining threads each interval.
  4390. - Make the fail-pause progressively longer each time it fails until the network
  4391. recovers.
  4392. - Only display the lagging message if we've requested the work earlier.
  4393. - Clean up the pool switching to not be dependent on whether the work can roll
  4394. or not by setting a lagging flag and then the idle flag.
  4395. - Only use one thread to determine if a GPU is sick or well, and make sure to
  4396. reset the sick restart attempt time.
  4397. - The worksize was unintentionally changed back to 4k by mistake, this caused a
  4398. slowdown.
  4399. Version 1.5.7 - August 22, 2011
  4400. - Fix a crash with --algo auto
  4401. - Test at appropriate target difficulty now.
  4402. - Add per-device statics log output with --per-device-stats
  4403. - Fix breakage that occurs when 1 or 4 vectors are chosen on new phatk.
  4404. - Make rolltime report debug level only now since we check it every work
  4405. item.
  4406. - Add the ability to enable/disable per-device stats on the fly and match
  4407. logging on/off.
  4408. - Explicitly tell the compiler to retain the program to minimise the chance of
  4409. the zero sized binary errors.
  4410. - Add one more instruction to avoid one branch point in the common path in the
  4411. cl return code. Although this adds more ALUs overall and more branch points, the
  4412. common path code has the same number of ALUs and one less jmp, jmps being more
  4413. expensive.
  4414. - Explicitly link in ws2_32 on the windows build and update README file on how
  4415. to compile successfully on windows.
  4416. - Release cl resources should the gpu mining thread abort.
  4417. - Attempt to restart a GPU once every minute while it's sick.
  4418. - Don't kill off the reinit thread if it fails to init a GPU but returns safely.
  4419. - Only declare a GPU dead if there's been no sign of activity from the reinit
  4420. thread for 10 mins.
  4421. - Never automatically disable any pools but just specify them as idle if they're
  4422. unresponsive at startup.
  4423. - Use any longpoll available, and don't disable it if switching to a server that
  4424. doesn't have it. This allows you to mine solo, yet use the longpoll from a pool
  4425. even if the pool is the backup server.
  4426. - Display which longpoll failed and don't free the ram for lp_url since it
  4427. belongs to the pool hdr path.
  4428. - Make the tcp setsockopts unique to linux in the hope it allows freebsd et. al
  4429. to compile.
  4430. Version 1.5.6 - August 17, 2011
  4431. - New phatk and poclbm kernels. Updated phatk to be in sync with latest 2.2
  4432. courtesy of phateus. Custom modified to work best with cgminer.
  4433. - Updated output buffer code to use a smaller buffer with the kernels.
  4434. - Clean up the longpoll management to ensure the right paths go to the right
  4435. pool and display whether we're connected to LP or not in the status line.
  4436. Version 1.5.5 - August 16, 2011
  4437. - Rework entirely the GPU restart code. Strike a balance between code that
  4438. re-initialises the GPU entirely so that soft hangs in the code are properly
  4439. managed, but if a GPU is completely hung, the thread restart code fails
  4440. gracefully, so that it does not take out any other code or devices. This will
  4441. allow cgminer to keep restarting GPUs that can be restarted, but continue
  4442. mining even if one or more GPUs hangs which would normally require a reboot.
  4443. - Add --submit-stale option which submits all shares, regardless of whether they
  4444. would normally be considered stale.
  4445. - Keep options in alphabetical order.
  4446. - Probe for slightly longer for when network conditions are lagging.
  4447. - Only display the CPU algo when we're CPU mining.
  4448. - As we have keepalives now, blaming network flakiness on timeouts appears to
  4449. have been wrong. Set a timeout for longpoll to 1 hour, and most other
  4450. network connectivity to 1 minute.
  4451. - Simplify output code and remove HW errors from CPU stats.
  4452. - Simplify code and tidy output.
  4453. - Only show cpu algo in summary if cpu mining.
  4454. - Log summary at the end as per any other output.
  4455. - Flush output.
  4456. - Add a linux-usb-cgminer guide courtesy of Kano.
  4457. Version 1.5.4 - August 14, 2011
  4458. - Add new option: --monitor <cmd> Option lets user specify a command <cmd> that
  4459. will get forked by cgminer on startup. cgminer's stderr output subsequently gets
  4460. piped directly to this command.
  4461. - Allocate work from one function to be able to initialise variables added
  4462. later.
  4463. - Add missing fflush(stdout) for --ndevs and conclusion summary.
  4464. - Preinitialise the devices only once on startup.
  4465. - Move the non cl_ variables into the cgpu info struct to allow creating a new
  4466. cl state on reinit, preserving known GPU variables.
  4467. - Create a new context from scratch in initCQ in case something was corrupted to
  4468. maximise our chance of succesfully creating a new worker thread. Hopefully this
  4469. makes thread restart on GPU failure more reliable, without hanging everything
  4470. in the case of a completely wedged GPU.
  4471. - Display last initialised time in gpu management info, to know if a GPU has
  4472. been re-initialised.
  4473. - When pinging a sick cpu, flush finish and then ping it in a separate thread in
  4474. the hope it recovers without needing a restart, but without blocking code
  4475. elsewhere.
  4476. - Only consider a pool lagging if we actually need the work and we have none
  4477. staged despite queue requests stacking up. This decreases significantly the
  4478. amount of work that leaks to the backup pools.
  4479. - The can_roll function fails inappropriately in stale_work.
  4480. - Only put the message that a pool is down if not pinging it every minute. This
  4481. prevents cgminer from saying pool down at 1 minute intervals unless in debug
  4482. mode.
  4483. - Free all work in one place allowing us to perform actions on it in the future.
  4484. - Remove the extra shift in the output code which was of dubious benefit. In
  4485. fact in cgminer's implementation, removing this caused a miniscule speedup.
  4486. - Test each work item to see if it can be rolled instead of per-pool and roll
  4487. whenever possible, adhering to the 60 second timeout. This makes the period
  4488. after a longpoll have smaller dips in throughput, as well as requiring less
  4489. getworks overall thus increasing efficiency.
  4490. - Stick to rolling only work from the current pool unless we're in load balance
  4491. mode or lagging to avoid aggressive rolling imitating load balancing.
  4492. - If a work item has had any mining done on it, don't consider it discarded
  4493. work.
  4494. Version 1.5.3 - July 30, 2011
  4495. - Significant work went into attempting to make the thread restart code robust
  4496. to identify sick threads, tag them SICK after 1 minute, then DEAD after 5
  4497. minutes of inactivity and try to restart them. Instead of re-initialising the
  4498. GPU completely, only a new cl context is created to avoid hanging the rest of
  4499. the GPUs should the dead GPU be hung irrevocably.
  4500. - Use correct application name in syslog.
  4501. - Get rid of extra line feeds.
  4502. - Use pkg-config to check for libcurl version
  4503. - Implement per-thread getwork count with proper accounting to not over-account
  4504. queued items when local work replaces it.
  4505. - Create a command queue from the program created from source which allows us
  4506. to flush the command queue in the hope it will not generate a zero sized binary
  4507. any more.
  4508. - Be more willing to get work from the backup pools if the work is simply being
  4509. queued faster than it is being retrieved.
  4510. Version 1.5.2 - July 28, 2011
  4511. - Restarting a hung GPU can hang the rest of the GPUs so just declare it dead
  4512. and provide the information in the status.
  4513. - The work length in the miner thread gets smaller but doesn't get bigger if
  4514. it's under 1 second. This could end up leading to CPU under-utilisation and
  4515. lower and lower hash rates. Fix it by increasing work length if it drops
  4516. under 1 second.
  4517. - Make the "quiet" mode still update the status and display errors, and add a
  4518. new --real-quiet option which disables all output and can be set once while
  4519. running.
  4520. - Update utility and efficiency figures when displaying them.
  4521. - Some Intel HD graphics support the opencl commands but return errors since
  4522. they don't support opencl. Don't fail with them, just provide a warning and
  4523. disable GPU mining.
  4524. - Add http:// if it's not explicitly set for URL entries.
  4525. - Log to the output file at any time with warnings and errors, instead of just
  4526. when verbose mode is on.
  4527. - Display the correct current hash as per blockexplorer, truncated to 16
  4528. characters, with just the time.
  4529. Version 1.5.1 - July 27, 2011
  4530. - Two redraws in a row cause a crash in old libncurses so just do one redraw
  4531. using the main window.
  4532. - Don't adjust hash_div only up for GPUs. Disable hash_div adjustment for GPUs.
  4533. - Only free the thread structures if the thread still exists.
  4534. - Update both windows separately, but not at the same time to prevent the double
  4535. refresh crash that old libncurses has. Do the window resize check only when
  4536. about to redraw the log window to minimise ncurses cpu usage.
  4537. - Abstract out the decay time function and use it to make hash_div a rolling
  4538. average so it doesn't change too abruptly and divide work in chunks large enough
  4539. to guarantee they won't overlap.
  4540. - Sanity check to prove locking.
  4541. - Don't take more than one lock at a time.
  4542. - Make threads report out when they're queueing a request and report if they've
  4543. failed.
  4544. - Make cpu mining work submission asynchronous as well.
  4545. - Properly detect stale work based on time from staging and discard instead of
  4546. handing on, but be more lax about how long work can be divided for up to the
  4547. scantime.
  4548. - Do away with queueing work separately at the start and let each thread grab
  4549. its own work as soon as it's ready.
  4550. - Don't put an extra work item in the queue as each new device thread will do so
  4551. itself.
  4552. - Make sure to decrease queued count if we discard the work.
  4553. - Attribute split work as local work generation.
  4554. - If work has been cloned it is already at the head of the list and when being
  4555. reinserted into the queue it should be placed back at the head of the list.
  4556. - Dividing work is like the work is never removed at all so treat it as such.
  4557. However the queued bool needs to be reset to ensure we *can* request more work
  4558. even if we didn't initially.
  4559. - Make the display options clearer.
  4560. - Add debugging output to tq_push calls.
  4561. - Add debugging output to all tq_pop calls.
  4562. Version 1.5.0 - July 26, 2011
  4563. - Increase efficiency of slow mining threads such as CPU miners dramatically. Do
  4564. this by detecting which threads cannot complete searching a work item within the
  4565. scantime and then divide up a work item into multiple smaller work items.
  4566. Detect the age of the work items and if they've been cloned before to prevent
  4567. doing the same work over. If the work is too old to be divided, then see if it
  4568. can be time rolled and do that to generate work. This dramatically decreases the
  4569. number of queued work items from a pool leading to higher overall efficiency
  4570. (but the same hashrate and share submission rate).
  4571. - Don't request work too early for CPUs as CPUs will scan for the full
  4572. opt_scantime anyway.
  4573. - Simplify gpu management enable/disable/restart code.
  4574. - Implement much more accurate rolling statistics per thread and per gpu and
  4575. improve accuracy of rolling displayed values.
  4576. - Make the rolling log-second average more accurate.
  4577. - Add a menu to manage GPUs on the fly allowing you to enable/disable GPUs or
  4578. try restarting them.
  4579. - Keep track of which GPUs are alive versus enabled.
  4580. - Start threads for devices that are even disabled, but don't allow them to
  4581. start working.
  4582. - The last pool is when we are low in total_pools, not active_pools.
  4583. - Make the thread restart do a pthread_join after disabling the device, only
  4584. re-enabling it if we succeed in restarting the thread. Do this from a separate
  4585. thread so as to not block any other code.This will allow cgminer to continue
  4586. even if one GPU hangs.
  4587. - Try to do every curses manipulation under the curses lock.
  4588. - Only use the sockoptfunction if the version of curl is recent enough.
  4589. Version 1.4.1 - July 24, 2011
  4590. - Do away with GET for dealing with longpoll forever. POST is the one that works
  4591. everywhere, not the other way around.
  4592. - Detect when the primary pool is lagging and start queueing requests on backup
  4593. pools if possible before needing to roll work.
  4594. - Load balancing puts more into the current pool if there are disabled pools.
  4595. Fix.
  4596. - Disable a GPU device should the thread fail to init.
  4597. - Out of order command queue may fail on osx. Try without if it fails.
  4598. - Fix possible dereference on blank inputs during input_pool.
  4599. - Defines missing would segfault on --help when no sse mining is built in.
  4600. - Revert "Free up resources/stale compilers." - didn't help.
  4601. - Only try to print the status of active devices or it would crash.
  4602. - Some hardware might benefit from the less OPS so there's no harm in leaving
  4603. kernel changes that do that apart from readability of the code.
  4604. Version 1.4.0 - July 23, 2011
  4605. - Feature upgrade: Add keyboard input during runtime to allow modification of
  4606. and viewing of numerous settings such as adding/removing pools, changing
  4607. multipool management strategy, switching pools, changing intensiy, verbosity,
  4608. etc. with a simple keypress menu system.
  4609. - Free up resources/stale compilers.
  4610. - Kernels are safely flushed in a way that allows out of order execution to
  4611. work.
  4612. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  4613. seems to fix it.
  4614. - Don't try to stop/cancel threads that don't exist.
  4615. - Only set option to show devices and exit if built with opencl support.
  4616. - Enable curses earlier and exit with message in main for messages to not be
  4617. lost in curses windows.
  4618. - Make it possible to enter server credentials with curses input if none are
  4619. specified on the command line.
  4620. - Abstract out a curses input function and separate input pool function to allow
  4621. for live adding of pools later.
  4622. - Remove the nil arguments check to allow starting without parameters.
  4623. - Disable/enable echo & cbreak modes.
  4624. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  4625. verbose, normal, rpc protocol debugging and clear screen options.
  4626. - Add pool option to input and display current pool status, pending code to
  4627. allow live changes.
  4628. - Add a bool for explicit enabling/disabling of pools.
  4629. - Make input pool capable of bringing up pools while running.
  4630. - Do one last check of the work before submitting it.
  4631. - Implement the ability to live add, enable, disable, and switch to pools.
  4632. - Only internally test for block changes when the work matches the current pool
  4633. to prevent interleaved block change timing on multipools.
  4634. - Display current pool management strategy to enable changing it on the fly.
  4635. - The longpoll blanking of the current_block data may not be happening before
  4636. the work is converted and appears to be a detected block change. Blank the
  4637. current block be
  4638. - Make --no-longpoll work again.
  4639. - Abstract out active pools count.
  4640. - Allow the pool strategy to be modified on the fly.
  4641. - Display pool information on the fly as well.
  4642. - Add a menu and separate out display options.
  4643. - Clean up the messy way the staging thread communicates with the longpoll
  4644. thread to determine who found the block first.
  4645. - Make the input windows update immediately instead of needing a refresh.
  4646. - Allow log interval to be set in the menu.
  4647. - Allow scan settings to be modified at runtime.
  4648. - Abstract out the longpoll start and explicitly restart it on pool change.
  4649. - Make it possible to enable/disable longpoll.
  4650. - Set priority correctly on multipools. Display priority and alive/dead
  4651. information in display_pools.
  4652. - Implement pool removal.
  4653. - Limit rolltime work generation to 10 iterations only.
  4654. - Decrease testing log to info level.
  4655. - Extra refresh not required.
  4656. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  4657. - Tell getwork how much of a work item we're likely to complete for future
  4658. splitting up of work.
  4659. - Remove the mandatory work requirement at startup by testing for invalid work
  4660. being passed which allows for work to be queued immediately. This also
  4661. removes the requirem
  4662. - Make sure intensity is carried over to thread count and is at least the
  4663. minimum necessary to work.
  4664. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  4665. - Clear log window from consistent place. No need for locking since logging is
  4666. disabled during input.
  4667. - Cannot print the status of threads that don't exist so just queue enough work
  4668. for the number of mining threads to prevent crash with -Q N.
  4669. - Update phatk kernel to one with new parameters for slightly less overhead
  4670. again. Make the queue kernel parameters call a function pointer to select
  4671. phatk or poclbm.
  4672. - Make it possible to select the choice of kernel on the command line.
  4673. - Simplify the output part of the kernel. There's no demonstrable advantage from
  4674. more complexity.
  4675. - Merge pull request #18 from ycros/cgminer
  4676. - No need to make leaveok changes win32 only.
  4677. - Build support in for all SSE if possible and only set the default according to
  4678. machine capabilities.
  4679. - Win32 threading and longpoll keepalive fixes.
  4680. - Win32: Fix for mangled output on the terminal on exit.
  4681. Version 1.3.1 - July 20, 2011
  4682. - Feature upgrade; Multiple strategies for failover. Choose from default which
  4683. now falls back to a priority order from 1st to last, round robin which only
  4684. changes pools when one is idle, rotate which changes pools at user-defined
  4685. intervals, and load-balance which spreads the work evenly amongst all pools.
  4686. - Implement pool rotation strategy.
  4687. - Implement load balancing algorithm by rotating requests to each pool.
  4688. - Timeout on failed discarding of staged requests.
  4689. - Implement proper flagging of idle pools, test them with the watchdog thread,
  4690. and failover correctly.
  4691. - Move pool active test to own function.
  4692. - Allow multiple strategies to be set for multipool management.
  4693. - Track pool number.
  4694. - Don't waste the work items queued on testing the pools at startup.
  4695. - Reinstate the mining thread watchdog restart.
  4696. - Add a getpoll bool into the thread information and don't restart threads stuck
  4697. waiting on work.
  4698. - Rename the idlenet bool for the pool for later use.
  4699. - Allow the user/pass userpass urls to be input in any order.
  4700. - When json rpc errors occur they occur in spits and starts, so trying to limit
  4701. them with the comms error bool doesn't stop a flood of them appearing.
  4702. - Reset the queued count to allow more work to be queued for the new pool on
  4703. pool switch.
  4704. Version 1.3.0 - July 19, 2011
  4705. - Massive infrastructure update to support pool failover.
  4706. - Accept multiple parameters for url, user and pass and set up structures of
  4707. pool data accordingly.
  4708. - Probe each pool for what it supports.
  4709. - Implement per pool feature support according to rolltime support as
  4710. advertised by server.
  4711. - Do switching automatically based on a 300 second timeout of locally generated
  4712. work or 60 seconds of no response from a server that doesn't support rolltime.
  4713. - Implement longpoll server switching.
  4714. - Keep per-pool data and display accordingly.
  4715. - Make sure cgminer knows how long the pool has actually been out for before
  4716. deeming it a prolonged outage.
  4717. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  4718. infinite rejects.
  4719. - Make warning about empty http requests not show by default since many
  4720. servers do this regularly.
  4721. Version 1.2.8 - July 18, 2011
  4722. - More OSX build fixes.
  4723. - Add an sse4 algorithm to CPU mining.
  4724. - Fix CPU mining with other algorithms not working.
  4725. - Rename the poclbm file to ensure a new binary is built since.
  4726. - We now are guaranteed to have one fresh work item after a block change and we
  4727. should only discard staged requests.
  4728. - Don't waste the work we retrieve from a longpoll.
  4729. - Provide a control lock around global bools to avoid racing on them.
  4730. - Iterating over 1026 nonces when confirming data from the GPU is old code
  4731. and unnecessary and can lead to repeats/stales.
  4732. - The poclbm kernel needs to be updated to work with the change to 4k sized
  4733. output buffers.
  4734. - longpoll seems to work either way with post or get but some servers prefer
  4735. get so change to httpget.
  4736. Version 1.2.7 - July 16, 2011
  4737. - Show last 8 characters of share submitted in log.
  4738. - Display URL connected to and user logged in as in status.
  4739. - Display current block and when it was started in the status line.
  4740. - Only pthread_join the mining threads if they exist as determined by
  4741. pthread_cancel and don't fail on pthread_cancel.
  4742. - Create a unique work queue for all getworks instead of binding it to thread 0
  4743. to avoid any conflict over thread 0's queue.
  4744. - Clean up the code to make it clear it's watchdog thread being messaged to
  4745. restart the threads.
  4746. - Check the current block description hasn't been blanked pending the real
  4747. new current block data.
  4748. - Re-enable signal handlers once the signal has been received to make it
  4749. possible to kill cgminer if it fails to shut down.
  4750. - Disable restarting of CPU mining threads pending further investigation.
  4751. - Update longpoll messages.
  4752. - Add new block data to status line.
  4753. - Fix opencl tests for osx.
  4754. - Only do local generation of work if the work item is not stale itself.
  4755. - Check for stale work within the mining threads and grab new work if
  4756. positive.
  4757. - Test for idle network conditions and prevent threads from being restarted
  4758. by the watchdog thread under those circumstances.
  4759. - Make sure that local work generation does not continue indefinitely by
  4760. stopping it after 10 minutes.
  4761. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  4762. nonce value instead of a compare and loop for a shorter code path.
  4763. - Allow queue of zero and make that default again now that we can track how
  4764. work is being queued versus staged. This can decrease reject rates.
  4765. - Queue precisely the number of mining threads as longpoll_staged after a
  4766. new block to not generate local work.
  4767. Version 1.2.6 - July 15, 2011
  4768. - Put a current system status line beneath the total work status line
  4769. - Fix a counting error that would prevent cgminer from correctly detecting
  4770. situations where getwork was failing - this would cause stalls sometimes
  4771. unrecoverably.
  4772. - Limit the maximum number of requests that can be put into the queue which
  4773. otherwise could get arbitrarily long during a network outage.
  4774. - Only count getworks that are real queue requests.
  4775. Version 1.2.5 - July 15, 2011
  4776. - Conflicting -n options corrected
  4777. - Setting an intensity with -I disables dynamic intensity setting
  4778. - Removed option to manually disable dynamic intensity
  4779. - Improve display output
  4780. - Implement signal handler and attempt to clean up properly on exit
  4781. - Only restart threads that are not stuck waiting on mandatory getworks
  4782. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  4783. - Explicitly grab first work item to prevent false positive hardware errors
  4784. due to working on uninitialised work structs
  4785. - Add option for non curses --text-only output
  4786. - Ensure we connect at least once successfully before continuing to retry to
  4787. connect in case url/login parameters were wrong
  4788. - Print an executive summary when cgminer is terminated
  4789. - Make sure to refresh the status window
  4790. Versions -> 1.2.4
  4791. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  4792. - Massive rewrite to incorporate GPU mining.
  4793. - Incorporate original oclminer c code.
  4794. - Rewrite gpu mining code to efficient work loops.
  4795. - Implement per-card detection and settings.
  4796. - Implement vector code.
  4797. - Implement bfi int patching.
  4798. - Import poclbm and phatk ocl kernels and use according to hardware type.
  4799. - Implement customised optimised versions of opencl kernels.
  4800. - Implement binary kernel generation and loading.
  4801. - Implement preemptive asynchronous threaded work gathering and pushing.
  4802. - Implement variable length extra work queues.
  4803. - Optimise workloads to be efficient miners instead of getting lots of extra
  4804. work.
  4805. - Implement total hash throughput counters, per-card accepted, rejected and
  4806. hw error count.
  4807. - Staging and watchdog threads to prevent fallover.
  4808. - Stale and reject share guarding.
  4809. - Autodetection of new blocks without longpoll.
  4810. - Dynamic setting of intensity to maintain desktop interactivity.
  4811. - Curses interface with generous statistics and information.
  4812. - Local generation of work (xroll ntime) when detecting poor network
  4813. connectivity.
  4814. Version 1.0.2
  4815. - Linux x86_64 optimisations - Con Kolivas
  4816. - Optimise for x86_64 by default by using sse2_64 algo
  4817. - Detects CPUs and sets number of threads accordingly
  4818. - Uses CPU affinity for each thread where appropriate
  4819. - Sets scheduling policy to lowest possible
  4820. - Minor performance tweaks
  4821. Version 1.0.1 - May 14, 2011
  4822. - OSX support
  4823. Version 1.0 - May 9, 2011
  4824. - jansson 2.0 compatibility
  4825. - correct off-by-one in date (month) display output
  4826. - fix platform detection
  4827. - improve yasm configure bits
  4828. - support full URL, in X-Long-Polling header
  4829. Version 0.8.1 - March 22, 2011
  4830. - Make --user, --pass actually work
  4831. - Add User-Agent HTTP header to requests, so that server operators may
  4832. more easily identify the miner client.
  4833. - Fix minor bug in example JSON config file
  4834. Version 0.8 - March 21, 2011
  4835. - Support long polling: http://deepbit.net/longpolling.php
  4836. - Adjust max workload based on scantime (default 5 seconds,
  4837. or 60 seconds for longpoll)
  4838. - Standardize program output, and support syslog on Unix platforms
  4839. - Suport --user/--pass options (and "user" and "pass" in config file),
  4840. as an alternative to the current --userpass
  4841. Version 0.7.2 - March 14, 2011
  4842. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  4843. This is a substantial speed improvement on Intel CPUs.
  4844. - Move all JSON-RPC I/O to separate thread. This reduces the
  4845. number of HTTP connections from one-per-thread to one, reducing resource
  4846. usage on upstream bitcoind / pool server.
  4847. Version 0.7.1 - March 2, 2011
  4848. - Add support for JSON-format configuration file. See example
  4849. file example-cfg.json. Any long argument on the command line
  4850. may be stored in the config file.
  4851. - Timestamp each solution found
  4852. - Improve sha256_4way performance. NOTE: This optimization makes
  4853. the 'hash' debug-print output for sha256_way incorrect.
  4854. - Use __builtin_expect() intrinsic as compiler micro-optimization
  4855. - Build on Intel compiler
  4856. - HTTP library now follows HTTP redirects
  4857. Version 0.7 - February 12, 2011
  4858. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  4859. - Use bswap_32, if compiler intrinsic is not available
  4860. - Disable full target validation (as opposed to simply H==0) for now
  4861. Version 0.6.1 - February 4, 2011
  4862. - Fully validate "hash < target", rather than simply stopping our scan
  4863. if the high 32 bits are 00000000.
  4864. - Add --retry-pause, to set length of pause time between failure retries
  4865. - Display proof-of-work hash and target, if -D (debug mode) enabled
  4866. - Fix max-nonce auto-adjustment to actually work. This means if your
  4867. scan takes longer than 5 seconds (--scantime), the miner will slowly
  4868. reduce the number of hashes you work on, before fetching a new work unit.
  4869. Version 0.6 - January 29, 2011
  4870. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  4871. - BeeCee1's sha256 4way optimizations
  4872. - lfm's byte swap optimization (improves via, cryptopp)
  4873. - Fix non-working short options -q, -r
  4874. Version 0.5 - December 28, 2010
  4875. - Exit program, when all threads have exited
  4876. - Improve JSON-RPC failure diagnostics and resilience
  4877. - Add --quiet option, to disable hashmeter output.
  4878. Version 0.3.3 - December 27, 2010
  4879. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  4880. Version 0.3.2 - December 23, 2010
  4881. - Critical fix for sha256_via
  4882. Version 0.3.1 - December 19, 2010
  4883. - Critical fix for sha256_via
  4884. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  4885. Version 0.3 - December 18, 2010
  4886. - Add crypto++ 32bit assembly implementation
  4887. - show version upon 'minerd --help'
  4888. - work around gcc 4.5.x bug that killed 4way performance
  4889. Version 0.2.2 - December 6, 2010
  4890. - VIA padlock implementation works now
  4891. - Minor build and runtime fixes
  4892. Version 0.2.1 - November 29, 2010
  4893. - avoid buffer overflow when submitting solutions
  4894. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  4895. - minor internal optimizations and cleanups
  4896. Version 0.2 - November 27, 2010
  4897. - Add script for building a Windows installer
  4898. - improve hash performance (hashmeter) statistics
  4899. - add tcatm 4way sha256 implementation
  4900. - Add experimental VIA Padlock sha256 implementation
  4901. Version 0.1.2 - November 26, 2010
  4902. - many small cleanups and micro-optimizations
  4903. - build win32 exe using mingw
  4904. - RPC URL, username/password become command line arguments
  4905. - remove unused OpenSSL dependency
  4906. Version 0.1.1 - November 24, 2010
  4907. - Do not build sha256_generic module separately from cpuminer.
  4908. Version 0.1 - November 24, 2010
  4909. - Initial release.