)]}'
{
  "log": [
    {
      "commit": "5dfc589a8467470226feccdc50f1b32713318e7b",
      "tree": "82998c57555055cf3763e9a4fc757d5de0628c21",
      "parents": [
        "b0930f8d38c6ab76dc8222a5a910a21392d38208"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue May 04 16:14:46 2010 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue May 04 16:14:46 2010 -0700"
      },
      "message": "ceph: unregister bdi before kill_anon_super releases device name\n\nUnregister and destroy the bdi in put_super, after mount is r/o, but before\nput_anon_super releases the device name.\n\nFor symmetry, bdi_destroy in destroy_client (we bdi_init in create_client).\n\nOnly set s_bdi if bdi_register succeeds, since we use it to decide whether\nto bdi_unregister.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "c8f16584ac85444d51d8753c5df502350cfc7bb7",
      "tree": "8fd47c13e4577e10487b3cba001a029ba43aa669",
      "parents": [
        "91dee39eebcfb47085c4d457a584b0e9723b6ca0"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Apr 19 13:50:26 2010 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon May 03 10:49:23 2010 -0700"
      },
      "message": "ceph: print more useful version info on module load\n\nDecouple the client version from the server side.  Print relevant protocol\nand map version info instead.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "5a0e3ad6af8660be21ca98a971cd00f331318c05",
      "tree": "5bfb7be11a03176a87296a43ac6647975c00a1d1",
      "parents": [
        "ed391f4ebf8f701d3566423ce8f17e614cde9806"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Wed Mar 24 17:04:11 2010 +0900"
      },
      "committer": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Tue Mar 30 22:02:32 2010 +0900"
      },
      "message": "include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h\n\npercpu.h is included by sched.h and module.h and thus ends up being\nincluded when building most .c files.  percpu.h includes slab.h which\nin turn includes gfp.h making everything defined by the two files\nuniversally available and complicating inclusion dependencies.\n\npercpu.h -\u003e slab.h dependency is about to be removed.  Prepare for\nthis change by updating users of gfp and slab facilities include those\nheaders directly instead of assuming availability.  As this conversion\nneeds to touch large number of source files, the following script is\nused as the basis of conversion.\n\n  http://userweb.kernel.org/~tj/misc/slabh-sweep.py\n\nThe script does the followings.\n\n* Scan files for gfp and slab usages and update includes such that\n  only the necessary includes are there.  ie. if only gfp is used,\n  gfp.h, if slab is used, slab.h.\n\n* When the script inserts a new include, it looks at the include\n  blocks and try to put the new include such that its order conforms\n  to its surrounding.  It\u0027s put in the include block which contains\n  core kernel includes, in the same order that the rest are ordered -\n  alphabetical, Christmas tree, rev-Xmas-tree or at the end if there\n  doesn\u0027t seem to be any matching order.\n\n* If the script can\u0027t find a place to put a new include (mostly\n  because the file doesn\u0027t have fitting include block), it prints out\n  an error message indicating which .h file needs to be added to the\n  file.\n\nThe conversion was done in the following steps.\n\n1. The initial automatic conversion of all .c files updated slightly\n   over 4000 files, deleting around 700 includes and adding ~480 gfp.h\n   and ~3000 slab.h inclusions.  The script emitted errors for ~400\n   files.\n\n2. Each error was manually checked.  Some didn\u0027t need the inclusion,\n   some needed manual addition while adding it to implementation .h or\n   embedding .c file was more appropriate for others.  This step added\n   inclusions to around 150 files.\n\n3. The script was run again and the output was compared to the edits\n   from #2 to make sure no file was left behind.\n\n4. Several build tests were done and a couple of problems were fixed.\n   e.g. lib/decompress_*.c used malloc/free() wrappers around slab\n   APIs requiring slab.h to be added manually.\n\n5. The script was run on all .h files but without automatically\n   editing them as sprinkling gfp.h and slab.h inclusions around .h\n   files could easily lead to inclusion dependency hell.  Most gfp.h\n   inclusion directives were ignored as stuff from gfp.h was usually\n   wildly available and often used in preprocessor macros.  Each\n   slab.h inclusion directive was examined and added manually as\n   necessary.\n\n6. percpu.h was updated not to include slab.h.\n\n7. Build test were done on the following configurations and failures\n   were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my\n   distributed build env didn\u0027t work with gcov compiles) and a few\n   more options had to be turned off depending on archs to make things\n   build (like ipr on powerpc/64 which failed due to missing writeq).\n\n   * x86 and x86_64 UP and SMP allmodconfig and a custom test config.\n   * powerpc and powerpc64 SMP allmodconfig\n   * sparc and sparc64 SMP allmodconfig\n   * ia64 SMP allmodconfig\n   * s390 SMP allmodconfig\n   * alpha SMP allmodconfig\n   * um on x86_64 SMP allmodconfig\n\n8. percpu.h modifications were reverted so that it could be applied as\n   a separate patch and serve as bisection point.\n\nGiven the fact that I had only a couple of failures from tests on step\n6, I\u0027m fairly confident about the coverage of this conversion patch.\nIf there is a breakage, it\u0027s likely to be something in one of the arch\nheaders which should be easily discoverable easily on most builds of\nthe specific arch.\n\nSigned-off-by: Tejun Heo \u003ctj@kernel.org\u003e\nGuess-its-ok-by: Christoph Lameter \u003ccl@linux-foundation.org\u003e\nCc: Ingo Molnar \u003cmingo@redhat.com\u003e\nCc: Lee Schermerhorn \u003cLee.Schermerhorn@hp.com\u003e\n"
    },
    {
      "commit": "422d2cb8f9afadba1ecd3614f658b6daaaa480fb",
      "tree": "22e1a61acdbbe1459b190c4dbb6019360464b2e9",
      "parents": [
        "e9964c102312967a4bc1fd501cb628c4a3b19034"
      ],
      "author": {
        "name": "Yehuda Sadeh",
        "email": "yehuda@hq.newdream.net",
        "time": "Fri Feb 26 15:32:31 2010 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Thu Mar 04 11:26:35 2010 -0800"
      },
      "message": "ceph: reset osd after relevant messages timed out\n\nThis simplifies the process of timing out messages. We\nkeep lru of current messages that are in flight. If a\ntimeout has passed, we reset the osd connection, so that\nmessages will be retransmitted.  This is a failsafe in case\nwe hit some sort of problem sending out message to the OSD.\nNormally, we\u0027ll get notification via an updated osdmap if\nthere are problems.\n\nIf a request is older than the keepalive timeout, send a\nkeepalive to ensure we detect any breaks in the TCP connection.\n\nSigned-off-by: Yehuda Sadeh \u003cyehuda@hq.newdream.net\u003e\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "85ccce43a3fc15a40ded6ae1603e3f68a17f4d24",
      "tree": "1e15fb7dc7df43da4a3feacff671c8169e96291d",
      "parents": [
        "5ce6e9dbe6805ab8ee67e21936d17f431adc63c6"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Feb 17 10:02:43 2010 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Feb 17 10:02:43 2010 -0800"
      },
      "message": "ceph: clean up readdir caps reservation\n\nUse a global counter for the minimum number of allocated caps instead of\nhard coding a check against readdir_max.  This takes into account multiple\nclient instances, and avoids examining the superblock mount options when a\ncap is dropped.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "f5a2041bd96c9f05ff10172b9c814c14f247084e",
      "tree": "3c9c47169fa5ad2ec52d278f10d9d2de2237accf",
      "parents": [
        "b056c8769d1da6a6a80ce780a4b8957b70434a41"
      ],
      "author": {
        "name": "Yehuda Sadeh",
        "email": "yehuda@hq.newdream.net",
        "time": "Wed Feb 03 11:00:26 2010 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Thu Feb 11 11:48:48 2010 -0800"
      },
      "message": "ceph: put unused osd connections on lru\n\nInstead of removing osd connection immediately when the\nrequests list is empty, put the osd connection on an lru.\nOnly if that osd has not been used for more than a specified\ntime, will it be removed.\n\nSigned-off-by: Yehuda Sadeh \u003cyehuda@hq.newdream.net\u003e\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "9bd2e6f8ba71facf1cadb7154a7e0e4d345a6aba",
      "tree": "1c1bb4d2f769eca05443b98334fe0fbdb3b977c2",
      "parents": [
        "8b6e4f2d8b21c25225b1ce8d53a2e03b92cc8522"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue Feb 02 16:21:06 2010 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Feb 10 15:04:47 2010 -0800"
      },
      "message": "ceph: allow renewal of auth credentials\n\nAdd infrastructure to allow the mon_client to periodically renew its auth\ncredentials.  Also add a messenger callback that will force such a renewal\nif a peer rejects our authenticator.\n\nSigned-off-by: Yehuda Sadeh \u003cyehuda@hq.newdream.net\u003e\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "e0e3271074e1ebd0b80a912a457ce03c971bcd66",
      "tree": "1af28d179afc54010d78c675ecc73ab4b514ad0f",
      "parents": [
        "5dacf09121ffb2e5fc7d15b78cae0b77042a1935"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Dec 21 21:04:26 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Dec 23 08:17:18 2009 -0800"
      },
      "message": "ceph: only unregister registered bdi\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "2baba25019ec564cd247af74013873d69a0b8190",
      "tree": "c0995b8087cff771dd51aaf1194fd238f4490f01",
      "parents": [
        "dbd646a851713bec5bfff40ecf624b2e78518fe5"
      ],
      "author": {
        "name": "Yehuda Sadeh",
        "email": "yehuda@hq.newdream.net",
        "time": "Fri Dec 18 13:51:57 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Dec 21 16:39:56 2009 -0800"
      },
      "message": "ceph: writeback congestion control\n\nSet bdi congestion bit when amount of write data in flight exceeds adjustable\nthreshold.\n\nSigned-off-by: Yehuda Sadeh \u003cyehuda@hq.newdream.net\u003e\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "9ec7cab14e6de732d4e7c355fe67c5810c32c758",
      "tree": "2f512034bc7db2b4ca8fe47ceea06ac99a8cab40",
      "parents": [
        "93c20d98c29ccefa039c3843ccc37122caaf3d31"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Dec 14 15:13:47 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Dec 21 16:39:52 2009 -0800"
      },
      "message": "ceph: hex dump corrupt server data to KERN_DEBUG\n\nAlso, print fsid using standard format, NOT hex dump.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "dc14657c9c946f25b84a98e9ffa41b812a70699e",
      "tree": "3ac124fd88bf85244114a3e7646b87b84ef6ae9d",
      "parents": [
        "94045e115ee72aee3b17295791da07078f2f778c"
      ],
      "author": {
        "name": "Yehuda Sadeh",
        "email": "yehuda@newdream.net",
        "time": "Fri Nov 20 13:59:13 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Fri Nov 20 14:24:46 2009 -0800"
      },
      "message": "ceph: mount fails immediately on error\n\nSigned-off-by: Yehuda Sadeh \u003cyehuda@newdream.net\u003e\n"
    },
    {
      "commit": "0743304d871559cb4c7c066357de2caa60e94c2f",
      "tree": "546510a84c1bda27e71a8a8229544d99f5624252",
      "parents": [
        "cfea1cf42b614583c02727d5bffd5a2384e92bda"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 18 16:50:41 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Fri Nov 20 14:24:27 2009 -0800"
      },
      "message": "ceph: fix debugfs entry, simplify fsid checks\n\nWe may first learn our fsid from any of the mon, osd, or mds maps\n(whichever the monitor sends first).  Consolidate checks in a single\nhelper.  Initialize the client debugfs entry then, since we need the\nfsid (and global_id) for the directory name.\n\nAlso remove dead mount code.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "b9bfb93ce2b1ef668254f0b9e16fcc5246d65d8e",
      "tree": "77f3c99bd497137297fed7f0f2ba8967d4181bec",
      "parents": [
        "4e7a5dcd1bbab6560fbc8ada29a840e7a20ed7bc"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 18 15:08:44 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 18 16:20:08 2009 -0800"
      },
      "message": "ceph: move mempool creation to ceph_create_client\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "4e7a5dcd1bbab6560fbc8ada29a840e7a20ed7bc",
      "tree": "a77e9b4563022340361ca673ef2e1beebb538e2f",
      "parents": [
        "5f44f142601bf94c448e2d463f0f18fd159da164"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 18 16:19:57 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 18 16:19:57 2009 -0800"
      },
      "message": "ceph: negotiate authentication protocol; implement AUTH_NONE protocol\n\nWhen we open a monitor session, we send an initial AUTH message listing\nthe auth protocols we support, our entity name, and (possibly) a previously\nassigned global_id.  The monitor chooses a protocol and responds with an\ninitial message.\n\nInitially implement AUTH_NONE, a dummy protocol that provides no security,\nbut works within the new framework.  It generates \u0027authorizers\u0027 that are\nused when connecting to (mds, osd) services that simply state our entity\nname and global_id.\n\nThis is a wire protocol change.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "5f44f142601bf94c448e2d463f0f18fd159da164",
      "tree": "773b4677c536519435f073b27873212f705c9c3c",
      "parents": [
        "71ececdacae24be333c534869cb1b06357f0e215"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 18 14:52:18 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 18 15:02:36 2009 -0800"
      },
      "message": "ceph: handle errors during osd client init\n\nUnwind initializing if we get ENOMEM during client initialization.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "6a18be16f7513ea8a4923c161ce073987932cbdb",
      "tree": "ebd337329a22deb4289379dd7ccfb0e5db6bd72c",
      "parents": [
        "51042122d4f85e0f8ee577a4230f172fcc57c456"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 04 11:40:05 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Nov 04 16:36:12 2009 -0800"
      },
      "message": "ceph: fix sparse endian warning\n\nUse the __le macro, even though for -1 it doesn\u0027t matter.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "859e7b149362475672e2a996f29b8f45cbb34d82",
      "tree": "ee7a68f0ff01c21f8aca68ee67af203abf69c939",
      "parents": [
        "33aa96e7430d215e2ee779f65cdad0f6d4571fe1"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Nov 02 09:32:47 2009 -0800"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Nov 02 09:32:47 2009 -0800"
      },
      "message": "ceph: init/destroy bdi in client create/destroy helpers\n\nThis keeps bdi setup/teardown in line with client life cycle.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "6b8051855d983db8480ff1ea1b02ef2b49203c22",
      "tree": "afb72be534ddd4c474a2ec9b7cf2ea5ab86799bc",
      "parents": [
        "e53c2fe075feda1fd4f009956ac026dc24c3a199"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue Oct 27 11:50:50 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue Oct 27 11:57:03 2009 -0700"
      },
      "message": "ceph: allocate and parse mount args before client instance\n\nThis simplifies much of the error handling during mount.  It also means\nthat we have the mount args before client creation, and we can initialize\nbased on those options.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "e53c2fe075feda1fd4f009956ac026dc24c3a199",
      "tree": "8607bbfb40f6eb1bd9d463b970454faa9623cd0e",
      "parents": [
        "6ca874e92d5e50beb8e351dfd8121947bafc79ec"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue Oct 27 10:19:28 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue Oct 27 11:17:25 2009 -0700"
      },
      "message": "ceph: fix, clean up string mount arg parsing\n\nClearly demark int and string argument options, and do not try to convert\nstring arguments to ints.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "6ca874e92d5e50beb8e351dfd8121947bafc79ec",
      "tree": "7c23fddf5c2948f9f07cb68d5a0ebf11d4b8614d",
      "parents": [
        "7b813c46021e8f4909772a5bbfb5212bd140764c"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Oct 26 22:06:22 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Oct 26 22:07:59 2009 -0700"
      },
      "message": "ceph: silence uninitialized variable warning\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "7b813c46021e8f4909772a5bbfb5212bd140764c",
      "tree": "50655ab84f6347ec11a4423f22093fbb7a944e87",
      "parents": [
        "ecb19c4649d7396737eb0d91a475661fe9d7c028"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Oct 26 22:07:53 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Oct 26 22:07:53 2009 -0700"
      },
      "message": "ceph: reduce parse_mount_args stack usage\n\nSince we\u0027ve increased the max mon count, we shouldn\u0027t put the addr array\non the parse_mount_args stack.  Put it on the heap instead.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "ecb19c4649d7396737eb0d91a475661fe9d7c028",
      "tree": "32ff9e8b3a9afffe5c9b7e97f1aef6b367c08dde",
      "parents": [
        "232d4b01319767b3ffa5d08962a81c805962be49"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Thu Oct 22 10:53:02 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Thu Oct 22 10:53:17 2009 -0700"
      },
      "message": "ceph: remove small mon addr limit; use CEPH_MAX_MON where appropriate\n\nGet rid of separate max mon limit; use the system limit instead.  This\nallows mounts when there are lots of mon addrs provided by mount.ceph (as\nwith a host with lots of A/AAAA records).\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "8fa9765576875200a7412a5300b5f0537211f038",
      "tree": "1d6417a0d6731e905dc0cffb09506f1796e58f71",
      "parents": [
        "76e3b390d41db9d69e254a09dd1aedd3e6aac25f"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Fri Oct 16 14:44:35 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Fri Oct 16 14:44:43 2009 -0700"
      },
      "message": "ceph: enable readahead\n\nInitialized bdi-\u003era_pages to enable readahead.  Use 512KB default.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "f2cf418cec8d61df0651a0140a92a8c75246e14f",
      "tree": "606533d3b5a41d75e6e1954aae1de94ef85df58b",
      "parents": [
        "c89136ea4253c73e89e97f5138bb22d97ad9f564"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Oct 14 14:09:07 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Oct 14 14:09:07 2009 -0700"
      },
      "message": "ceph: initialize sb-\u003es_bdi, bdi_unregister after kill_anon_super\n\nWriteback doesn\u0027t work without the bdi set, and writeback on\numount doesn\u0027t work if we unregister the bdi too early.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "572033069dbc2cff8d4a2d2b34c576e1813fda70",
      "tree": "7fa9bc74fe1025108cc91715285af8e14aa6f883",
      "parents": [
        "8fc57da4d32767cc6096ecaed24636dabefd1dbc"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Fri Oct 09 21:52:34 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Mon Oct 12 10:29:44 2009 -0700"
      },
      "message": "ceph: remove unused CEPH_MSG_{OSD,MDS}_GETMAP\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "fa0b72e9e2900ee87886aaf8bc4c4701be1e081d",
      "tree": "61fd8a0bf6dd27a0ae1bc11bd45e171aefa46fda",
      "parents": [
        "e324b8f991679a43e09dd13500bf1988c0bfc0ea"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Oct 07 10:59:10 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Wed Oct 07 10:59:10 2009 -0700"
      },
      "message": "ceph: show meaningful version on module load\n\nKill the old git revision; print the ceph version and protocol\nversions instead.\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    },
    {
      "commit": "16725b9d2a2e3d0fd2b0034482e2eb0a2d78050f",
      "tree": "ced2f4d3dbe13c7a9c64510d6ec235b703191a5c",
      "parents": [
        "c30dbb9cc7fc75ab1d0ee6fb084ba4684f7a665d"
      ],
      "author": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue Oct 06 11:31:07 2009 -0700"
      },
      "committer": {
        "name": "Sage Weil",
        "email": "sage@newdream.net",
        "time": "Tue Oct 06 11:31:07 2009 -0700"
      },
      "message": "ceph: super.c\n\nMount option parsing, client setup and teardown, and a few odds and\nends (e.g., statfs).\n\nSigned-off-by: Sage Weil \u003csage@newdream.net\u003e\n"
    }
  ]
}
