)]}'
{
  "log": [
    {
      "commit": "d974ae379a2fbe8948f01eabbc6b19c0a80f09bc",
      "tree": "64deaab7470403d6cf77e73c35015b0ff602dd7d",
      "parents": [
        "c9272c4f9fbe2087beb3392f526dc5b19efaa56b"
      ],
      "author": {
        "name": "Jeremy Fitzhardinge",
        "email": "jeremy@goop.org",
        "time": "Thu Jul 24 16:27:46 2008 -0700"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Mon Jul 28 15:05:23 2008 +0200"
      },
      "message": "generic, memparse(): constify argument\n\nmemparse()\u0027s first argument can be const, so it should be.\n\nSigned-off-by: Jeremy Fitzhardinge \u003cjeremy.fitzhardinge@citrix.com\u003e\nCc: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "fd193829744bc77392395cf8f47889235c97f0a3",
      "tree": "05e2612ee5d824cb679f4a236b14907b828b6888",
      "parents": [
        "cb345d7352aa9e692ef4b83c41d3e6e1cdb2f846"
      ],
      "author": {
        "name": "Robert P. J. Day",
        "email": "rpjday@crashcourse.ca",
        "time": "Fri Jul 25 01:45:31 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Jul 25 10:53:27 2008 -0700"
      },
      "message": "lib: allow memparse() to accept a NULL and ignorable second parm\n\nExtend memparse() to allow the caller to use a NULL second parameter, which\nwould represent no interest in returning the address of the end of the parsed\nstring.\n\nIn numerous cases, callers invoke memparse() to parse a possibly-suffixed\nstring (such as \"64K\" or \"2G\" or whatever) and define a character pointer to\naccept the end pointer being returned by memparse() even though they have no\ninterest in it and promptly throw it away.\n\nThis (backward-compatible) enhancement allows callers to use NULL in the cases\nwhere they just don\u0027t care about getting back that end pointer.\n\n[akpm@linux-foundation.org: coding-style fixes]\nSigned-off-by: Robert P. J. Day \u003crpjday@crashcourse.ca\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "72fd4a35a824331d7a0f4168d7576502d95d34b3",
      "tree": "be27880bc36b7f62e8044a88b8744a35c5317714",
      "parents": [
        "262086cf5b5343c2b81c97b1c606058e921859df"
      ],
      "author": {
        "name": "Robert P. J. Day",
        "email": "rpjday@mindspring.com",
        "time": "Sat Feb 10 01:45:59 2007 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sun Feb 11 10:51:32 2007 -0800"
      },
      "message": "[PATCH] Numerous fixes to kernel-doc info in source files.\n\nA variety of (mostly) innocuous fixes to the embedded kernel-doc content in\nsource files, including:\n\n  * make multi-line initial descriptions single line\n  * denote some function names, constants and structs as such\n  * change erroneous opening \u0027/*\u0027 to \u0027/**\u0027 in a few places\n  * reword some text for clarity\n\nSigned-off-by: Robert P. J. Day \u003crpjday@mindspring.com\u003e\nCc: \"Randy.Dunlap\" \u003crdunlap@xenotime.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "22f2e280179946b8be1e2205b8654f2cb4abbf64",
      "tree": "bf40a2070381fc83a365eff736763264c466db16",
      "parents": [
        "8f63fdbbd6de7d734c036948bf7c4b2bebe3ad99"
      ],
      "author": {
        "name": "Derek Fults",
        "email": "dfults@sgi.com",
        "time": "Wed Dec 06 20:37:11 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.osdl.org",
        "time": "Thu Dec 07 08:39:35 2006 -0800"
      },
      "message": "[PATCH] get_options to allow a hypenated range for isolcpus\n\nThis allows a hyphenated range of positive numbers in the string passed\nto command line helper function, get_options.\n\nCurrently the command line option \"isolcpus\u003d\" takes as its argument a\nlist of cpus.\n\nFormat: \u003ccpu number\u003e,...,\u003ccpu number\u003e\nValid values of \u003ccpu_number\u003e  include all cpus, 0 to \"number of CPUs in\nsystem - 1\". This can get extremely long when isolating the majority of\ncpus on a large system.  The kernel isolcpus code would not need any\nchanging to use this feature.  To use it, the change would be in the\ncommand line format for \u0027isolcpus\u003d\u0027\nFormat:\n\u003ccpu number\u003e,...,\u003ccpu number\u003e\nor\n\u003ccpu number\u003e-\u003ccpu number\u003e  (must be a positive range in ascending\norder.)\nor a mixture\n\u003ccpu number\u003e,...,\u003ccpu number\u003e-\u003ccpu number\u003e\n\nSigned-off-by: Derek Fults \u003cdfults@sgi.com\u003e\nCc: \"Randy.Dunlap\" \u003crdunlap@xenotime.net\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"
    }
  ]
}
