)]}'
{
  "log": [
    {
      "commit": "8998979cc1f90da5a48b2e8a13833217c63f7c4a",
      "tree": "d37799aaab6d68350b14941e0196de9e12a166a3",
      "parents": [
        "bb8e8bcce7eceacb52eb0a3ebb64202ad6bcc438"
      ],
      "author": {
        "name": "Nathan Lynch",
        "email": "ntl@pobox.com",
        "time": "Mon Dec 17 16:20:09 2007 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Mon Dec 17 19:28:17 2007 -0800"
      },
      "message": "fix bloat-o-meter for ppc64\n\nbloat-o-meter assumes that a \u0027.\u0027 anywhere in a symbol\u0027s name means that it\nis static and prepends \u0027static.\u0027 to the first part of the symbol name,\ndiscarding the portion of the name that follows the \u0027.\u0027.  However, the\nnames of function entry points begin with \u0027.\u0027 in the ppc64 ABI.  This\ncauses all function text size changes to be accounted to a single \u0027static.\u0027\nentry in the output when comparing ppc64 kernels.\n\nChange getsizes() to ignore the first character of the symbol name when\nsearching for \u0027.\u0027.\n\nSigned-off-by: Nathan Lynch \u003cntl@pobox.com\u003e\nCc: Matt Mackall \u003cmpm@selenic.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "51849738cf3af4d2c43a657e811a89e7f69eccc2",
      "tree": "75329a000346c46d113d15098743ce4edbcd72cd",
      "parents": [
        "f867d2a2e5f3f0ce6356f452cc27b70d577de7c7"
      ],
      "author": {
        "name": "Rob Landley",
        "email": "rob@landley.net",
        "time": "Sun Jun 25 05:47:10 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jun 25 10:01:00 2006 -0700"
      },
      "message": "[PATCH] bloat-o-meter: gcc-4 fix\n\nUpgrade scripts/bloat-o-meter to handle the names gcc 4 gives static\nsymbols.\n\nSigned-off-by: Rob Landley \u003crob@landley.net\u003e\nSigned-off-by: Matt Mackall \u003cmpm@selenic.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "71378be91f5473e89c8be170c6e49edda3bdbb67",
      "tree": "0e776973af0d48034e2b15213af085849a74f3fe",
      "parents": [
        "d39a206bc35d46a3b2eb98cd4f34e340d5e56a50"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Fri Apr 07 16:16:40 2006 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@mars.ravnborg.org",
        "time": "Tue Apr 11 13:37:07 2006 +0200"
      },
      "message": "kbuild: fix mode of checkstack.pl and other files.\n\nMake it executable like it should be. Do the same for other files intended to be\nexecuted by the user - the ones called by the build process needn\u0027t be\nexecutable as they already work (as argument to their interpreter).\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "d960600df3ce3588571e2c1adf1f5f6d8ca9eb5a",
      "tree": "2d920b912b33f16b5cf8099331fcf421c83ae64b",
      "parents": [
        "e701e85b9f12af4dbe73b4299b541686ef6b1aa5"
      ],
      "author": {
        "name": "Matt Mackall",
        "email": "mpm@selenic.com",
        "time": "Sun Jan 08 01:05:19 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:14:10 2006 -0800"
      },
      "message": "[PATCH] tiny: Add bloat-o-meter to scripts\n\nThis is a rewrite of Andi Kleen\u0027s bloat-o-meter with sorting and reporting of\ngainers/decliners.  Sample output:\n\nadd/remove: 0/8 grow/shrink: 2/0 up/down: 88/-4424 (-4336)\nfunction                                     old     new   delta\n__copy_to_user_ll                             59     103     +44\n__copy_from_user_ll                           59     103     +44\nfill_note                                     32       -     -32\nmaydump                                       58       -     -58\ndump_seek                                     67       -     -67\nwritenote                                    180       -    -180\nelf_dump_thread_status                       274       -    -274\nfill_psinfo                                  308       -    -308\nfill_prstatus                                466       -    -466\nelf_core_dump                               3039       -   -3039\n\nThe summary line says:\n no functions added, 8 removed\n two functions grew, none shrunk\n we gained 88 bytes and lost 4424 (or -4336 net)\n\nThis work was sponsored in part by CE Linux Forum\n\nSigned-off-by: Matt Mackall \u003cmpm@selenic.com\u003e\nCc: Andi Kleen \u003cak@muc.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    }
  ]
}
