)]}'
{
  "log": [
    {
      "commit": "f18190bd3407554ba6df30a1927e07e6cba93e56",
      "tree": "0df4f4f575242923d670ef77b4978d22a4a98bf4",
      "parents": [
        "a0ebb3ffd6c195011f7e4abdfc40f98342d36ce2"
      ],
      "author": {
        "name": "Lee Revell",
        "email": "rlrevell@joe-job.com",
        "time": "Mon Jun 26 18:30:00 2006 +0200"
      },
      "committer": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Jun 26 18:30:00 2006 +0200"
      },
      "message": "fix paniced-\u003epanicked typos\n\nIn a testament to the utter simplicity and logic of the English\nlanguage ;-), I found a single correct use - in kernel/panic.c - and\n10-15 incorrect ones.\n\nSigned-Off-By: Lee Revell \u003crlrevell@joe-job.com\u003e\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\n"
    },
    {
      "commit": "8428cfe893c1f13eb22cd879669f12b65900738f",
      "tree": "aa6de3530fd1387c3929d2f10015749c7bad10d0",
      "parents": [
        "beb25c6e27b21d0c0f7b9c2769fa334f1f9a8c2c"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "mita@miraclelinux.com",
        "time": "Wed Jan 11 12:17:30 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 11 18:42:10 2006 -0800"
      },
      "message": "[PATCH] kdump: add dmesg gdbmacro into document\n\nAdd gdb macro which print the kernel ring buffer into kdump docs\n\nSigned-off-by: Akinobu Mita \u003cmita@miraclelinux.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b089f4a68eccd9782c89262c0d7cae146d5a8a40",
      "tree": "a84874a801e54dd89e5093392aedf49cece4cb11",
      "parents": [
        "a3ea8ac8468f5c7fc65684331dfba3260d5b2d93"
      ],
      "author": {
        "name": "Vivek Goyal",
        "email": "vgoyal@in.ibm.com",
        "time": "Sat Jun 25 14:58:15 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Jun 25 16:24:52 2005 -0700"
      },
      "message": "[PATCH] kdump: Documentation for Kdump\n\nThis patch contains the documentation for the kexec based crash dump tool.\n\nQuick kdump-howto\n\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\n\n1) Download and build kexec-tools.\n\n2) Download and build the latest kexec/kdump (-mm) kernel patchset.\n   Two kernels need to be built in order to get this feature working.\n\n  A) First kernel:\n   a) Enable \"kexec system call\" feature:\n\tCONFIG_KEXEC\u003dy\n   b) Physical load address (use default):\n\tCONFIG_PHYSICAL_START\u003d0x100000\n   c) Enable \"sysfs file system support\":\n\tCONFIG_SYSFS\u003dy\n   d) Boot into first kernel with the command line parameter \"crashkernel\u003dY@X\":\n      For example: \"crashkernel\u003d64M@16M\".\n\n  B) Second kernel:\n   a) Enable \"kernel crash dumps\" feature:\n\tCONFIG_CRASH_DUMP\u003dy\n   b) Physical load addreess, use same load address as X in \"crashkernel\"\n      kernel parameter in d) above, e.g., 16 MB or 0x1000000.\n\tCONFIG_PHYSICAL_START\u003d0x1000000\n   c) Enable \"/proc/vmcore support\" (Optional, in Pseudo filesystems).\n\tCONFIG_PROC_VMCORE\u003dy\n\n3) Boot into the first kernel.\n\n4) Load the second kernel to be booted using:\n\n   kexec -p \u003csecond-kernel\u003e --crash-dump --args-linux --append\u003d\"root\u003d\u003croot-dev\u003e\n   maxcpus\u003d1 init 1\"\n\n5) System reboots into the second kernel when a panic occurs. A module can be\n   written to force the panic, for testing purposes.\n\n6) See Documentation/kdump.txt for how to read the first kernel\u0027s\n   memory image and how to analyze it.\n\nSigned-off-by: Hariprasad Nellitheertha \u003chari@in.ibm.com\u003e\nSigned-off-by: Eric Biederman \u003cebiederm@xmission.com\u003e\nSigned-off-by: Vivek Goyal \u003cvgoyal@in.ibm.com\u003e\nSigned-off-by: randy_dunlap \u003crdunlap@xenotime.net\u003e\nSigned-off-by: Maneesh Soni \u003cmaneesh@in.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    }
  ]
}
