)]}'
{
  "log": [
    {
      "commit": "197f51d29a01f46750fa6928409301aa8f1163d7",
      "tree": "de122a1746ea0a1357d5b8f38e2b94c29fc76318",
      "parents": [
        "9bd5e2c7886fca72f139cd8402488a2235957d41"
      ],
      "author": {
        "name": "Khem Raj",
        "email": "raj.khem@gmail.com",
        "time": "Mon Mar 25 09:04:40 2024 -0700"
      },
      "committer": {
        "name": "Kuppuswamy Sathyanarayanan",
        "email": "sathyanarayanan.kuppuswamy@linux.intel.com",
        "time": "Sun Apr 07 22:21:43 2024 -0700"
      },
      "message": "aer-inject: Include libgen.h for explicit basename prototype\n\nThe prototype for basename has been removed from string.h in the latest\nversions of musl [1]. This absence of prototype is flagged as an error\nby some compilers, such as clang-18. To resolve this, include libgen.h\nexplicitly, which provides the prototype for basename.\n\n[1] https://git.musl-libc.org/cgit/musl/commit/?id\u003d725e17ed6dff4d0cd22487bb64470881e86a92e7\nSigned-off-by: Khem Raj \u003craj.khem@gmail.com\u003e\n[sathya: Updated the commit log]\nSigned-off-by: Kuppuswamy Sathyanarayanan \u003csathyanarayanan.kuppuswamy@linux.intel.com\u003e\n"
    },
    {
      "commit": "9bd5e2c7886fca72f139cd8402488a2235957d41",
      "tree": "444350b8b2d4cd5d2cf92e26b47d28d64bcc7c62",
      "parents": [
        "2e98a2b5fd65b51144337a595e3c731507633f43"
      ],
      "author": {
        "name": "Andrew Patterson",
        "email": "andrew.patterson@hp.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "committer": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "message": "aer-inject: add some data file examples\n\nAdd some example data files illustrating some simple test cases and\nthe different syntax variations.\n\nSigned-off-by: Andrew Patterson \u003candrew.patterson@hp.com\u003e\nSigned-off-by: Huang Ying \u003cying.huang@intel.com\u003e\n"
    },
    {
      "commit": "2e98a2b5fd65b51144337a595e3c731507633f43",
      "tree": "fb91b2f70b743238eea2eff15786852c58c84fa0",
      "parents": [
        "2a78abc1c40e7d5a57e34bfd5ff6a841757b42cf"
      ],
      "author": {
        "name": "Andrew Patterson",
        "email": "andrew.patterson@hp.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "committer": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "message": "aer-inject: use aliases for various keywords\n\nIntroduce aliases for some of the longer-length keywords:\n\n\tPCI_ID \u003d ID\n\tCOR_STATUS \u003d COR \u003d CORRECTABLE\n\tUNCOR_STATUS \u003d UNCOR \u003d UNCORRECTABLE\n\tHEADER_LOG \u003d HL\n\nSigned-off-by: Andrew Patterson \u003candrew.patterson@hp.com\u003e\nSigned-off-by: Huang Ying \u003cying.huang@intel.com\u003e\n"
    },
    {
      "commit": "2a78abc1c40e7d5a57e34bfd5ff6a841757b42cf",
      "tree": "d34afb0750dc875bce72d36b53bb1c1e41052e20",
      "parents": [
        "c7cee585aada78f1ead17be17300c6450bc2ef55"
      ],
      "author": {
        "name": "Andrew Patterson",
        "email": "andrew.patterson@hp.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "committer": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "message": "aer-inject: use command-line option to specify PCI ID\n\nThe PCI ID may be specified on the command-line using -s|--id instead\nof taking it from the data file using the PCI_ID keyword.  The PCI_ID\nspecified in data file will be overrided by the command-line option.\n\nAdded -v|--version and -h|--help command-line options.\n\nSigned-off-by: Andrew Patterson \u003candrew.patterson@hp.com\u003e\nSigned-off-by: Huang Ying \u003cying.huang@intel.com\u003e\n"
    },
    {
      "commit": "c7cee585aada78f1ead17be17300c6450bc2ef55",
      "tree": "3bb1e8461b1f345c410882e85b6e40b0115c6fec",
      "parents": [
        "857ea0e4b4bff0c0fd4d2309991158e4358b18e5"
      ],
      "author": {
        "name": "Andrew Patterson",
        "email": "andrew.patterson@hp.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "committer": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "message": "aer-inject: use lspci-style PCI ID\n\nUse the lspci -s style of specificying a PCI device\n[\u003cdomain\u003e]:]\u003cbus\u003e:\u003cslot\u003e.\u003cfunc\u003e instead of\nDOMAIN \u003cdomain\u003e BUS \u003cbus\u003e DEV \u003cdev\u003e FN \u003cfunc\u003e.\n\nHuang Ying: check the syntax and extract the string of PCI_ID in lex,\nthen parse the string later in yacc.\n\nSigned-off-by: Andrew Patterson \u003candrew.patterson@hp.com\u003e\nSigned-off-by: Huang Ying \u003cying.huang@intel.com\u003e\n"
    },
    {
      "commit": "857ea0e4b4bff0c0fd4d2309991158e4358b18e5",
      "tree": "59c3a59fa9e12bb6f36a95f373ebc65a99676052",
      "parents": [
        "cb0b699c250586682101478c2c05a438fb354b52"
      ],
      "author": {
        "name": "Andrew Patterson",
        "email": "andrew.patterson@hp.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "committer": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Wed Mar 10 16:01:01 2010 +0800"
      },
      "message": "aer-inject: support multiple PCI domains\n\nAdd support for multiple PCI domains (segments).  This patch requires\ncorresponding support in the aer_inject driver (2.6.33 or later).\n\nSigned-off-by: Andrew Patterson \u003candrew.patterson@hp.com\u003e\nSigned-off-by: Huang Ying \u003cying.huang@intel.com\u003e\n"
    },
    {
      "commit": "cb0b699c250586682101478c2c05a438fb354b52",
      "tree": "ec278fe4981ec16d963d9d0d53f8ed13fa9578f7",
      "parents": [
        "24a858f297828e1f92d05bead269400a93477a45"
      ],
      "author": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Wed Sep 23 09:36:01 2009 +0800"
      },
      "committer": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Wed Sep 23 09:36:01 2009 +0800"
      },
      "message": "Fix space issue in Makefile\n\nTAB instead of space should be used before commands in rules.\n\nSigned-off-by: Huang Ying \u003cying.huang@intel.com\u003e\n"
    },
    {
      "commit": "24a858f297828e1f92d05bead269400a93477a45",
      "tree": "39a8ee6eb77af54fc2fe8333580898e4e6af4d9e",
      "parents": [
        "7603e362d152dbe3d3917e81371ebd42aa65a582"
      ],
      "author": {
        "name": "Philipp Thomas",
        "email": "pth@suse.de",
        "time": "Wed Sep 02 18:13:12 2009 +0800"
      },
      "committer": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Mon Sep 07 16:59:39 2009 +0800"
      },
      "message": "Add install target in Makefile\n\nAdd install target in Makefile\n\n"
    },
    {
      "commit": "7603e362d152dbe3d3917e81371ebd42aa65a582",
      "tree": "0c9d6cc0f60d0c70a03883fa7021a43df3f9f58d",
      "parents": [],
      "author": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Tue Apr 28 15:27:27 2009 +0800"
      },
      "committer": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Tue Apr 28 15:27:27 2009 +0800"
      },
      "message": "Initial commit\n"
    }
  ]
}
