1. 18 Dec, 2014 1 commit
    • Chip Turner's avatar
      Improve benchmarking around stringPrintf functions · 6a1addcc
      Chip Turner authored
      Summary:
      Before optimizing this code, it is better to measure different
      aspects of it to ensure improvements are worth it and don'tintroduce
      other regressions.
      
      This adds a new benchmark as well as parameterizes an old one.
      
      Test Plan: run it
      
      Reviewed By: lovro@fb.com
      
      Subscribers: lins, anca, folly-diffs@
      
      FB internal diff: D1733760
      
      Tasks: 5735468
      
      Signature: t1:1733760:1418313479:9f572d5a4cf014bd266d91d0f7a75407d1514f65
      6a1addcc
  2. 11 Dec, 2014 39 commits
    • Dave Watson's avatar
      Bump version to 18:0 · 61e26ae9
      Dave Watson authored
      61e26ae9
    • James Sedgwick's avatar
      formatting nits in Executor.h · 6ecb0cd2
      James Sedgwick authored
      Summary:
      sorry this was bothering me
      also remove extra include
      
      Test Plan: OK
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: fugalh, folly-diffs@
      
      FB internal diff: D1733723
      
      Signature: t1:1733723:1418312030:088eb084f69e2bd7703724464b2f3e71abc2607a
      6ecb0cd2
    • James Sedgwick's avatar
      future_* callbacks in ThreadManager thread · c2132bba
      James Sedgwick authored
      Summary:
      This is a squashed diff consisting of the following approved diffs
      
      D1714007
      D1714645
      D1715686
      D1719963
      D1720725
      D1721838
      D1721856
      D1721920
      D1721956
      D1724910
      D1728289
      
      - execute future_* handlers in TM thread
      - call async thrift clients from any thread, not just EB thread
      - store a request's EventBase in the RequestContext for easier client management
      * this last one will change in favor of using a global IO executor but this should still land as an intermediate step. See D1727894
      
      Test Plan: see component diff test plans. otherwise, contbuild.
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: trunkagent, ruibalp, targeting-diff-backend@, hannesr, alandau, prometheus-diffs@, jeremyfein, mshneer, folly-diffs@, bmatheny, tingy
      
      FB internal diff: D1732289
      
      Tasks: 5003045, 5645785
      
      Signature: t1:1732289:1418253508:30b724a91717cf7fe21029e0a1eaf239db1650be
      c2132bba
    • Nicholas Ormrod's avatar
      ConcurrentSkipList Bug · eae5ede6
      Nicholas Ormrod authored
      Summary:
      Bug reported by Yan Lin (not a facebook employee) through @robbert.
      
      @philipp and @jdelong: you are the only two remaining facebookers to have
      made non-trivial changes to this code.
      
      Description of bug: layer 0 is 1->4, and we're looking for 3. We pass
      over 4, and see that 1 is less than 3 in the for loop. Now a race
      condition: another thread inserts 2, so layer 0 is now 1->2->3. Then,
      since ht==0, we return pred->skip(0), which is now 2 instead of 4.
      
      Why this is bad: it really breaks the lower_bound function (lower_bound
      calls findNode calls findNodeDownRight), since it returns an element
      that is lesser.
      
      This patch doesn't change the behavior of the code in the normal case;
      it just recycles previously-computed values so that this race condition
      doesn't crash and burn.
      
      Patch based off of Yan Lin's in-email suggestion.
      
      Test Plan:
      fbconfig -r folly && fbmake runtests
      
      Reviewed By: philipp@fb.com
      
      Subscribers: sdwilsh, folly-diffs@, jdelong, robbert, philipp
      
      FB internal diff: D1732434
      
      Signature: t1:1732434:1418260198:8c707435825cfa2a1093b681e066f320193e98f2
      eae5ede6
    • Brian Watling's avatar
      Fix clang compilation · df5336c8
      Brian Watling authored
      Summary: Fix shadowed variable name
      
      Test Plan: compile
      
      Reviewed By: mmandal@fb.com
      
      Subscribers: fugalh, mathieubaudet, folly-diffs@
      
      FB internal diff: D1732033
      
      Signature: t1:1732033:1418250864:d460fea376ac93c05b86977629b95dac60b8b916
      df5336c8
    • Dave Watson's avatar
      Only test multi accept if reuse port supported · 4ffad0ef
      Dave Watson authored
      Summary: Some contbuild machines aren't on 3.10 yet.
      
      Test Plan:
      fbconfig folly/experimental/wangle/bootstrap; fbmake runtests
      tested on 3.2 and 3.10
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: doug, fugalh, folly-diffs@
      
      FB internal diff: D1732040
      
      Tasks: 5800250
      
      Signature: t1:1732040:1418250452:a3203ab5769494594f2bf0b50f1c62052ddeb24c
      4ffad0ef
    • Sean Cannella's avatar
      Support -Wsign-compare compilation · db376afe
      Sean Cannella authored
      Summary:
      Due to how Conv.h uses the less_than template inside
      not-actually-static static ifs clang still ends up validating generated
      code inside a FOLLY_RANGE_CHECK which is never executed due to the
      templated types. This code however still generates -Wsign-compare issues
      so suppress that in order to allow includers to use this flag.
      
      A simple example will illustrate this:
      
      uint64_t foo = 1;
      int bar = folly::to<int>(foo);
      
      Test Plan: fbmake runtests
      
      Reviewed By: meyering@fb.com, njormrod@fb.com
      
      Subscribers: trunkagent, folly-diffs@, bmatheny, ranjeeth, subodh, kmdent, fma, shikong, pgriess, jdelong
      
      FB internal diff: D1731411
      
      Signature: t1:1731411:1418243200:ed1f34a1485669c9cb18f9f6029aca70e498953c
      db376afe
    • Brian Watling's avatar
      Use an IO thread pool executor by default · 25e200e2
      Brian Watling authored
      Summary:
      Remove member variable name shadowing
      
      Facebook: This diff adds a default executor for async requests which do not specify one. This ensures we don't run request callbacks on the event threads (which in turn ensures we don't make blocking tcc calls from the event threads)
      
      Test Plan: fbconfig tao/client; fbmake runtests
      
      Reviewed By: hannesr@fb.com
      
      Subscribers: hannesr, fugalh, zhuohuang, folly-diffs@, tao-eng@
      
      FB internal diff: D1731078
      
      Tasks: 5752037
      
      Signature: t1:1731078:1418237801:5b9bbe74c288292d5e7c7e6a38e67be864627d89
      25e200e2
    • Adrian Hamza's avatar
      Add mock singleton injection support to folly/experimental Singleton (t5653148). · accea1ae
      Adrian Hamza authored
      Summary: Add mock singleton injection support to folly/experimental Singleton (t5653148).
      
      Test Plan:
      Added unit tests for MockSingleton, all unit tests passed.
      Validated this works for my scenario.
      
      Reviewed By: andrii@fb.com
      
      Subscribers: trunkagent, njormrod, folly-diffs@
      
      FB internal diff: D1690946
      
      Tasks: 5653148
      
      Signature: t1:1690946:1418080331:948d7051a5e5a2653dc393c123f188c56072c6db
      accea1ae
    • davejwatson's avatar
      Multi accept · e5f8a09e
      davejwatson authored
      Summary: Use acceptor pool instead of current thread for accepts.  Use reuse_port option to support multiple threads
      
      Test Plan: Updated unittests
      
      Reviewed By: hans@fb.com
      
      Subscribers: doug, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1710619
      
      Tasks: 5788110
      
      Signature: t1:1710619:1417477350:eee5063186e582ef74c4802b8149563af029b3de
      e5f8a09e
    • Philip Pronin's avatar
      fix Cursor::skipAtMostSlow bug introduced in D1724111 · 49374068
      Philip Pronin authored
      Test Plan: fbconfig -r folly/io/test && fbmake runtests_opt -j32
      
      Reviewed By: viswanath@fb.com
      
      Subscribers: folly-diffs@
      
      FB internal diff: D1728927
      
      Tasks: 5788015
      
      Signature: t1:1728927:1418161580:9ed66412e35c62486a56e19aa9bf119863b5f1a1
      
      Blame Revision: D1724111
      49374068
    • Dave Watson's avatar
      Add REUSEPORT option to AsyncServerSocket · 010f9408
      Dave Watson authored
      Summary:
      Adds a reuse port option to AsyncServerSocket, so multiple sockets can bind to the same accept port.  Allows for multiple accept threads, so accepts can be greater, since there is no longer a single accept lock.
      
      reuse port option is ifdefd, since this wouldn't build with some of the older kernels otherwise.
      
      Postponed overnight
      
      Test Plan: Builds.  Used in an upcoming diff.
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: benj, trunkagent, doug, njormrod, folly-diffs@
      
      FB internal diff: D1710600
      
      Tasks: 5488516, 5788110
      
      Signature: t1:1710600:1418066966:627e03857f9b5ff831f2922add08e90cc525c95c
      010f9408
    • Sean Cannella's avatar
      TransportInfo size mismatches · e43f826e
      Sean Cannella authored
      Summary:
      The code that uses TransportInfo assumes these byte counts are
      compatible with size_t so make them so.
      
      Test Plan: compiled
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: fugalh, bmatheny, njormrod, folly-diffs@, benyluo, ranjeeth, fma, kmdent
      
      FB internal diff: D1725026
      
      Tasks: 5538843
      
      Signature: t1:1725026:1418061933:b4072ca926e792716776ddc00d79db9376510859
      e43f826e
    • Dave Watson's avatar
      set internal thread factory · 2a15a6c6
      Dave Watson authored
      Summary: Fix up a TODO
      
      Test Plan: ??  Should I bother with a test?
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: doug, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1710633
      
      Signature: t1:1710633:1417469890:9e8513140bae79da384c9d5418d4ea0840efbe6c
      2a15a6c6
    • Dave Watson's avatar
      Set a better default for maxReadsPerEvent · 142752b4
      Dave Watson authored
      Summary:
      0 (infinity) seems like a bad default for this.  Just found a 2~5% latency win in thrift by setting this to something more reasonable.  Any reason not to set a better default globally?
      
      Since this is already on for mcrouter/proxygen/thrift, the biggest change would probably be service router
      
      tests postponed longer than 20 minutes
      
      Test Plan:
      thrift perf test, multifeed canary
      
      Canary URL: https://our.intern.facebook.com/intern/feedtools/mycanary?id=davejwatson_20141208-102635_local.1418063194_d201eceec04e5e097a6dffb645a424d502db8742_
      
      Reviewed By: afrind@fb.com
      
      Subscribers: doug, net-systems@, njormrod, folly-diffs@, jsedgwick, haijunz, andrewcox, alandau, fugalh
      
      FB internal diff: D1725142
      
      Signature: t1:1725142:1418066284:c2e1cbf27b0c7a98cf2395f369683bbcce4cdce4
      142752b4
    • Dave Watson's avatar
      Bump up log level · 3277708e
      Dave Watson authored
      Summary: This log was getting annoying in tests, bump up the logging level
      
      Test Plan: contbuild
      
      Reviewed By: afrind@fb.com
      
      Subscribers: trunkagent, doug, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1710608
      
      Signature: t1:1710608:1417468546:770dfb7201ff6477b349c01e638f704a2ef1b7ce
      3277708e
    • Shijin Kong's avatar
      fix local variable shadow · 61a454f2
      Shijin Kong authored
      Summary:
      D1720014 line 183 in HHWheelTimer.h broke proxygen/facebook/httpclient clang build:
      
      ./folly/io/async/HHWheelTimer.h:183:17: error: declaration shadows a local variable [-Werror,-Wshadow]
      Wrapper(F fn) : fn_(std::move(fn)) {}
      ^
      ./folly/io/async/HHWheelTimer.h:181:28: note: previous declaration is here
      void scheduleTimeoutFn(F fn, std::chrono::milliseconds timeout) {
      
      I renamed the `fn` in `Wrapper` to `f`.
      
      Test Plan: pass
      
      Reviewed By: seanc@fb.com
      
      Subscribers: njormrod, folly-diffs@, subodh, seanc, kmdent, fma
      
      FB internal diff: D1724835
      
      Signature: t1:1724835:1418052896:d9a72230d4fd1a4a734a33142966fe796f4fd362
      61a454f2
    • Philip Pronin's avatar
      improve io::Cursor read() performance for small sizeof(T) · 173356a3
      Philip Pronin authored
      Summary:
      I just found that gcc (4.8.2) failed to unroll the loop in
      `pullAtMost()`, so it didn't replace `memcpy` with a simple load
      for small `len`.
      
      Test Plan:
      fbconfig -r folly/io/test thrift/lib/cpp2/test && fbmake runtests_opt -j32
      
      Ran unicorn-specific thrift deserialization benchmark from
      D1724070, verified 50% improvement in `SearchRequest` deserialization
      performance.
      
      `thrift/lib/cpp2/test/ProtocolBench` results:
      
      ```
      |---- before -----| |---- after  -----|
      ================================================================================================
      thrift/lib/cpp2/test/ProtocolBench.cpp          relative  time/iter  iters/s  time/iter  iters/s
      ================================================================================================
      BinaryProtocol_read_Empty                                   21.72ns   46.04M    17.58ns   56.89M
      BinaryProtocol_read_SmallInt                                43.03ns   23.24M    23.64ns   42.30M
      BinaryProtocol_read_BigInt                                  43.72ns   22.87M    22.03ns   45.38M
      BinaryProtocol_read_SmallString                             88.57ns   11.29M    47.01ns   21.27M
      BinaryProtocol_read_BigString                              365.76ns    2.73M   323.58ns    3.09M
      BinaryProtocol_read_BigBinary                              207.78ns    4.81M   169.09ns    5.91M
      BinaryProtocol_read_LargeBinary                            187.81ns    5.32M   172.09ns    5.81M
      BinaryProtocol_read_Mixed                                  161.18ns    6.20M    68.41ns   14.62M
      BinaryProtocol_read_SmallListInt                           177.32ns    5.64M    96.91ns   10.32M
      BinaryProtocol_read_BigListInt                              77.03us   12.98K    15.88us   62.97K
      BinaryProtocol_read_BigListMixed                             1.79ms   557.79   923.99us    1.08K
      BinaryProtocol_read_LargeListMixed                         195.01ms     5.13   103.78ms     9.64
      ================================================================================================
      ```
      
      Reviewed By: soren@fb.com
      
      Subscribers: alandau, bmatheny, mshneer, trunkagent, njormrod, folly-diffs@
      
      FB internal diff: D1724111
      
      Tasks: 5770136
      
      Signature: t1:1724111:1417977810:b7d643d0c819a0bbac77fa0048206153929e50a8
      173356a3
    • Sean Cannella's avatar
      Make ThreadLocal identifiers consistent · 2bda6641
      Sean Cannella authored
      Summary:
      Implicitly bouncing between size_t and int for identifiers
      causes problems when building on 64-bit iOS. Fix this.
      
      Test Plan: fbmake runtests
      
      Reviewed By: meyering@fb.com, njormrod@fb.com
      
      Subscribers: trunkagent, njormrod, folly-diffs@, fma, kmdent, shikong, pgriess
      
      FB internal diff: D1722061
      
      Signature: t1:1722061:1417819039:8e3938cf8d4d241551ed3dd3978c1b11f57398c5
      2bda6641
    • Andrii Grynenko's avatar
      Revert "Revert "Make folly::Singleton's destruction happen earlier"" · 96e52d24
      Andrii Grynenko authored
      Summary:
      This reverts commit 7871df125fc1fbe5d8030a41e21b8241b25d4e62.
      
      As explained in t5763478, I don't see good reason for a revert.
      Also the errors under question shouldn't show up after D1720841.
      
      Test Plan: revert-hammer
      
      Reviewed By: stepan@fb.com
      
      Subscribers: njormrod, folly-diffs@
      
      FB internal diff: D1722928
      
      Tasks: 5763478
      
      Signature: t1:1722928:1417818663:1fe402d14c0cf389fb3611355db270c5f2c33738
      96e52d24
    • Hans Fugal's avatar
      More logging in HHWheelTimer::scheduleTimeoutFn · cb3f8bf3
      Hans Fugal authored
      Summary:
      This was supposed to be an update to D1720014 but I screwed up with arc.
      
      Test Plan: run the test by hand and see the output
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: exa, njormrod, folly-diffs@
      
      FB internal diff: D1721951
      
      Signature: t1:1721951:1417801009:72a27ec2ca473a996785ff9cae48bd51a43d9045
      cb3f8bf3
    • Hans Fugal's avatar
      s/makeFuture().via/via/ · bd2552f1
      Hans Fugal authored
      Summary:
      codemod to replace all `makeFuture().via` with just `via`.
      
      Test Plan: contbuild
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: trunkagent, zeus-diffs@, targeting-diff-backend@, abirchall, fugalh, msk, exa, benj, njormrod, folly-diffs@
      
      FB internal diff: D1715876
      
      Signature: t1:1715876:1417712302:b882916d394f90caa23bd73fa68b8f786af649e3
      bd2552f1
    • Hans Fugal's avatar
      via and activate/deactivate chaining · f2ae6aa7
      Hans Fugal authored
      Summary:
      Better support and test chaining of `via` and `activate`/`deactivate`.
      
      The real problem is that without the ref qualifier a multiple chain of lvalue references can end up with a destructed object being referenced after.
      
      https://akrzemi1.wordpress.com/2014/06/02/ref-qualifiers/
      
      Test Plan:
      This is mostly new tests that would fail and now pass.
      I think maybe the tests are a bit weak, it would be good to find a way to ensure we aren't going to see the access-after-free bugs in these tests.
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: trunkagent, fugalh, exa, njormrod, folly-diffs@
      
      FB internal diff: D1714873
      
      Tasks: 5489801
      
      Signature: t1:1714873:1417628538:9e610c5ba5e0a22c19a11d53aa956be45d585058
      f2ae6aa7
    • Hans Fugal's avatar
      Remove Later · a6eb914b
      Hans Fugal authored
      Summary: dalek-exterminate
      
      Test Plan:
      Moved `Later` tests to `via` tests.
      fbgs
      contbuild
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: fbcode-common-diffs@, adityab, lins, trunkagent, fugalh, exa, njormrod, folly-diffs@, hannesr
      
      FB internal diff: D1714862
      
      Tasks: 5409538
      
      Signature: t1:1714862:1417621949:f63f49e1093a021170d2346e8e673db042d2bc56
      a6eb914b
    • Hans Fugal's avatar
      HHWheelTimer::scheduleTimeoutFn · 11329181
      Hans Fugal authored
      Summary:
      cpp11ify
      
      I'm gonna use this for Wangle timeouts.
      
      Test Plan:
      new unit test
      _bin/folly/io/async/test/HHWheelTimerTest
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: trunkagent, exa, njormrod, folly-diffs@
      
      FB internal diff: D1720014
      
      Tasks: 5002969
      
      Signature: t1:1720014:1417732753:ddcad431b6c305c9ba27f6b9e3454ab158c13f4b
      11329181
    • Bartosz Nitka's avatar
      Revert "Make folly::Singleton's destruction happen earlier" · 4399c9e4
      Bartosz Nitka authored
      Summary: This reverts commit 6584412293cc5b9aad2004e99d550e3478df1e5d.
      
      Test Plan: thisisrevert
      
      Reviewed By: smarlow@fb.com
      
      Subscribers: njormrod, folly-diffs@
      
      FB internal diff: D1721739
      
      Signature: t1:1721739:1417786147:01aaaf50b679da7942b2a30ad039eb0ac1031430
      4399c9e4
    • Nicholas Ormrod's avatar
      include gflags header in SSLSessionCacheManager · 8f9cc411
      Nicholas Ormrod authored
      Summary:
      SSLSessionCacheManager uses glfags but doesn't include it. This
      breaks on some systems.
      
      Test Plan: fbconfig -r folly && fbmake runtests
      
      Reviewed By: robbert@fb.com
      
      Subscribers: trunkagent, sdwilsh, fugalh, ssl-diffs@, njormrod, folly-diffs@
      
      FB internal diff: D1716997
      
      Signature: t1:1716997:1417720032:548c2ad8f54e41d42585c331324f2065733595c1
      8f9cc411
    • Andrii Grynenko's avatar
      Make folly::Singleton's destruction happen earlier · 24b92211
      Andrii Grynenko authored
      Summary: Schedule destroyInstances to be executed via atexit in registrationComplete. registrationComplete is called from main(), so this makes sure folly::Singleton's will be destoyed before all singletons constructed before main() (which should cover all third-party libraries' singletons).
      
      Test Plan: unit test
      
      Reviewed By: chip@fb.com
      
      Subscribers: trunkagent, njormrod, folly-diffs@
      
      FB internal diff: D1717963
      
      Tasks: 5666654
      
      Signature: t1:1717963:1417659478:c50c271d1786be75499565f6ab9c0a1a6f6f347d
      24b92211
    • Andre Pinto's avatar
      Correct getsockopt call made by AsyncSocket · 44e48457
      Andre Pinto authored
      Summary:
      The getsockopt's last parameter (optlen) is a value-result parameter
      and AsyncSocket::getSockOpt was passing a value as argument.
      
      Test Plan: Unit tests
      
      Reviewed By: alikhtarov@fb.com
      
      Subscribers: trunkagent, njormrod, folly-diffs@
      
      FB internal diff: D1717463
      
      Tasks: 4867290
      
      Signature: t1:1717463:1417664828:6c7a74ff31725121f892ce1adba2653e70728192
      44e48457
    • James Sedgwick's avatar
      add consumeUntilDrained API to NotificationQueue::Consumer · 35ed5364
      James Sedgwick authored
      Summary:
      ... and employ it in EventBase's destructor to stop leaking memory from unexecuted NotificationQueue-variety runInEventBaseThread() callbacks
      
      in addition to the attached task, this should also fix the root cause of the already-worked-around #5564342
      
      Test Plan:
      test no longer leaks.* on the other hand, IOThreadPoolExecutor::stop() no longer actually stops, it joins. I added comments to stop() in headers indicating that it should be treated as best-effort.
      
      * hilariously, this actually isn't true - there's a new leak of a thread local inside the io pool because callbacks can outlive the pool now. i'll leave a full explanation for the upcoming patch.
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: alandau, bmatheny, mshneer, trunkagent, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1682860
      
      Tasks: 5336655
      
      Signature: t1:1682860:1416347774:ac5f31fb72373992f425c93ac284a0cd27608db4
      35ed5364
    • Hans Fugal's avatar
      Replace Later in tcc · 6fdeaeba
      Hans Fugal authored
      Summary:
      s/`sendAsyncLater`/`sendAsyncVia`/ and change it to return a cold future with equivalent semantics. We have to call `via` twice in the implementation—once to gate the result and again to make sure the caller will get a future that executes in that executor's context also.
      
      NB this is a slight semantic change - if the executor is, say, a threadpool then now it will go through the threadpool queue (and maybe execute in two different threads) whereas before the whole later chain would execute in the same thread. I don't *think* this is a problem, but something to think about.
      
      Test Plan:
      stuff we fbconfig'd builds
      contbuild
      unit tests
      thinking really hard
      
      Reviewed By: hannesr@fb.com
      
      Subscribers: trunkagent, fbcode-common-diffs@, net-systems@, ldbrandy, hannesr, fugalh, zhuohuang, exa, watashi, smarlow, akr, bnitka, jcoens, darshan, njormrod, anfarmer, folly-diffs@
      
      FB internal diff: D1644012
      
      Tasks: 5409538
      
      Signature: t1:1644012:1417625401:99b1b7df6de4cfcdd945eed7104d4c82e8c0b78f
      6fdeaeba
    • Maxim Sokolov's avatar
      Fixing static initilize fiasco in Benchmark.cpp · c5dea7b6
      Maxim Sokolov authored
      Summary:
      Benchmark.cpp code is dependent on initialization order, which leads
      to benchmarks not running. The root cause is that on some linkers the code which
      adds benchmarks to the benchmarks vector is run before the vector initialization.
      
      The original bug report: https://github.com/facebook/folly/issues/18
      See: http://www.parashift.com/c++-faq-lite/static-init-order.html
      
      Test Plan: run benchmark_test and compare result with master output
      
      Reviewed By: andrei.alexandrescu@fb.com, njormrod@fb.com
      
      Subscribers: trunkagent, sdwilsh, folly-diffs@
      
      FB internal diff: D1710588
      
      Signature: t1:1710588:1417468175:fd2705a573cef5c4ff020b60c6aec3d83bcdbbab
      c5dea7b6
    • Andrei Bajenov's avatar
      Readd unit test · d904cfb9
      Andrei Bajenov authored
      Summary:
      Description:
      Last time a merge error broke stuff, fixing and readding
      
      Test Plan:
      Ran unit test
      
      This reverts commit 1075ab9d6f62cad36a228bd3fc7203a75fdf5baf.
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: njormrod, folly-diffs@, wstefancik
      
      FB internal diff: D1695920
      
      Signature: t1:1695920:1416529609:3f726ac5df4e33f254075738ea6655a6fc01bb7f
      d904cfb9
    • Pavlo Kushnir's avatar
      Fix dynamic::insert · 78b2965a
      Pavlo Kushnir authored
      Summary: folly::dynamic::insert is broken. When we try to insert an rvalue and the key already exists in dynamic, insert will replace the value with empty dynamic.
      
      Test Plan: unit test attached
      
      Reviewed By: stepan@fb.com
      
      Subscribers: trunkagent, njormrod, folly-diffs@
      
      FB internal diff: D1704995
      
      Signature: t1:1704995:1417053631:8e0163693df721c54b016f8c27e81e7bf60194cb
      78b2965a
    • Mainak Mandal's avatar
      fix varint decoding in case the first buffer is smaller than encoded varint · 29ca6827
      Mainak Mandal authored
      Summary: This is not a super clean solution, given that I have just copied the code over form Varint.h. Another way would be to add a peek(IOBuf&, size_t) method to CursorBase and use that to peek deeper into the chain.
      
      Test Plan: unit tests
      
      Reviewed By: tulloch@fb.com
      
      Subscribers: trunkagent, njormrod, dcapel, benr, folly-diffs@
      
      FB internal diff: D1689872
      
      Signature: t1:1689872:1416964989:b7f12a2686233f161401288ffcb8c51926b01fdf
      29ca6827
    • Nicholas Ormrod's avatar
      IOBuf::moveToFbString legacy 4GiB limit · 929e93d4
      Nicholas Ormrod authored
      Summary:
      IOBufs now support larger than 4GiB chunks. One of the checks
      was not removed. Tracing through the capacity, its use if all 64-bit
      compatible.
      
      Test Plan: moveToFbString a 4GiB+ IOBuf element.
      
      Reviewed By: maxim@fb.com
      
      Subscribers: net-systems@, sdwilsh, njormrod, folly-diffs@
      
      FB internal diff: D1705316
      
      Tasks: 5648445
      
      Signature: t1:1705316:1416965241:d9d064bbde53e033d32bfe872b3445ee59005f5e
      929e93d4
    • Nicholas Ormrod's avatar
      zlib compression fails on large IOBufs · eb9d7cd7
      Nicholas Ormrod authored
      Summary:
      If a single IOBuf has size exceeding 2^32, then our zlib
      compression algorithm fails. Specifically, zlib z_stream.avail_in is
      only 32 bytes (I think it's a long?
      http://www.gzip.org/zlib/zlib_faq.html#faq32), and so a too-big IOBuf
      will overflow the z_stream and cause data loss.
      
      This diff breaks up large IOBufs into smaller chunks.
      
      Test Plan:
      fbconfig -r folly && fbmake runtests
      
      Also compressed biggrep's configerator blob, which is how this bug was
      caught. It now works. See the associated task.
      
      Reviewed By: robbert@fb.com
      
      Subscribers: trunkagent, sdwilsh, njormrod, folly-diffs@
      
      FB internal diff: D1702925
      
      Tasks: 5648445
      
      Signature: t1:1702925:1416958232:459d498ff1db13e1a20766855e6f2f97da8cde8c
      eb9d7cd7
    • Subodh Iyengar's avatar
      Make SSLContext's exit() handling more graceful · 607e323f
      Subodh Iyengar authored
      Summary:
      Some platforms that SSLContext run on call exit() despite best practices.
      This cause the static structures to be destructed and cause race conditions
      and crashes.
      
      This new's the static structures so that they won't be destructed on exit()
      
      Test Plan: Unit tests
      
      Reviewed By: seanc@fb.com
      
      Subscribers: trunkagent, ssl-diffs@, seanc, njormrod, folly-diffs@
      
      FB internal diff: D1702186
      
      Tasks: 5572637
      
      Signature: t1:1702186:1416941649:c5bdfd8cc604fc3618f51bdb8b910b5b2cf350ad
      607e323f
    • James Sedgwick's avatar
      fix Makefile.am · 9daa3dc2
      James Sedgwick authored
      Summary: also kill duplicated test file
      
      Test Plan: run all exp/wangle tests
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1698503
      
      Signature: t1:1698503:1416612139:7139c6aa2ca79eabdaec6c33192194df984af348
      9daa3dc2