)]}'
{
  "log": [
    {
      "commit": "14cc3e2b633bb64063698980974df4535368e98f",
      "tree": "d542c9db7376de199d640b8e34d5630460b217b5",
      "parents": [
        "353ab6e97b8f209dbecc9f650f1f84e3da2a7bb1"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Sun Mar 26 01:37:14 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Mar 26 08:56:55 2006 -0800"
      },
      "message": "[PATCH] sem2mutex: misc static one-file mutexes\n\nSemaphore to mutex conversion.\n\nThe conversion was generated via scripts, and the result was validated\nautomatically via a script as well.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nCc: Dave Jones \u003cdavej@codemonkey.org.uk\u003e\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nCc: Ralf Baechle \u003cralf@linux-mips.org\u003e\nCc: Jens Axboe \u003caxboe@suse.de\u003e\nCc: Neil Brown \u003cneilb@cse.unsw.edu.au\u003e\nAcked-by: Alasdair G Kergon \u003cagk@redhat.com\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nCc: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\nCc: Adam Belay \u003cambx1@neo.rr.com\u003e\nCc: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\nCc: \"David S. Miller\" \u003cdavem@davemloft.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "656bde5728b824ca23fcab8bc5800b309ea48d64",
      "tree": "9e570f9e5847a653d8ab11e2653464f5b525cc53",
      "parents": [
        "bda44e1d168ac76fce5183eb141592fc645c7818"
      ],
      "author": {
        "name": "Jesper Juhl",
        "email": "jesper.juhl@gmail.com",
        "time": "Sat Mar 25 03:08:12 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Mar 25 08:23:00 2006 -0800"
      },
      "message": "[PATCH] Fix memory leak in isapnp\n\nSpotted by the Coverity checker as bug #666\n\nakpm; there are several other `return 1;\u0027s in there which aren\u0027t freeing\n`dev\u0027.  (A fix which converts this function to single-exit would be\npreferred..)\n\nSigned-off-by: Jesper Juhl \u003cjesper.juhl@gmail.com\u003e\nCc: Adam Belay \u003cambx1@neo.rr.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b449f63c8ce4a517cb91f237cc3d68d083ec2dd3",
      "tree": "3d00143e3114f5f044c174df519378bc47dcd4ea",
      "parents": [
        "5fed0578be842dd7d24e5240a75b02bbc748501f"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Nov 07 01:01:48 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 07:54:09 2005 -0800"
      },
      "message": "[PATCH] drivers/pnp/: cleanups\n\nThis patch contains the following possible cleanups:\n- make needlessly global code static\n- #if 0 the following unused global function:\n  - core.c: pnp_remove_device\n- #if 0 the following unneeded EXPORT_SYMBOL\u0027s:\n  - card.c: pnp_add_card\n  - card.c: pnp_remove_card\n  - card.c: pnp_add_card_device\n  - card.c: pnp_remove_card_device\n  - card.c: pnp_add_card_id\n  - core.c: pnp_register_protocol\n  - core.c: pnp_unregister_protocol\n  - core.c: pnp_add_device\n  - core.c: pnp_remove_device\n  - pnpacpi/core.c: pnpacpi_protocol\n  - driver.c: pnp_add_id\n  - isapnp/core.c: isapnp_read_byte\n  - manager.c: pnp_auto_config_dev\n  - resource.c: pnp_register_dependent_option\n  - resource.c: pnp_register_independent_option\n  - resource.c: pnp_register_irq_resource\n  - resource.c: pnp_register_dma_resource\n  - resource.c: pnp_register_port_resource\n  - resource.c: pnp_register_mem_resource\n\nNote that this patch #if 0\u0027s exactly one functions and removes no\nfunctions.  Most it does is the #if 0 of EXPORT_SYMBOL\u0027s, so if any modular\ncode will use any of them, re-adding will be trivial.\n\nModular ISAPnP might be interesting in some cases, but this is more legacy\ncode.  If someone would work on it to sort all the issues out (starting\nwith the point that most users of __ISAPNP__ will have to be fixed)\nre-enabling the required EXPORT_SYMBOL\u0027s won\u0027t be hard for him.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: Adam Belay \u003cambx1@neo.rr.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a2822e7f00cdccbff8e507b5ebbddce1aa95eb5d",
      "tree": "07ac5760bb7771744daa59b759c34190fb39f3ae",
      "parents": [
        "ea2f1590aaffbd02f1850c19c3895ff4d092c6e0"
      ],
      "author": {
        "name": "Bjorn Helgaas",
        "email": "bjorn.helgaas@hp.com",
        "time": "Tue Sep 06 15:16:51 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Sep 07 16:57:21 2005 -0700"
      },
      "message": "[PATCH] pnp: consolidate kmalloc wrappers\n\nISAPNP, PNPBIOS, and PNPACPI all had their own kmalloc wrappers that\nreimplemented kcalloc().  Remove the wrappers and just use kcalloc()\ndirectly.\n\nNote that this also removes the PNPBIOS error message when the kmalloc\nfails.\n\nSigned-off-by: Bjorn Helgaas \u003cbjorn.helgaas@hp.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1da177e4c3f41524e886b7f1b8a0c1fc7321cac2",
      "tree": "0bba044c4ce775e45a88a51686b5d9f90697ea9d",
      "parents": [],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "message": "Linux-2.6.12-rc2\n\nInitial git repository build. I\u0027m not bothering with the full history,\neven though we have it. We can create a separate \"historical\" git\narchive of that later if we want to, and in the meantime it\u0027s about\n3.2GB when imported into git - space that would just make the early\ngit days unnecessarily complicated, when we don\u0027t have a lot of good\ninfrastructure for it.\n\nLet it rip!\n"
    }
  ]
}
