)]}'
{
  "log": [
    {
      "commit": "68ea809af47d8a4dd92dd3a8720882767fdf51b6",
      "tree": "3844a706dabb83fb6535181471cccde7beba489e",
      "parents": [
        "d71cb81af3817193bc605de061da0499934263a6"
      ],
      "author": {
        "name": "David Altobelli",
        "email": "david.altobelli@hp.com",
        "time": "Fri Sep 18 12:46:26 2009 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Dec 11 11:24:51 2009 -0800"
      },
      "message": "hpilo: add locking comment\n\nAdd explanation about lock nesting and purpose of each lock in hpilo.\n\nSigned-off-by: David Altobelli \u003cdavid.altobelli@hp.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "9f7048412163d8f8175ba01063f3db02d42cc6a7",
      "tree": "900018fc99f3218d146012cacb7eda9a98d48a23",
      "parents": [
        "66d5e5169c96f3e0175235e2bcbaedc8bc1c728f"
      ],
      "author": {
        "name": "David Altobelli",
        "email": "david.altobelli@hp.com",
        "time": "Mon Aug 17 17:07:33 2009 -0600"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Sep 15 09:50:48 2009 -0700"
      },
      "message": "hpilo: add interrupt handler\n\nAdd interrupt handler to hpilo.  This is enablement for poll handler,\nand it also simplifies the logic for handling an iLO reset, because now\nonly the interrupt handler needs to look for reset, the file system\ninterfaces only need to return failure when a reset has happened.\n\nSigned-off-by: David Altobelli \u003cdavid.altobelli@hp.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "891f7d73ea30f925596b90bcf21020bfc5d90f3f",
      "tree": "ee2cf87038f657ead8e6df62acaa47f9805f0215",
      "parents": [
        "63cd885426872254e82dac2d9e13ea4f720c21dc"
      ],
      "author": {
        "name": "David Altobelli",
        "email": "david.altobelli@hp.com",
        "time": "Tue Mar 31 15:23:53 2009 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Apr 01 08:59:18 2009 -0700"
      },
      "message": "hpilo: reduce frequency of IO operations\n\nChange hpilo open and close logic to spin for 10usec between checking device,\nrather than every usec.\n\nBecause the loop is coded to take up to 10ms, it seemed prudent to\nincrease the interval between polling the device, to reduce the load on\nthe system and allow more other work to happen.\n\nSigned-off-by: David Altobelli \u003cdavid.altobelli@hp.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "c073b2db006ba9370be1eecc36a1be1d9ce31310",
      "tree": "6aed14266d19840b943d9e14c4bdeb3830296ec9",
      "parents": [
        "58763a297405024d23d8f1d0bba3e6603660c4b6"
      ],
      "author": {
        "name": "David Altobelli",
        "email": "david.altobelli@hp.com",
        "time": "Wed Feb 04 15:11:58 2009 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Feb 05 12:56:46 2009 -0800"
      },
      "message": "hpilo: open/close fix\n\nThe device can take a while to respond to an open/close request, so\nincrease the time kernel will wait for response (1 ms to 10ms).\n\nAlso, properly clean up a channel on a failed open, by calling the channel\nclose routine.  Just freeing the memory isn\u0027t sufficient, the device needs\nto be informed that the channel is no longer open, and the device memory\ncleared of references to freed dma buffer.\n\nSigned-off-by: David Altobelli \u003cdavid.altobelli@hp.com\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "89bcb05d9bbf8bd559988bca4f2579defd28d008",
      "tree": "9bf9ce125be55fbf169628b163dbd1367a840ddf",
      "parents": [
        "d95d62c018209355c0dc998682ff792432aa870c"
      ],
      "author": {
        "name": "David Altobelli",
        "email": "david.altobelli@hp.com",
        "time": "Wed Jul 02 09:38:53 2008 -0600"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Jul 21 21:55:02 2008 -0700"
      },
      "message": "HP iLO driver\n\nA driver for the HP iLO/iLO2 management processor, which allows userspace\nprograms to query the management processor.  Programs can open a channel\nto the device (/dev/hpilo/dXccbN), and use this to send/receive queries.  \nThe O_EXCL open flag is used to indicate that a particular channel cannot\nbe shared between processes.  This driver will replace various packages\nHP has shipped, including hprsm and hp-ilo.\n\nSigned-off-by: David Altobelli \u003cdavid.altobelli@hp.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    }
  ]
}
