)]}'
{
  "log": [
    {
      "commit": "d716f0b8a57f8577bcd869e7dcb5a0add9f6fc5e",
      "tree": "53717a765b36736b7d20b8fc4aec790db5da8ed8",
      "parents": [
        "7bd8826915989f1bd6917c11b0a4151b129e68cb"
      ],
      "author": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:32 2008 -0500"
      },
      "committer": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:32 2008 -0500"
      },
      "message": "SUNRPC: nfsacl_encode/nfsacl_decode should be exported as GPL-only\n\nAgain, this has never been intended as a public abi for out-of-tree\nmodules.\n\nSigned-off-by: Trond Myklebust \u003cTrond.Myklebust@netapp.com\u003e\n"
    },
    {
      "commit": "7bd8826915989f1bd6917c11b0a4151b129e68cb",
      "tree": "49aabaf0cefd07c91ab622358550acab8545cfb4",
      "parents": [
        "468039ee469c5772d3e39f736923c5e0c31017e2"
      ],
      "author": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:32 2008 -0500"
      },
      "committer": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:32 2008 -0500"
      },
      "message": "SUNRPC: rpcsec_gss modules should not be used by out-of-tree code\n\nSigned-off-by: Trond Myklebust \u003cTrond.Myklebust@netapp.com\u003e\n"
    },
    {
      "commit": "468039ee469c5772d3e39f736923c5e0c31017e2",
      "tree": "1e8d193748b509597979340d04092837abd13214",
      "parents": [
        "88a9fe8cae3bb52e82489447f45e8d7ba1409ca8"
      ],
      "author": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:31 2008 -0500"
      },
      "committer": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:31 2008 -0500"
      },
      "message": "SUNRPC: Convert the xdr helpers and rpc_pipefs to EXPORT_SYMBOL_GPL\n\nWe\u0027ve never considered the sunrpc code as part of any ABI to be used by\nout-of-tree modules.\n\nSigned-off-by: Trond Myklebust \u003cTrond.Myklebust@netapp.com\u003e\n"
    },
    {
      "commit": "88a9fe8cae3bb52e82489447f45e8d7ba1409ca8",
      "tree": "acef9d0b7d4c8c2e98faf852ab8bc0173842fbe5",
      "parents": [
        "136221fc3219b3805c48db5da065e8e3467175d4"
      ],
      "author": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:31 2008 -0500"
      },
      "committer": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:31 2008 -0500"
      },
      "message": "SUNRPC: Remove the last remnant of the BKL...\n\nSomehow, this escaped the previous purge. There should be no need to keep\nany extra locks in the XDR callbacks.\n\nThe NFS client XDR code only writes into private objects, whereas all reads\nof shared objects are confined to fields that do not change, such as\nfilehandles...\n\nDitto for lockd, the NFSv2/v3 client mount code, and rpcbind.\n\nThe nfsd XDR code may require the BKL, but since it does a synchronous RPC\ncall from a thread that already holds the lock, that issue is moot.\n\nSigned-off-by: Trond Myklebust \u003cTrond.Myklebust@netapp.com\u003e\n"
    },
    {
      "commit": "136221fc3219b3805c48db5da065e8e3467175d4",
      "tree": "62fa68f46cb765143b6159993eceb30a6b81f9b2",
      "parents": [
        "3d44cc3e01ee1b40317f79ed54324e25c4f848df"
      ],
      "author": {
        "name": "Wu Fengguang",
        "email": "fengguang.wu@intel.com",
        "time": "Tue Dec 23 15:21:30 2008 -0500"
      },
      "committer": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Tue Dec 23 15:21:30 2008 -0500"
      },
      "message": "nfs: remove redundant tests on reading new pages\n\naops-\u003ereadpages() and its NFS helper readpage_async_filler() will only\nbe called to do readahead I/O for newly allocated pages. So it\u0027s not\nnecessary to test for the always 0 dirty/uptodate page flags.\n\nThe removal of nfs_wb_page() call also fixes a readahead bug: the NFS\nreadahead has been synchronous since 2.6.23, because that call will\nclear PG_readahead, which is the reminder for asynchronous readahead.\n\nMore background: the PG_readahead page flag is shared with PG_reclaim,\none for read path and the other for write path. clear_page_dirty_for_io()\nunconditionally clears PG_readahead to prevent possible readahead residuals,\nassuming itself to be always called in the write path. However, NFS is one\nand the only exception in that it _always_ calls clear_page_dirty_for_io()\nin the read path, i.e. for readpages()/readpage().\n\nCc: Trond Myklebust \u003cTrond.Myklebust@netapp.com\u003e\nSigned-off-by: Wu Fengguang \u003cwfg@linux.intel.com\u003e\nSigned-off-by: Trond Myklebust \u003cTrond.Myklebust@netapp.com\u003e\n"
    },
    {
      "commit": "3d44cc3e01ee1b40317f79ed54324e25c4f848df",
      "tree": "99feb824dd6beda01bf11c56e412ff147bf24551",
      "parents": [
        "ab65387243f47a7bc11725f733c86bf27248b326"
      ],
      "author": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Sat Dec 20 21:27:34 2008 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Dec 20 14:13:45 2008 -0800"
      },
      "message": "Null pointer deref with hrtimer_try_to_cancel()\n\nImpact: Prevent kernel crash with posix timer clockid CLOCK_MONOTONIC_RAW\n\ncommit 2d42244ae71d6c7b0884b5664cf2eda30fb2ae68 (clocksource:\nintroduce CLOCK_MONOTONIC_RAW) introduced a new clockid, which is only\navailable to read out the raw not NTP adjusted system time.\n\nThe above commit did not prevent that a posix timer can be created\nwith that clockid. The timer_create() syscall succeeds and initializes\nthe timer to a non existing hrtimer base. When the timer is deleted\neither by timer_delete() or by the exit() cleanup the kernel crashes.\n\nPrevent the creation of timers for CLOCK_MONOTONIC_RAW by setting the\nposix clock function to no_timer_create which returns an error code.\n\nReported-and-tested-by: Eric Sesterhenn \u003csnakebyte@gmx.de\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nAcked-by: Oleg Nesterov \u003coleg@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "ab65387243f47a7bc11725f733c86bf27248b326",
      "tree": "0857b074b984b1e1dd70d1cbabe22ee618ccd498",
      "parents": [
        "e6a997eda9f76e83b7820b6e71406a43374b9f0f",
        "f1d9e4586e79e1fc7b26d1c567599a904013f199"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Dec 20 11:07:31 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Dec 20 11:07:31 2008 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:\n  fs/9p: change simple_strtol to simple_strtoul\n  9p: convert d_iname references to d_name.name\n  9p: Remove potentially bad parameter from function entry debug print.\n"
    },
    {
      "commit": "e6a997eda9f76e83b7820b6e71406a43374b9f0f",
      "tree": "4450ece27c396a57a64dfd784bd2c08ebe82193d",
      "parents": [
        "9a1d1035631ad8b3edf301b273c30bdfc75de01e",
        "280a9ca5d0663b185ddc4443052076c29652a328"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Dec 20 11:07:18 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Dec 20 11:07:18 2008 -0800"
      },
      "message": "Merge branch \u0027x86-fixes-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip\n\n* \u0027x86-fixes-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:\n  x86: fix resume (S2R) broken by Intel microcode module, on A110L\n  x86 gart: don\u0027t complain if no AMD GART found\n  AMD IOMMU: panic if completion wait loop fails\n  AMD IOMMU: set cmd buffer pointers to zero manually\n  x86: re-enable MCE on secondary CPUS after suspend/resume\n  AMD IOMMU: allocate rlookup_table with __GFP_ZERO\n"
    },
    {
      "commit": "280a9ca5d0663b185ddc4443052076c29652a328",
      "tree": "4b6482ba47ca73cab099a2899b3af5594f7d9104",
      "parents": [
        "c9bc03ac312c6b65a32a183424f1f1383d94f5cf"
      ],
      "author": {
        "name": "Dmitry Adamushko",
        "email": "dmitry.adamushko@gmail.com",
        "time": "Sat Dec 20 00:15:24 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Sat Dec 20 14:29:20 2008 +0100"
      },
      "message": "x86: fix resume (S2R) broken by Intel microcode module, on A110L\n\nImpact: fix deadlock\n\nThis is in response to the following bug report:\n\nBug-Entry       : http://bugzilla.kernel.org/show_bug.cgi?id\u003d12100\nSubject         : resume (S2R) broken by Intel microcode module, on A110L\nSubmitter       : Andreas Mohr \u003candi@lisas.de\u003e\nDate            : 2008-11-25 08:48 (19 days old)\nHandled-By      : Dmitry Adamushko \u003cdmitry.adamushko@gmail.com\u003e\n\n[ The deadlock scenario has been discovered by Andreas Mohr ]\n\nI think I might have a logical explanation why the system:\n\n  (http://bugzilla.kernel.org/show_bug.cgi?id\u003d12100)\n\nmight hang upon resuming, OTOH it should have likely hanged each and every time.\n\n(1) possible deadlock in microcode_resume_cpu() if either \u0027if\u0027 section is\ntaken;\n\n(2) now, I don\u0027t see it in spec. and can\u0027t experimentally verify it (newer\nucodes don\u0027t seem to be available for my Core2duo)... but logically-wise, I\u0027d\nthink that when read upon resuming, the \u0027microcode revision\u0027 (MSR 0x8B) should\nbe back to its original one (we need to reload ucode anyway so it doesn\u0027t seem\nlogical if a cpu doesn\u0027t drop the version)... if so, the comparison with\nmemcmp() for the full \u0027struct cpu_signature\u0027 is wrong... and that\u0027s how one of\nthe aforementioned \u0027if\u0027 sections might have been triggered - leading to a\ndeadlock.\n\nObviously, in my tests I simulated loading/resuming with the ucode of the same\nversion (just to see that the file is loaded/re-loaded upon resuming) so this\nissue has never popped up.\n\nI\u0027d appreciate if someone with an appropriate system might give a try to the\n2nd patch (titled \"fix a comparison \u0026\u0026 deadlock...\").\n\nIn any case, the deadlock situation is a must-have fix.\n\nReported-by: Andreas Mohr \u003candi@lisas.de\u003e\nSigned-off-by: Dmitry Adamushko \u003cdmitry.adamushko@gmail.com\u003e\nTested-by: Andreas Mohr \u003candi@lisas.de\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nCc: \u003cstable@kernel.org\u003e\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "f1d9e4586e79e1fc7b26d1c567599a904013f199",
      "tree": "394c1d5b17a023f83f44ad71ae69daec0dfc94ad",
      "parents": [
        "7dd0cdc51c126915e243ee3291f7b6b5ea5e5833"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Fri Dec 19 16:50:22 2008 -0600"
      },
      "committer": {
        "name": "Eric Van Hensbergen",
        "email": "ericvh@gmail.com",
        "time": "Fri Dec 19 16:50:22 2008 -0600"
      },
      "message": "fs/9p: change simple_strtol to simple_strtoul\n\nSince v9ses-\u003euid is unsigned, it would seem better to use simple_strtoul that\nsimple_strtol.\n\nA simplified version of the semantic patch that makes this change is as\nfollows: (http://www.emn.fr/x-info/coccinelle/)\n\n// \u003csmpl\u003e\n@r2@\nlong e;\nposition p;\n@@\n\ne \u003d simple_strtol@p(...)\n\n@@\nposition p !\u003d r2.p;\ntype T;\nT e;\n@@\n\ne \u003d\n- simple_strtol@p\n+ simple_strtoul\n  (...)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nAcked-by: Eric Van Hensbergen \u003cericvh@gmail.com\u003e\n\n"
    },
    {
      "commit": "7dd0cdc51c126915e243ee3291f7b6b5ea5e5833",
      "tree": "484d45a8f9c9be61fad215a083e64e6a83be0043",
      "parents": [
        "6ff232070a1088807e24f657b5d6f299f1ec32f6"
      ],
      "author": {
        "name": "Wu Fengguang",
        "email": "fengguang.wu@intel.com",
        "time": "Fri Dec 19 16:47:40 2008 -0600"
      },
      "committer": {
        "name": "Eric Van Hensbergen",
        "email": "ericvh@gmail.com",
        "time": "Fri Dec 19 16:47:40 2008 -0600"
      },
      "message": "9p: convert d_iname references to d_name.name\n\nd_iname is rubbish for long file names.\nUse d_name.name in printks instead.\n\nSigned-off-by: Wu Fengguang \u003cwfg@linux.intel.com\u003e\nAcked-by: Eric Van Hensbergen \u003cericvh@gmail.com\u003e\n\n"
    },
    {
      "commit": "6ff232070a1088807e24f657b5d6f299f1ec32f6",
      "tree": "f6affcc42b834f9a20fa9e70eb30fc6a7ff63e54",
      "parents": [
        "9a1d1035631ad8b3edf301b273c30bdfc75de01e"
      ],
      "author": {
        "name": "Duane Griffin",
        "email": "duaneg@dghda.com",
        "time": "Fri Dec 19 16:45:21 2008 -0600"
      },
      "committer": {
        "name": "Eric Van Hensbergen",
        "email": "ericvh@gmail.com",
        "time": "Fri Dec 19 16:45:21 2008 -0600"
      },
      "message": "9p: Remove potentially bad parameter from function entry debug print.\n\nSigned-off-by: Duane Griffin \u003cduaneg@dghda.com\u003e\nSigned-off-by: Eric Van Hensbergen \u003cericvh@gmail.com\u003e\n\n"
    },
    {
      "commit": "9a1d1035631ad8b3edf301b273c30bdfc75de01e",
      "tree": "c4555f04dafd591be5fd75ea9343d8386d350223",
      "parents": [
        "8837e341cc76372716b1576dd88fbf832acd29d4",
        "a6da74cb077e88a604e5b2a6663b44c221f0ae75"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:37:23 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:37:23 2008 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6:\n  [SCSI] mpt fusion: clear list of outstanding commands on host reset\n  [SCSI] scsi_lib: only call scsi_unprep_request() under queue lock\n  [SCSI] ibmvstgt: move crq_queue_create to the end of initialization\n  [SCSI] libiscsi REGRESSION: fix passthrough support with older iscsi tools\n  [SCSI] aacraid: disable Dell Percraid quirk on Adaptec 2200S and 2120S\n"
    },
    {
      "commit": "8837e341cc76372716b1576dd88fbf832acd29d4",
      "tree": "7e11c9c6116e570a5305a2101d41bae0f1b226dd",
      "parents": [
        "281981ca87b9181e5408b0a7b33d3d7cf0c9a5ca",
        "5bd9c69649754cd4b1a96cdbe5caa4e5d1d35eb5"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:37:07 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:37:07 2008 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6:\n  ALSA: Fix a Oops bug in omap soc driver.\n  ALSA: hda - Remove non-working headphone control for Dell laptops\n  ALSA: hda - Add no-jd model for IDT 92HD73xx\n  ALSA: Revert \"ALSA: hda: removed unneeded hp_nid references\"\n  ALSA: hda - Add quirk for Dell Studio 17\n  ALSA: hda - Fix silent HP output on D975\n"
    },
    {
      "commit": "281981ca87b9181e5408b0a7b33d3d7cf0c9a5ca",
      "tree": "ce047de463a4da54d91b826312a5f5458f4fd6f4",
      "parents": [
        "f3485c82f75eeb951162dda663f45714627a85f5",
        "d8a0be6ab7ba1ffa43e7ea0dcdde3e8b68d4f762"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:36:49 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:36:49 2008 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.dk/linux-2.6-block\n\n* \u0027for-linus\u0027 of git://git.kernel.dk/linux-2.6-block:\n  cciss: fix problem that deleting multiple logical drives could cause a panic\n"
    },
    {
      "commit": "f3485c82f75eeb951162dda663f45714627a85f5",
      "tree": "8ffbcdba50bbbecbf1beee698a515d3342b415ac",
      "parents": [
        "db873cfc7c0a6f34ab0f1c811fc245273adf35af",
        "ac5c4e76180a74c7f922f6fa71ace0cef45fa433"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:36:04 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:36:04 2008 -0800"
      },
      "message": "Merge branch \u0027drm-fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6\n\n* \u0027drm-fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6:\n  drm/i915: GEM on PAE has problems - disable it for now.\n  drm/i915: Don\u0027t return busy for buffers left on the flushing list.\n"
    },
    {
      "commit": "db873cfc7c0a6f34ab0f1c811fc245273adf35af",
      "tree": "53b28b8a53f266cf4ca7967c5c0723b09d4b8307",
      "parents": [
        "eae34c67940f2a71837ed30d571b93572186d46b",
        "a2ed9615e3222645007fc19991aedf30eed3ecfd"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:34:36 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:34:36 2008 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://neil.brown.name/md\n\n* \u0027for-linus\u0027 of git://neil.brown.name/md:\n  md: Don\u0027t read past end of bitmap when reading bitmap.\n"
    },
    {
      "commit": "eae34c67940f2a71837ed30d571b93572186d46b",
      "tree": "8bfb4a473601e8d87eadd8bf4f66cf3122be35c7",
      "parents": [
        "929096fe9ff1f4b3645cf3919527ab47e8d5e17c",
        "3e3d0e9246d0eccc1da800348fc1b9199ae3d768"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:33:10 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Dec 19 11:33:10 2008 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6:\n  PCI hotplug: ibmphp: Fix module ref count underflow\n  PCI hotplug: acpiphp wants a 64-bit _SUN\n  PCI: pciehp: fix unexpected power off with pciehp_force\n  PCI: fix aer resume sanity check\n"
    },
    {
      "commit": "5bd9c69649754cd4b1a96cdbe5caa4e5d1d35eb5",
      "tree": "f1dc7af60020ac245fdbedc108c7c790ad7d0c9c",
      "parents": [
        "8f55c1e51fbb03998708bdd97d5b6665ab92462d",
        "19b3f31609dc8be3a56c78dcb7da723f10f7009c"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 15:37:12 2008 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 15:37:12 2008 +0100"
      },
      "message": "Merge branch \u0027fix/asoc\u0027 into for-linus\n"
    },
    {
      "commit": "19b3f31609dc8be3a56c78dcb7da723f10f7009c",
      "tree": "c907a9bf49025874316b09b6a15f8ce0a3ac4e85",
      "parents": [
        "13d428afc007fcfcd6deeb215618f54cf9c0cae6"
      ],
      "author": {
        "name": "Stanley Miao",
        "email": "stanley.miao@windriver.com",
        "time": "Fri Dec 19 22:08:22 2008 +0800"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 15:36:35 2008 +0100"
      },
      "message": "ALSA: Fix a Oops bug in omap soc driver.\n\nThere will be a Oops or frequent underrun messages when playing music with\nomap soc driver, this is because a data region is incorretly sized, other data\nregion will be overwriten when writing to this data region.\n\nSigned-off-by: Stanley Miao \u003cstanley.miao@windriver.com\u003e\nAcked-by: Jarkko Nikula \u003cjarkko.nikula@nokia.com\u003e\nCc: stable@kernel.org\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "8f55c1e51fbb03998708bdd97d5b6665ab92462d",
      "tree": "7fe1a0b88e59eff30531981cceed7ac85fcf5ef5",
      "parents": [
        "9e43f0de690211cf7153b5f3ec251bc315647ada"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 14:02:32 2008 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 14:23:08 2008 +0100"
      },
      "message": "ALSA: hda - Remove non-working headphone control for Dell laptops\n\nThe previous commit re-enabled hp_nid setup for IDT92HD73*, but\nit\u0027s unneeded indeed for Dell laptops that have multiple headphones.\nSetting the extra hp_nid results in a non-working \"Headpohne\" mixer\ncontrol.  Thus hp_nid should be 0 for these dell models.\n\nAlso, the automatic addition of hp_nid should check whether it\u0027s\na dual-HP model or not.  For dual-HPs, the pins are already checked\nby the early workaround.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "9e43f0de690211cf7153b5f3ec251bc315647ada",
      "tree": "8264931a2001f19e5a9e4948550db64deea96ff1",
      "parents": [
        "85f13b673f6a59d29529b2a60b88306c68e7b56c"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Wed Dec 17 14:51:01 2008 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 08:22:26 2008 +0100"
      },
      "message": "ALSA: hda - Add no-jd model for IDT 92HD73xx\n\nAdded the model without the jack-detection for some desktops that\nhave really no jack-detection.  The recent driver caused regressions\nregarding the sound output on such machines.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "85f13b673f6a59d29529b2a60b88306c68e7b56c",
      "tree": "a9b0dcad78d72c0548e0433960066a4cb33e11aa",
      "parents": [
        "fa620e97feae731f3d461baaac4da0b127b6fd8e"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 08:20:38 2008 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 08:20:38 2008 +0100"
      },
      "message": "ALSA: Revert \"ALSA: hda: removed unneeded hp_nid references\"\n\nThis reverts commit 07f455f779acfb3eba4921fd1399761559b10fa9.\n    ALSA: hda: removed unneeded hp_nid references\n\n    Removed unneeded hp_nid references for 92hd73xx codec family.\n\nThis caused the silent output on some Intel desktops due to missing\nrouting of widget 0x0a and 0x0d.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "d8a0be6ab7ba1ffa43e7ea0dcdde3e8b68d4f762",
      "tree": "b0e66e1dddaea05d9bc0b85461ffd058229a672f",
      "parents": [
        "929096fe9ff1f4b3645cf3919527ab47e8d5e17c"
      ],
      "author": {
        "name": "Stephen M. Cameron",
        "email": "scameron@beardog.cca.cpqcorp.net",
        "time": "Thu Dec 18 14:55:11 2008 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Fri Dec 19 08:14:07 2008 +0100"
      },
      "message": "cciss: fix problem that deleting multiple logical drives could cause a panic\n\nFix problem that deleting multiple logical drives could cause a panic.\n\nIt fixes a panic which can be easily reproduced in the following way: Just\ncreate several \"arrays,\" each with multiple logical drives via hpacucli,\nthen delete the first array, and it will blow up in deregister_disk(), in\nthe call to get_host() when it tries to dig the hba pointer out of a NULL\nqueue pointer.\n\nThe problem has been present since my code to make rebuild_lun_table\nbehave better went in.\n\nSigned-off-by: Stephen M. Cameron \u003cscameron@beardog.cca.cpqcorp.net\u003e\nSigned-off-by: Jens Axboe \u003cjens.axboe@oracle.com\u003e\n"
    },
    {
      "commit": "fa620e97feae731f3d461baaac4da0b127b6fd8e",
      "tree": "b5eb9bcdae411e7424ed4793fcd8d7ef13c9dc11",
      "parents": [
        "e28d83223a1e5672174dcdc6b73c1be3fa3de877"
      ],
      "author": {
        "name": "Joerg Schirottke",
        "email": "master@kanotix.com",
        "time": "Fri Dec 19 08:13:49 2008 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Dec 19 08:13:49 2008 +0100"
      },
      "message": "ALSA: hda - Add quirk for Dell Studio 17\n\nAdded the matching model\u003ddell-m6 for Dell Studio 17 laptop.\n\nSigned-off-by: Joerg Schirottke \u003cmaster@kanotix.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "ac5c4e76180a74c7f922f6fa71ace0cef45fa433",
      "tree": "04ba893ac3b43fb24fa413f1ad8f37bff5cb7ee5",
      "parents": [
        "c4de0a5d671e3af38dc3496538e391782aecc3a5"
      ],
      "author": {
        "name": "Dave Airlie",
        "email": "airlied@redhat.com",
        "time": "Fri Dec 19 15:38:34 2008 +1000"
      },
      "committer": {
        "name": "Dave Airlie",
        "email": "airlied@redhat.com",
        "time": "Fri Dec 19 15:38:34 2008 +1000"
      },
      "message": "drm/i915: GEM on PAE has problems - disable it for now.\n\nOn PAE systems, GEM allocates pages using shmem, and passes these\npages to be bound into AGP, however the AGP interfaces + the x86\nset_memory interfaces all take unsigned long not dma_addr_t.\n\nThe initial fix for this was a mess, so we need to do this correctly\nfor 2.6.29.\n\nSigned-off-by: Dave Airlie \u003cairlied@redhat.com\u003e\n"
    },
    {
      "commit": "c4de0a5d671e3af38dc3496538e391782aecc3a5",
      "tree": "7144b9d1914e5fa7d730adadfb8b53f138bd0140",
      "parents": [
        "929096fe9ff1f4b3645cf3919527ab47e8d5e17c"
      ],
      "author": {
        "name": "Eric Anholt",
        "email": "eric@anholt.net",
        "time": "Sun Dec 14 19:05:04 2008 -0800"
      },
      "committer": {
        "name": "Dave Airlie",
        "email": "airlied@redhat.com",
        "time": "Fri Dec 19 15:34:32 2008 +1000"
      },
      "message": "drm/i915: Don\u0027t return busy for buffers left on the flushing list.\n\nThese buffers don\u0027t have active rendering still occurring to them, they just\nneed either a flush to be emitted or a retire_requests to occur so that we\nnotice they\u0027re done.  Return unbusy so that one of the two occurs.  The two\nexpected consumers of this interface (OpenGL and libdrm_intel BO cache) both\nwant this behavior.\n\nSigned-off-by: Eric Anholt \u003ceric@anholt.net\u003e\nAcked-by: Keith Packard \u003ckeithp@keithp.com\u003e\nSigned-off-by: Dave Airlie \u003cairlied@redhat.com\u003e\n"
    },
    {
      "commit": "a2ed9615e3222645007fc19991aedf30eed3ecfd",
      "tree": "2a07cc815f5c348f085ad96a5660e3213da955f4",
      "parents": [
        "55dac3a5553b13891f0ae4bbd11920619b5436d4"
      ],
      "author": {
        "name": "NeilBrown",
        "email": "neilb@suse.de",
        "time": "Fri Dec 19 16:25:01 2008 +1100"
      },
      "committer": {
        "name": "NeilBrown",
        "email": "neilb@suse.de",
        "time": "Fri Dec 19 16:25:01 2008 +1100"
      },
      "message": "md: Don\u0027t read past end of bitmap when reading bitmap.\n\nWhen we read the write-intent-bitmap off the device, we currently\nread a whole number of pages.\nWhen PAGE_SIZE is 4K, this works due to the alignment we enforce\non the superblock and bitmap.\nWhen PAGE_SIZE is 64K, this case read past the end-of-device\nwhich causes an error.\n\nWhen we write the superblock, we ensure to clip the last page\nto just be the required size.  Copy that code into the read path\nto just read the required number of sectors.\n\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nCc: stable@kernel.org\n"
    },
    {
      "commit": "929096fe9ff1f4b3645cf3919527ab47e8d5e17c",
      "tree": "20a09622b27b1ff0e1b645a260478671fb05f91e",
      "parents": [
        "59da1f87b276c593b852766c2fdcad62835970f7"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 17:20:13 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 17:20:13 2008 -0800"
      },
      "message": "Linux 2.6.28-rc9\n"
    },
    {
      "commit": "59da1f87b276c593b852766c2fdcad62835970f7",
      "tree": "3c3ace81c2132aaf13223df10c4491c38a46c976",
      "parents": [
        "69098bac169d630a777b362470f20451b9446e39",
        "a06d568f7c5e40e34ea64881842deb8f4382babf"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 12:05:53 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 12:05:53 2008 -0800"
      },
      "message": "Merge branch \u0027fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx\n\n* \u0027fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx:\n  async_xor: dma_map destination DMA_BIDIRECTIONAL\n  dmaengine: protect \u0027id\u0027 from concurrent registrations\n  ioat: wait for self-test completion\n"
    },
    {
      "commit": "69098bac169d630a777b362470f20451b9446e39",
      "tree": "af916fdbdb51940ec6050628401d300c83d129a9",
      "parents": [
        "b3806c3b940540ba9386a334ff0cc2597a5af60e",
        "8983fdb50878ae6fa2ced336ef6072f8d5d502e3"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 12:01:02 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 12:01:02 2008 -0800"
      },
      "message": "Merge branch \u0027fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6\n\n* \u0027fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6:\n  avr32: favr-32 build fix\n  ATSTK1006: Fix boot from NAND flash\n  avr32: remove .note.gnu.build-id section when making vmlinux.bin\n  avr32: Enable pullup on USART TX lines\n"
    },
    {
      "commit": "b3806c3b940540ba9386a334ff0cc2597a5af60e",
      "tree": "86da1fe926fa6051201046f5d351f0b46aa101b3",
      "parents": [
        "3653b9a8db41299a8735008026dad82035f8ca9b",
        "3298a7388c00227e736d1037328788073c80c7b4"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 12:00:46 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 12:00:46 2008 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6:\n  bnx2: Fix bug in bnx2_free_rx_mem().\n  irda: Add irda_skb_cb qdisc related padding\n  jme: Fixed a typo\n  net: kernel BUG at drivers/net/phy/mdio_bus.c:165!\n  drivers/net: starfire: Fix napi -\u003epoll() weight handling\n  tlan: Fix pci memory unmapping\n  enc28j60: use netif_rx_ni() to deliver RX packets\n  tlan: Fix small (\u003c 64 bytes) datagram transmissions\n  netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC\n"
    },
    {
      "commit": "3653b9a8db41299a8735008026dad82035f8ca9b",
      "tree": "334e9c7fa8684c7b4dea1153b304358b8853ff21",
      "parents": [
        "52af894cc35be34c6430d5411cd9033bd4dbbc51",
        "878a5535957b563c447d32866a9e606c55fef091"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 12:00:01 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 12:00:01 2008 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6:\n  sparc: We need to implement arch_ptrace_stop().\n"
    },
    {
      "commit": "52af894cc35be34c6430d5411cd9033bd4dbbc51",
      "tree": "ce6c3c2162987229998197f53d407f96d90cc30b",
      "parents": [
        "55dac3a5553b13891f0ae4bbd11920619b5436d4"
      ],
      "author": {
        "name": "John McCutchan",
        "email": "john@johnmccutchan.com",
        "time": "Wed Dec 17 17:43:02 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Dec 18 11:59:34 2008 -0800"
      },
      "message": "Maintainer email fixes for inotify\n\nUpdate John McCutchan and Robert Love\u0027s email addresses for\nmaintenance of inotify\n\nSigned-off-by: John McCutchan \u003cjohn@johnmccutchan.com\u003e\nAcked-by: Robert Love \u003crlove@rlove.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "8983fdb50878ae6fa2ced336ef6072f8d5d502e3",
      "tree": "a8eac071fabc7d5ae7bf4d93ab348e1cfec31b9f",
      "parents": [
        "de13d28e0cb4923600e618641063b3c54961a474"
      ],
      "author": {
        "name": "Haavard Skinnemoen",
        "email": "haavard.skinnemoen@atmel.com",
        "time": "Thu Dec 18 16:20:47 2008 +0100"
      },
      "committer": {
        "name": "Haavard Skinnemoen",
        "email": "haavard.skinnemoen@atmel.com",
        "time": "Thu Dec 18 16:22:13 2008 +0100"
      },
      "message": "avr32: favr-32 build fix\n\nThe favr-32 board code still refers to the old asm/arch header files\nwhich were moved to mach/ some time ago.\n\nSigned-off-by: Haavard Skinnemoen \u003chaavard.skinnemoen@atmel.com\u003e\n"
    },
    {
      "commit": "de13d28e0cb4923600e618641063b3c54961a474",
      "tree": "69a0eac473c98ffa693dab6a20ab85a5b14a01c6",
      "parents": [
        "c1892cb8d2787280a5d9aacf8f58cf18f5b6fb2f"
      ],
      "author": {
        "name": "Haavard Skinnemoen",
        "email": "haavard.skinnemoen@atmel.com",
        "time": "Thu Dec 18 16:13:24 2008 +0100"
      },
      "committer": {
        "name": "Haavard Skinnemoen",
        "email": "haavard.skinnemoen@atmel.com",
        "time": "Thu Dec 18 16:13:24 2008 +0100"
      },
      "message": "ATSTK1006: Fix boot from NAND flash\n\nEnable JFFS2 write buffer support so that the kernel can access a root\nfilesystem in NAND flash.\n\nSigned-off-by: Haavard Skinnemoen \u003chaavard.skinnemoen@atmel.com\u003e\n"
    },
    {
      "commit": "c9bc03ac312c6b65a32a183424f1f1383d94f5cf",
      "tree": "ca59b495fb85986be08702536bdbd27a7e3fd667",
      "parents": [
        "55aab5f49e384a361668d112eefdb33e90779af9",
        "84df81759590ad16b0024cf46b3423cca76b2e07"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Dec 18 13:28:11 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Dec 18 13:28:11 2008 +0100"
      },
      "message": "Merge branch \u0027iommu-fixes-2.6.28\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu into x86/urgent\n"
    },
    {
      "commit": "55aab5f49e384a361668d112eefdb33e90779af9",
      "tree": "e123951c87567fba8f1ca56fa91c46d8b4b46c1c",
      "parents": [
        "cf9b303e55da810255638c0b616b1a3f7eda9320"
      ],
      "author": {
        "name": "Bjorn Helgaas",
        "email": "bjorn.helgaas@hp.com",
        "time": "Wed Dec 17 12:52:34 2008 -0700"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Dec 18 13:26:23 2008 +0100"
      },
      "message": "x86 gart: don\u0027t complain if no AMD GART found\n\nImpact: remove annoying bootup printk\n\nIt\u0027s perfectly normal for no AMD GART to be present, e.g., if you have\nIntel CPUs.  None of the other iommu_init() functions makes noise when\nit finds nothing.\n\nSigned-off-by: Bjorn Helgaas \u003cbjorn.helgaas@hp.com\u003e\nAcked-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "e28d83223a1e5672174dcdc6b73c1be3fa3de877",
      "tree": "a8a764d049b0f77da850f394cab7088c068ee827",
      "parents": [
        "1bda71282ded6a2e09a2db7c8884542fb46bfd4f"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Wed Dec 17 13:48:29 2008 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Thu Dec 18 09:06:29 2008 +0100"
      },
      "message": "ALSA: hda - Fix silent HP output on D975\n\nSome desktops seems to have no HP/mic jack detection on the front panel,\nwhich results in the silent output in the recent driver, because the\ndriver mutes the output (to save power) when no plug is detected.\n\nThis patch adds a new model that disables the jack-detection.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "3298a7388c00227e736d1037328788073c80c7b4",
      "tree": "1373c89c430acbd09b30e602750aa43c1c9e833c",
      "parents": [
        "69c30e1e7492192f882a3fc11888b320fde5206a"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Wed Dec 17 19:06:08 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Dec 17 19:06:08 2008 -0800"
      },
      "message": "bnx2: Fix bug in bnx2_free_rx_mem().\n\nDMA memory for the jumbo rx page rings was freed incorrectly using the\nwrong local variable as the array index.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "3e3d0e9246d0eccc1da800348fc1b9199ae3d768",
      "tree": "c9aa0988205a5879b7a9d7b8cb2972c45636e719",
      "parents": [
        "b6adc1955d31515be6631e63b1fe4bcdcd41db77"
      ],
      "author": {
        "name": "Neil Horman",
        "email": "nhorman@tuxdriver.com",
        "time": "Wed Dec 17 16:07:47 2008 -0800"
      },
      "committer": {
        "name": "Jesse Barnes",
        "email": "jbarnes@virtuousgeek.org",
        "time": "Wed Dec 17 16:07:47 2008 -0800"
      },
      "message": "PCI hotplug: ibmphp: Fix module ref count underflow\n\nI happened to notice that the ibmphp hotplug driver does something\nrather silly in its init routine.  It purposely calls module_put so as\nto underflow its module ref count to avoid being removed from the\nkernel.  This is bad practice, and wrong, since it provides a window for\nsubsequent module_gets to reset the refcount to zero, allowing an unload\nto race in and cause all sorts of mysterious panics.  If the module is\nunsafe to load, simply omitting the module_exit parameter is sufficient\nto prevent the kernel from allowing the unload.\n\nAcked-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\nSigned-off-by: Jesse Barnes \u003cjbarnes@virtuousgeek.org\u003e\n"
    },
    {
      "commit": "69c30e1e7492192f882a3fc11888b320fde5206a",
      "tree": "6181c8b6f516c2274d78983062b4da821fa71ffb",
      "parents": [
        "2fccd2814f8ebc8f1bd325dc46e11c333fc76ab3"
      ],
      "author": {
        "name": "Samuel Ortiz",
        "email": "samuel@sortiz.org",
        "time": "Wed Dec 17 15:44:58 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Dec 17 15:44:58 2008 -0800"
      },
      "message": "irda: Add irda_skb_cb qdisc related padding\n\nWe need to pad irda_skb_cb in order to keep it safe accross dev_queue_xmit()\ncalls. This is some ugly and temporary hack triggered by recent qisc code\nchanges.\nEven though it fixes bugzilla.kernel.org bug #11795, it will be replaced by a\nproper fix before 2.6.29 is released.\n\nSigned-off-by: Samuel Ortiz \u003csamuel@sortiz.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "55dac3a5553b13891f0ae4bbd11920619b5436d4",
      "tree": "88431185f839d44a92dae9a58adba30d9be65aea",
      "parents": [
        "0bc77ecbe4f69ff8ead1d2abfe84ca9ba2a7bca4",
        "be44f01e8af3862767f466f89c12640a2f2b0038"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 15:05:26 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 15:05:26 2008 -0800"
      },
      "message": "Merge branch \u0027i2c-fixes\u0027 of git://aeryn.fluff.org.uk/bjdooks/linux\n\n* \u0027i2c-fixes\u0027 of git://aeryn.fluff.org.uk/bjdooks/linux:\n  i2c-s3c2410: fix check for being in suspend.\n  i2c-cpm: Detect and report NAK right away instead of timing out\n"
    },
    {
      "commit": "0bc77ecbe4f69ff8ead1d2abfe84ca9ba2a7bca4",
      "tree": "a9d2f83e9ee9b20720cd83432ce7bfeb44690b3d",
      "parents": [
        "3797455fd269f6ae0bc228d5206b502830af03f4",
        "a97721894a6dc0f9ebfe1dbaa4bb112eaf399273"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 15:01:23 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 15:01:23 2008 -0800"
      },
      "message": "Merge branch \u0027upstream-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2\n\n* \u0027upstream-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2:\n  ocfs2: Add JBD2 compat feature bit.\n  ocfs2: Always update xattr search when creating bucket.\n"
    },
    {
      "commit": "3797455fd269f6ae0bc228d5206b502830af03f4",
      "tree": "42e687025cc6e6d1d4aeec6261bf8255737616a0",
      "parents": [
        "5b8bd54d5d38649a0a61e1146525212e81061971",
        "af4b8514aafd53d97b05a0a30b7d4cfd2cbb7b81"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 15:01:06 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 15:01:06 2008 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6:\n  USB: pl2303: add id for Hewlett-Packard LD220-HP POS pole display\n  USB: set correct configuration in probe of ti_usb_3410_5052\n  USB: add 5372:2303 to pl2303\n  USB: skip Set-Interface(0) if already in altsetting 0\n  USB: fix comment about endianness of descriptors\n  USB: Documentation/usb/gadget_serial.txt: update to match driver use_acm behaviour\n  usbmon: drop bogus 0t from usbmon.txt\n  USB: gadget: fix rndis working at high speed\n  USB: ftdi_sio: Adding Ewert Energy System\u0027s CANdapter PID\n  USB: tty: SprogII DCC controller identifiers\n  usb-storage: update unusual_devs entry for Nokia 5310\n  USB: Unusual devs patch for Nokia 3500c\n  USB: storage: unusual_devs.h: Nokia 3109c addition\n  USB: fix problem with usbtmc driver not loading properly\n"
    },
    {
      "commit": "5b8bd54d5d38649a0a61e1146525212e81061971",
      "tree": "cbe898dccc3cdd13bec413e2ce78ca043cccb106",
      "parents": [
        "331c31351044888916805c9cb32d8bb9e40c12e9",
        "4b4cdf3979c32fa3d042d150f49449c74d048553"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 15:00:54 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 15:00:54 2008 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6:\n  STAGING: Move staging drivers back to staging-specific menu\n  driver core: add newlines to debugging enabled/disabled messages\n  xilinx_hwicap: remove improper wording in license statement\n  driver core: fix using \u0027ret\u0027 variable in unregister_dynamic_debug_module\n"
    },
    {
      "commit": "331c31351044888916805c9cb32d8bb9e40c12e9",
      "tree": "41b7d9c95c1e5e1f413c3b026a26979c34d0b3e0",
      "parents": [
        "a52519f2ce180890069fa7b1a92fa51d4448a0ba"
      ],
      "author": {
        "name": "Jeff Layton",
        "email": "jlayton@redhat.com",
        "time": "Wed Dec 17 06:31:53 2008 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 14:59:55 2008 -0800"
      },
      "message": "cifs: fix buffer overrun in parse_DFS_referrals\n\nWhile testing a kernel with memory poisoning enabled, I saw some warnings\nabout the redzone getting clobbered when chasing DFS referrals. The\nbuffer allocation for the unicode converted version of the searchName is\ntoo small and needs to take null termination into account.\n\nSigned-off-by: Jeff Layton \u003cjlayton@redhat.com\u003e\nAcked-by: Steve French \u003csfrench@us.ibm.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "a52519f2ce180890069fa7b1a92fa51d4448a0ba",
      "tree": "cae6d87adcba8ee831f9a50f3cff467254861718",
      "parents": [
        "1bda71282ded6a2e09a2db7c8884542fb46bfd4f",
        "af4d3643864ee5fcba0c97d77a424fa0b0346f8e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 14:58:56 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Dec 17 14:58:56 2008 -0800"
      },
      "message": "Merge branch \u0027merge\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc\n\n* \u0027merge\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc:\n  powerpc: Fix corruption error in rh_alloc_fixed()\n  powerpc/fsl-booke: Fix the miss interrupt restore\n"
    },
    {
      "commit": "4b4cdf3979c32fa3d042d150f49449c74d048553",
      "tree": "a39361b20ece0b57d347f677eeda1de534885bb9",
      "parents": [
        "aa6f3c640781c8ac213a4ed3011dcced36f899e3"
      ],
      "author": {
        "name": "Dmitry Baryshkov",
        "email": "dbaryshkov@gmail.com",
        "time": "Fri Nov 28 00:01:28 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 11:23:07 2008 -0800"
      },
      "message": "STAGING: Move staging drivers back to staging-specific menu\n\nSigned-off-by: Dmitry Baryshkov \u003cdbaryshkov@gmail.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "aa6f3c640781c8ac213a4ed3011dcced36f899e3",
      "tree": "aebfec91ee7dca336bcd8ca4e4f1a48ec0578f88",
      "parents": [
        "09a35ce00fa6bbb8bd130a828807e237488aa7ea"
      ],
      "author": {
        "name": "Marcel Holtmann",
        "email": "marcel@holtmann.org",
        "time": "Sun Nov 30 14:01:26 2008 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 11:23:07 2008 -0800"
      },
      "message": "driver core: add newlines to debugging enabled/disabled messages\n\nBoth messages are missing the newline and thus dmesg output gets\nscrambled.\n\nSigned-off-by: Marcel Holtmann \u003cmarcel@holtmann.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "09a35ce00fa6bbb8bd130a828807e237488aa7ea",
      "tree": "d11a71272e87c57cd2310f9cd0dfe82a2f88f130",
      "parents": [
        "1c93ca09863a544cec24fc8e33491f645df80e59"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Dec 06 21:10:51 2008 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 11:23:07 2008 -0800"
      },
      "message": "xilinx_hwicap: remove improper wording in license statement\n\nGPLv2 doesn\u0027t allow additional restrictions to be imposed on any\ncode, so this wording needs to be removed from these files.\n\nSigned-off-by: Stephen Neuendorffer \u003cstephen.neuendorffer@xilinx.com\u003e\nCc: stable \u003cstable@kernel.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "1c93ca09863a544cec24fc8e33491f645df80e59",
      "tree": "f023bbb17ebbf2dd9d0e352d621a282b79b06298",
      "parents": [
        "1bda71282ded6a2e09a2db7c8884542fb46bfd4f"
      ],
      "author": {
        "name": "Johann Felix Soden",
        "email": "johfel@users.sourceforge.net",
        "time": "Thu Oct 30 22:44:39 2008 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 11:23:06 2008 -0800"
      },
      "message": "driver core: fix using \u0027ret\u0027 variable in unregister_dynamic_debug_module\n\nThe \u0027ret\u0027 variable is assigned, but not used in the return statement. Fix this.\n\nSigned-off-by: Johann Felix Soden \u003cjohfel@users.sourceforge.net\u003e\nAcked-by: Jason Baron \u003cjbaron@redhat.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "af4b8514aafd53d97b05a0a30b7d4cfd2cbb7b81",
      "tree": "6a393e23b940f4b54c5e203029cdf76fed256174",
      "parents": [
        "413ba6fb51fa8dc77be09552e506d00f31234e0d"
      ],
      "author": {
        "name": "Mike Provencher",
        "email": "mike.provencher@hp.com",
        "time": "Tue Dec 16 14:30:14 2008 -0600"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:15 2008 -0800"
      },
      "message": "USB: pl2303: add id for Hewlett-Packard LD220-HP POS pole display\n\nAdd id for the Hewlett-Packard LD220-HP POS pole display.\n\nBus 002 Device 002: ID 03f0:3524 Hewlett-Packard\n\nSigned-off-by: Mike Provencher \u003cmike.provencher@hp.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "413ba6fb51fa8dc77be09552e506d00f31234e0d",
      "tree": "ce013823cc55c2e0f3954a65d474ae2182ccb299",
      "parents": [
        "7c99200142c04d0f1ed3f048014591f841efdaed"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oliver@neukum.org",
        "time": "Tue Dec 16 12:25:55 2008 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:15 2008 -0800"
      },
      "message": "USB: set correct configuration in probe of ti_usb_3410_5052\n\nThis driver transfers firmware. It may just as well set the correct\nconfiguration.\n\nSigned-off-by: Oliver Neukum \u003coneukum@suse.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "7c99200142c04d0f1ed3f048014591f841efdaed",
      "tree": "d5c3aa5a803811fb3221e7b45f4d5d4b337f07c5",
      "parents": [
        "24c0996a6b73e2554104961afcc8659534503e0d"
      ],
      "author": {
        "name": "Matthew Arnold",
        "email": "Matthew.Arnold-1@uts.edu.au",
        "time": "Sat Dec 13 22:42:53 2008 +1100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:15 2008 -0800"
      },
      "message": "USB: add 5372:2303 to pl2303\n\nThis patch adds the \"Superial\" USB-Serial converter to pl2303 so that it\nis detected, by the correct driver.  Adds the relevant vendor:product\n(5372:2303) to the device tables in pl2303.c \u0026 pl2303.h.  The patch has\nbeen tested against 2.6.24-22-generic.\n\nSigned-off-by: Matthew D Arnold \u003cmatthew.arnold-1@uts.edu.au\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "24c0996a6b73e2554104961afcc8659534503e0d",
      "tree": "ce806aca4dbe0b236a639a9067615594f8cdedf6",
      "parents": [
        "9a9fafb89433c5fd1331bac0c84c4b321e358b42"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Mon Dec 01 10:24:41 2008 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:14 2008 -0800"
      },
      "message": "USB: skip Set-Interface(0) if already in altsetting 0\n\nWhen a driver unbinds from an interface, usbcore always sends a\nSet-Interface request to reinstall altsetting 0.  Unforunately, quite\na few devices have buggy firmware that crashes when it receives this\nrequest.\n\nTo avoid such problems, this patch (as1180) arranges to send the\nSet-Interface request only when the interface is not already in\naltsetting 0.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "9a9fafb89433c5fd1331bac0c84c4b321e358b42",
      "tree": "918ec5c858d043304a47e8744cbee1ad96170298",
      "parents": [
        "c33ba392147a8506b1b43899fdea6069e27e4277"
      ],
      "author": {
        "name": "Phil Endecott",
        "email": "usb_endian_patch@chezphil.org",
        "time": "Mon Dec 01 10:22:33 2008 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:14 2008 -0800"
      },
      "message": "USB: fix comment about endianness of descriptors\n\nThis patch fixes a comment and clarifies the documentation about the\nendianness of descriptors. The current policy is that descriptors will\nbe little-endian at the API even on big-endian systems; however the\n/proc/bus/usb API predates this policy and presents descriptors with\nsome multibyte fields byte-swapped.\n\nSigned-off-by: Phil Endecott \u003cusb_endian_patch@chezphil.org\u003e\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "c33ba392147a8506b1b43899fdea6069e27e4277",
      "tree": "e92660a3ce8642e1a3ab729af12ee3abd428853d",
      "parents": [
        "aacf4a0135a330e68df412a6797a9b9689d8d9a3"
      ],
      "author": {
        "name": "Peter Korsgaard",
        "email": "jacmet@sunsite.dk",
        "time": "Thu Dec 04 16:30:53 2008 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:13 2008 -0800"
      },
      "message": "USB: Documentation/usb/gadget_serial.txt: update to match driver use_acm behaviour\n\nCommit 7bb5ea54 (usb gadget serial: use composite gadget framework)\nchanged the default for the use_acm parameter from 0 to 1.\nUpdate the documentation to match.\n\nSigned-off-by: Peter Korsgaard \u003cjacmet@sunsite.dk\u003e\nAcked-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "aacf4a0135a330e68df412a6797a9b9689d8d9a3",
      "tree": "9f0d7e17a79b853f83d19a052d7c75caa0caa421",
      "parents": [
        "7c12414955e9b44a3e33d54e578bf008caa4475d"
      ],
      "author": {
        "name": "Pete Zaitcev",
        "email": "zaitcev@redhat.com",
        "time": "Thu Dec 04 16:17:00 2008 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:12 2008 -0800"
      },
      "message": "usbmon: drop bogus 0t from usbmon.txt\n\nThe example is incorrect: there is no 0t socket (the \u00271t\u0027 format has no\nbus number in it). Also, correct the broken sentence for USB Tag.\n\nSigned-off-by: Pete Zaitcev \u003czaitcev@redhat.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "7c12414955e9b44a3e33d54e578bf008caa4475d",
      "tree": "bea0cd4bf8b2615c2a92c3c32aa199357f5c35d0",
      "parents": [
        "01ba0856e9352e3c4e1c7d8c0a2a7defb456a5f9"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Mon Nov 24 23:11:03 2008 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:12 2008 -0800"
      },
      "message": "USB: gadget: fix rndis working at high speed\n\nFix a bug specific to highspeed mode in the recently updated RNDIS\nsupport:  it wasn\u0027t setting up the high speed notification endpoint,\nwhich prevented high speed RNDIS links from working.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nTested-by: Anand Gadiyar \u003cgadiyar@ti.com\u003e\nCc: stable \u003cstable@kernel.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "01ba0856e9352e3c4e1c7d8c0a2a7defb456a5f9",
      "tree": "2fac5bc5c86f24953e160c2958a23ae0989cab6f",
      "parents": [
        "f2ee695554d9b4d163361a63f196ad7d8d0fe935"
      ],
      "author": {
        "name": "Andrew Ewert",
        "email": "andrew@ewertenergy.com",
        "time": "Thu Dec 04 09:09:59 2008 -0600"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:11 2008 -0800"
      },
      "message": "USB: ftdi_sio: Adding Ewert Energy System\u0027s CANdapter PID\n\nThe following patch adds in the USB PID for Ewert Energy System\u0027s CANdapter\ndevice (CANBUS to USB-Serial which uses the FTDI 245R chipset) to the ftdi_sio\ndevice driver.\n\nThe patch was tested successfully on Linux kernel 2.6.27 under Ubuntu.\n\nRelevant output from /proc/bus/usb/devices (With patch installed):\n\nT:  Bus\u003d01 Lev\u003d01 Prnt\u003d01 Port\u003d00 Cnt\u003d01 Dev#\u003d  2 Spd\u003d12  MxCh\u003d 0\nD:  Ver\u003d 2.00 Cls\u003d00(\u003eifc ) Sub\u003d00 Prot\u003d00 MxPS\u003d 8 #Cfgs\u003d  1\nP:  Vendor\u003d0403 ProdID\u003d9f80 Rev\u003d 6.00\nS:  Manufacturer\u003dEwert Energy Systems\nS:  Product\u003dCANdapter\nS:  SerialNumber\u003dA6RGB3Z3\nC:* #Ifs\u003d 1 Cfg#\u003d 1 Atr\u003da0 MxPwr\u003d 90mA\nI:* If#\u003d 0 Alt\u003d 0 #EPs\u003d 2 Cls\u003dff(vend.) Sub\u003dff Prot\u003dff Driver\u003dftdi_sio\nE:  Ad\u003d81(I) Atr\u003d02(Bulk) MxPS\u003d  64 Ivl\u003d0ms\nE:  Ad\u003d02(O) Atr\u003d02(Bulk) MxPS\u003d  64 Ivl\u003d0ms\n\n\nSigned-off-by: Andrew Ewert \u003candrew@ewertenergy.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "f2ee695554d9b4d163361a63f196ad7d8d0fe935",
      "tree": "e43be4d15434776f22bcaf0a0c28a86ffaab4243",
      "parents": [
        "a4b188095912eee83d065f000dfe06f25919750b"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@redhat.com",
        "time": "Sat Dec 06 23:46:04 2008 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:11 2008 -0800"
      },
      "message": "USB: tty: SprogII DCC controller identifiers\n\nSomeone on rmweb reminded me this had been overlooked from ages ago..\n\nAdd the identifiers for the Sprog II USB. This is a DCC control interface\nusing the FTDI-SIO hardware: http://www.sprog-dcc.co.uk/. People have been\nusing it with insmod options for ages, this just puts it into the driver\ndata.\n\nSigned-off-by: Alan Cox \u003calan@redhat.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": "a4b188095912eee83d065f000dfe06f25919750b",
      "tree": "3c72a9b8833ba7c7317b00a8cb08b843f6fcecd9",
      "parents": [
        "48e1a540e1e9ea62a2b3088a69ecf934f3172b14"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Mon Dec 01 10:23:43 2008 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:11 2008 -0800"
      },
      "message": "usb-storage: update unusual_devs entry for Nokia 5310\n\nThis patch (as1179) updates the unusual_devs entry for Nokia\u0027s 5310\nphone to include a more recent firmware revision.\n\nThis fixes Bugzilla #12099.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nTested-by: Robson Roberto Souza Peixoto \u003crobsonpeixoto@gmail.com\u003e\nCc: stable \u003cstable@kernel.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "48e1a540e1e9ea62a2b3088a69ecf934f3172b14",
      "tree": "ee40e7385dfdbc27194b9844a6f0292426aabff7",
      "parents": [
        "1393fce7189427bdb4d6115ca5566ca8d0fc86f3"
      ],
      "author": {
        "name": "Ozan Sener",
        "email": "themgzzy@gmail.com",
        "time": "Mon Dec 08 19:15:45 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:11 2008 -0800"
      },
      "message": "USB: Unusual devs patch for Nokia 3500c\n\nT:  Bus\u003d02 Lev\u003d01 Prnt\u003d01 Port\u003d00 Cnt\u003d01 Dev#\u003d  3 Spd\u003d12  MxCh\u003d 0\nD:  Ver\u003d 2.00 Cls\u003d00(\u003eifc ) Sub\u003d00 Prot\u003d00 MxPS\u003d64 #Cfgs\u003d  1\nP:  Vendor\u003d0421 ProdID\u003d0060 Rev\u003d 5.51\nS:  Manufacturer\u003dNokia\nS:  Product\u003dNokia 3500c\nS:  SerialNumber\u003d357687010280751\nC:* #Ifs\u003d 1 Cfg#\u003d 1 Atr\u003dc0 MxPwr\u003d100mA\nI:* If#\u003d 0 Alt\u003d 0 #EPs\u003d 2 Cls\u003d08(stor.) Sub\u003d06 Prot\u003d50 Driver\u003dusb-storage\nE:  Ad\u003d81(I) Atr\u003d02(Bulk) MxPS\u003d  64 Ivl\u003d0ms\nE:  Ad\u003d01(O) Atr\u003d02(Bulk) MxPS\u003d  64 Ivl\u003d0ms\n\nFrom: Ozan Sener \u003cthemgzzy@gmail.com\u003e\nCc: stable \u003cstable@kernel.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "1393fce7189427bdb4d6115ca5566ca8d0fc86f3",
      "tree": "4c933106c3331558e2b86ce27e26d66b7e17076d",
      "parents": [
        "5413aa467806578bf5f78a83893cb9426b815231"
      ],
      "author": {
        "name": "CSÉCSY László",
        "email": "boobaa@frugalware.org",
        "time": "Tue Dec 09 23:39:14 2008 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:10 2008 -0800"
      },
      "message": "USB: storage: unusual_devs.h: Nokia 3109c addition\n\n2.6.26(.x, cannot remember) could handle the microSD card in my Nokia\n3109c attached via USB as mass storage, 2.6.27(.x, up to and included\n2.6.27.8) cannot. Please find the attached patch which fixes this\nregression, and a copy of /proc/bus/usb/devices with my phone plugged in\nrunning with this patch on Frugalware.\n\nT:  Bus\u003d02 Lev\u003d01 Prnt\u003d01 Port\u003d01 Cnt\u003d02 Dev#\u003d  4 Spd\u003d12  MxCh\u003d 0\nD:  Ver\u003d 2.00 Cls\u003d00(\u003eifc ) Sub\u003d00 Prot\u003d00 MxPS\u003d64 #Cfgs\u003d  1\nP:  Vendor\u003d0421 ProdID\u003d0063 Rev\u003d 6.01\nS:  Manufacturer\u003dNokia\nS:  Product\u003dNokia 3109c\nS:  SerialNumber\u003d359561013742570\nC:* #Ifs\u003d 1 Cfg#\u003d 1 Atr\u003dc0 MxPwr\u003d100mA\nI:* If#\u003d 0 Alt\u003d 0 #EPs\u003d 2 Cls\u003d08(stor.) Sub\u003d06 Prot\u003d50 Driver\u003dusb-storage\nE:  Ad\u003d81(I) Atr\u003d02(Bulk) MxPS\u003d  64 Ivl\u003d0ms\nE:  Ad\u003d01(O) Atr\u003d02(Bulk) MxPS\u003d  64 Ivl\u003d0ms\n\nFrom: CSÉCSY László \u003cboobaa@frugalware.org\u003e\nCc: Phil Dibowitz \u003cphil@ipom.com\u003e\nCc: stable \u003cstable@kernel.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "5413aa467806578bf5f78a83893cb9426b815231",
      "tree": "eef90a249b35f57f82ea5633739c92225e04b269",
      "parents": [
        "1bda71282ded6a2e09a2db7c8884542fb46bfd4f"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 03 16:33:09 2008 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Dec 17 10:49:10 2008 -0800"
      },
      "message": "USB: fix problem with usbtmc driver not loading properly\n\nThe usbtmc driver forgot to export its device table to userspace.\nWithout this, it is never loaded properly when such a device is seen by\nthe system.\n\nCc: Marcel Janssen \u003cmarcel.janssen@admesy.nl\u003e\nCc: stable \u003cstable@kernel.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "af4d3643864ee5fcba0c97d77a424fa0b0346f8e",
      "tree": "ed8af088c50a41c011abde88bf970a4faa28b1dc",
      "parents": [
        "28707af01b8912e701e3c5b619ff8f6dde8f2e81"
      ],
      "author": {
        "name": "Guillaume Knispel",
        "email": "gknispel@proformatique.com",
        "time": "Tue Dec 09 15:28:34 2008 +0100"
      },
      "committer": {
        "name": "Kumar Gala",
        "email": "galak@kernel.crashing.org",
        "time": "Wed Dec 17 10:06:14 2008 -0600"
      },
      "message": "powerpc: Fix corruption error in rh_alloc_fixed()\n\nThere is an error in rh_alloc_fixed() of the Remote Heap code:\nIf there is at least one free block blk won\u0027t be NULL at the end of the\nsearch loop, so -ENOMEM won\u0027t be returned and the else branch of\n\"if (bs \u003d\u003d s || be \u003d\u003d e)\" will be taken, corrupting the management\nstructures.\n\nSigned-off-by: Guillaume Knispel \u003cgknispel@proformatique.com\u003e\nAcked-by: Timur Tabi \u003ctimur@freescale.com\u003e\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\n"
    },
    {
      "commit": "28707af01b8912e701e3c5b619ff8f6dde8f2e81",
      "tree": "d4a6b34bb90c90c2d0a8e0643cc50a5ab894e8b0",
      "parents": [
        "23e0e8afafd9ac065d81506524adf3339584044b"
      ],
      "author": {
        "name": "Dave Liu",
        "email": "daveliu@freescale.com",
        "time": "Wed Dec 17 18:24:15 2008 +0800"
      },
      "committer": {
        "name": "Kumar Gala",
        "email": "galak@kernel.crashing.org",
        "time": "Wed Dec 17 10:06:13 2008 -0600"
      },
      "message": "powerpc/fsl-booke: Fix the miss interrupt restore\n\nThe commit e5e774d8833de1a0037be2384efccadf16935675\npowerpc/fsl-booke: Fix problem with _tlbil_va being interrupted\nintroduce one issue. that casue the problem like this:\n\nKernel BUG at c00b19fc [verbose debug info unavailable]\nOops: Exception in kernel mode, sig: 5 [#1]\nMPC8572 DS\nModules linked in:\nNIP: c00b19fc LR: c00b1c34 CTR: c0064e88\nREGS: ef02b7b0 TRAP: 0700   Not tainted  (2.6.28-rc8-00057-g1bda712)\nMSR: 00021000 \u003cME\u003e  CR: 44048028  XER: 20000000\nTASK \u003d ef02c000[1] \u0027init\u0027 THREAD: ef02a000\nGPR00: 00000001 ef02b860 ef02c000 eec201a0 c0dec2c0 00000000 000078a1 00000400\nGPR08: c00b4e40 000078a1 c048ec00 a1780000 44048028 ecd26917 00000001 ef02b948\nGPR16: ffffffea 0000020c 00000000 00000000 00000003 0000000a 00000000 000078a1\nGPR24: eec201a0 00000000 ed849000 00000400 ef02b95c 00000001 ef02b978 ef02b984\nNIP [c00b19fc] __find_get_block+0x24/0x238\nLR [c00b1c34] __getblk+0x24/0x2a0\nCall Trace:\n[ef02b860] [c017b768] generic_make_request+0x290/0x328 (unreliable)\n[ef02b8b0] [c00b1c34] __getblk+0x24/0x2a0\n[ef02b910] [c00b4ae4] __bread+0x14/0xf8\n[ef02b920] [c00fc228] ext2_get_branch+0xf0/0x138\n[ef02b940] [c00fcc88] ext2_get_block+0xb8/0x828\n[ef02ba00] [c00bbdc8] do_mpage_readpage+0x188/0x808\n[ef02bac0] [c00bc5b4] mpage_readpages+0xec/0x144\n[ef02bb50] [c00fba38] ext2_readpages+0x24/0x34\n[ef02bb60] [c006ade0] __do_page_cache_readahead+0x150/0x230\n[ef02bbb0] [c0064bdc] filemap_fault+0x31c/0x3e0\n[ef02bbf0] [c00728b8] __do_fault+0x60/0x5b0\n[ef02bc50] [c0011e0c] do_page_fault+0x2d8/0x4c4\n[ef02bd10] [c000ed90] handle_page_fault+0xc/0x80\n[ef02bdd0] [c00c7adc] set_brk+0x74/0x9c\n[ef02bdf0] [c00c9274] load_elf_binary+0x70c/0x1180\n[ef02be70] [c00945f0] search_binary_handler+0xa8/0x274\n[ef02bea0] [c0095818] do_execve+0x19c/0x1d4\n[ef02bed0] [c000766c] sys_execve+0x58/0x84\n[ef02bef0] [c000e950] ret_from_syscall+0x0/0x3c\n[ef02bfb0] [c009c6fc] sys_dup+0x24/0x6c\n[ef02bfc0] [c0001e04] init_post+0xb0/0xf0\n[ef02bfd0] [c046c1ac] kernel_init+0xcc/0xf4\n[ef02bff0] [c000e6d0] kernel_thread+0x4c/0x68\nInstruction dump:\n4bffffa4 813f000c 4bffffac 9421ffb0 7c0802a6 7d800026 90010054 bf210034\n91810030 7c0000a6 68008000 54008ffe \u003c0f000000\u003e 3d20c04e 3b29ffb8 38000008\n\nThe issue was the beqlr returns early but we haven\u0027t reenabled interrupts.\n\nSigned-off-by: Dave Liu \u003cdaveliu@freescale.com\u003e\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\n"
    },
    {
      "commit": "84df81759590ad16b0024cf46b3423cca76b2e07",
      "tree": "ad2e21daa3960753dbb3a8c6793d0f6242c063b5",
      "parents": [
        "cf558d25e5c9f70fa0279c9b7b8b4aed7cae9bd4"
      ],
      "author": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Wed Dec 17 16:36:44 2008 +0100"
      },
      "committer": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Wed Dec 17 16:36:44 2008 +0100"
      },
      "message": "AMD IOMMU: panic if completion wait loop fails\n\nImpact: prevents data corruption after a failed completion wait loop\n\nSigned-off-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\n"
    },
    {
      "commit": "cf558d25e5c9f70fa0279c9b7b8b4aed7cae9bd4",
      "tree": "2542605dbecb68368600dbb02cfa617a508202b5",
      "parents": [
        "83fd5cc6481c6b7fa8b45f8a7e0aa7120213430b"
      ],
      "author": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Wed Dec 17 15:06:01 2008 +0100"
      },
      "committer": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Wed Dec 17 15:06:01 2008 +0100"
      },
      "message": "AMD IOMMU: set cmd buffer pointers to zero manually\n\nImpact: set cmd buffer head and tail pointers to zero in case nobody else did\n\nSigned-off-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\n"
    },
    {
      "commit": "c1892cb8d2787280a5d9aacf8f58cf18f5b6fb2f",
      "tree": "7b438f93b71ea3f1e5703434da2998cf1b5276be",
      "parents": [
        "105462632c37ea5484ebae7db6e85e0aaac28f4b"
      ],
      "author": {
        "name": "Hans-Christian Egtvedt",
        "email": "hans-christian.egtvedt@atmel.com",
        "time": "Wed Nov 26 11:40:42 2008 +0100"
      },
      "committer": {
        "name": "Haavard Skinnemoen",
        "email": "haavard.skinnemoen@atmel.com",
        "time": "Wed Dec 17 11:44:10 2008 +0100"
      },
      "message": "avr32: remove .note.gnu.build-id section when making vmlinux.bin\n\nThis patch will remove the section .note.gnu.build-id added in binutils\n2.18 from the vmlinux.bin binary. Not removing this section results in a\nhuge multiple gigabyte binary and likewize large uImage.\n\nSigned-off-by: Hans-Christian Egtvedt \u003chans-christian.egtvedt@atmel.com\u003e\nSigned-off-by: Haavard Skinnemoen \u003chaavard.skinnemoen@atmel.com\u003e\n"
    },
    {
      "commit": "2fccd2814f8ebc8f1bd325dc46e11c333fc76ab3",
      "tree": "b3ceeee8e0fcd2d75971486335acaa589d386a46",
      "parents": [
        "e8e5752dc0a56a01527055b0c37510b1d6b6b861"
      ],
      "author": {
        "name": "cwm97m",
        "email": "cwm97m@cse.nsysu.edu.tw",
        "time": "Tue Dec 16 20:28:44 2008 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Dec 17 00:26:37 2008 -0800"
      },
      "message": "jme: Fixed a typo\n\nFound a typo.\n\nSigned-off-by: Wei-Min Chen \u003ccwm97m@cse.nsysu.edu.tw\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "e8e5752dc0a56a01527055b0c37510b1d6b6b861",
      "tree": "65066b89fe67651445f25d586db615c3fbbcf81c",
      "parents": [
        "9a3de25544dadab1971847f28f33b1cd0d1770a6"
      ],
      "author": {
        "name": "Krzysztof Halasa",
        "email": "khc@pm.waw.pl",
        "time": "Wed Dec 17 00:24:13 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Dec 17 00:24:13 2008 -0800"
      },
      "message": "net: kernel BUG at drivers/net/phy/mdio_bus.c:165!\n\nkernel BUG at drivers/net/phy/mdio_bus.c:165!\nUnable to handle kernel NULL pointer dereference at virtual address 00000000\n\nHow?\n\nmdiobus_alloc() sets bus-\u003estate \u003d MDIOBUS_ALLOCATED.\n\nmdiobus_register() sets bus-\u003estate \u003d MDIOBUS_REGISTERED but then can\n   fail (mdiobus_scan()) returning an error to the caller.\n\nThe caller aborts correctly with mdiobus_free() which does:\n        if (bus-\u003estate \u003d\u003d MDIOBUS_ALLOCATED) {\n                kfree(bus);\n                return;\n        }\n\n        BUG_ON(bus-\u003estate !\u003d MDIOBUS_UNREGISTERED);\n\nSigned-off-by: Krzysztof Halasa \u003ckhc@pm.waw.pl\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "878a5535957b563c447d32866a9e606c55fef091",
      "tree": "7b78655a3aee14afb302b039a1a3e51e6b220b54",
      "parents": [
        "410d2c8187ed969238ba98008c1d57307a56cfd8"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 16 21:55:44 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 16 21:55:44 2008 -0800"
      },
      "message": "sparc: We need to implement arch_ptrace_stop().\n\nIn order to always provide fully synchronized state to the debugger,\nwe might need to do a synchronize_user_stack().\n\nA pair of hooks, arch_ptrace_stop_needed() and arch_ptrace_stop(),\nexist to handle this kind of situation.  It was created for\nthe sake of IA64.\n\nUse them, to flush the kernel side cached register windows\nto the user stack, when necessary.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "a97721894a6dc0f9ebfe1dbaa4bb112eaf399273",
      "tree": "18cc583e2d6c3765d210ad78c7aff948e5360f49",
      "parents": [
        "83099bc647688d816c2f7fac8e51921bdfe8db73"
      ],
      "author": {
        "name": "Joel Becker",
        "email": "Joel.Becker@oracle.com",
        "time": "Tue Dec 16 18:10:18 2008 -0800"
      },
      "committer": {
        "name": "Mark Fasheh",
        "email": "mfasheh@suse.com",
        "time": "Tue Dec 16 18:26:16 2008 -0800"
      },
      "message": "ocfs2: Add JBD2 compat feature bit.\n\nDefine the OCFS2_FEATURE_COMPAT_JBD2 bit in the filesystem header.\n\nSigned-off-by: Joel Becker \u003cjoel.becker@oracle.com\u003e\nSigned-off-by: Mark Fasheh \u003cmfasheh@suse.com\u003e\n"
    },
    {
      "commit": "9a3de25544dadab1971847f28f33b1cd0d1770a6",
      "tree": "cf5f2cfe90b0b05f45f2625d99d130a0a5c30f9b",
      "parents": [
        "bb5f133dbc4f04b6388715d364ae5865455166c2"
      ],
      "author": {
        "name": "Jarek Poplawski",
        "email": "jarkao2@gmail.com",
        "time": "Tue Dec 16 15:42:20 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 16 15:42:20 2008 -0800"
      },
      "message": "drivers/net: starfire: Fix napi -\u003epoll() weight handling\n\nstarfire napi -\u003epoll() handler can return work \u003d\u003d weight after calling\nnetif_rx_complete() (if there is no more work). It is illegal and this\npatch fixes it.\n\nReported-by: Alexander Huemer \u003calexander.huemer@sbg.ac.at\u003e\nTested-by: Alexander Huemer \u003calexander.huemer@sbg.ac.at\u003e\nSigned-off-by: Jarek Poplawski \u003cjarkao2@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "bb5f133dbc4f04b6388715d364ae5865455166c2",
      "tree": "9f8fdc3150b8bc48730eded83b56af84051ae2f2",
      "parents": [
        "2c413a6434dca02387a263dc4ca8009692421998"
      ],
      "author": {
        "name": "Sakari Ailus",
        "email": "sakari.ailus@iki.fi",
        "time": "Tue Dec 16 15:22:41 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 16 15:22:41 2008 -0800"
      },
      "message": "tlan: Fix pci memory unmapping\n\nFix pci unmapping problem introduced by commit id\n8953f1282793882a5444924f7a273dc72a43d0a3 \"tlan: Fix small (\u003c 64 bytes)\ndatagram transmissions\".\n\nSigned-off-by: Sakari Ailus \u003csakari.ailus@iki.fi\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "83099bc647688d816c2f7fac8e51921bdfe8db73",
      "tree": "eddc2db5ca87f41f1b529e799d9670564172f825",
      "parents": [
        "1bda71282ded6a2e09a2db7c8884542fb46bfd4f"
      ],
      "author": {
        "name": "Tao Ma",
        "email": "tao.ma@oracle.com",
        "time": "Fri Dec 05 09:14:10 2008 +0800"
      },
      "committer": {
        "name": "Mark Fasheh",
        "email": "mfasheh@suse.com",
        "time": "Tue Dec 16 14:07:37 2008 -0800"
      },
      "message": "ocfs2: Always update xattr search when creating bucket.\n\nWhen we create xattr bucket during the process of xattr set, we always\nneed to update the ocfs2_xattr_search since even if the bucket size is\nthe same as block size, the offset will change because of the removal\nof the ocfs2_xattr_block header.\n\nSigned-off-by: Tao Ma \u003ctao.ma@oracle.com\u003e\nSigned-off-by: Mark Fasheh \u003cmfasheh@suse.com\u003e\n"
    },
    {
      "commit": "cf9b303e55da810255638c0b616b1a3f7eda9320",
      "tree": "beb7823feed941932975f19e42e89a1c79d7a4be",
      "parents": [
        "83fd5cc6481c6b7fa8b45f8a7e0aa7120213430b"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "andi@firstfloor.org",
        "time": "Mon Dec 15 23:33:10 2008 +0100"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Tue Dec 16 23:03:02 2008 +0100"
      },
      "message": "x86: re-enable MCE on secondary CPUS after suspend/resume\n\nImpact: fix disabled MCE after resume\n\nDon\u0027t prevent multiple initialization of MCEs.\n\nBack from early prehistory mcheck_init() has a reentry check. Presumably\nthat was needed in very old kernels to prevent it entering twice.\n\nBut as Andreas points out this prevents CPU hotplug (and therefore resume)\nto correctly reinitialize MCEs when a AP boots again after being\nofflined.\n\nJust drop the check.\n\nReported-by: Andreas Herrmann \u003candreas.herrmann3@amd.com\u003e\nSigned-off-by: Andi Kleen \u003cak@linux.intel.com\u003e\nTested-by: Andreas Herrmann \u003candreas.herrmann3@amd.com\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "b6adc1955d31515be6631e63b1fe4bcdcd41db77",
      "tree": "6a4daca946c8beb1b877d662c2599d4f12151a17",
      "parents": [
        "db9aaf0bf19886114935152996edd9c6683b741c"
      ],
      "author": {
        "name": "Justin Chen",
        "email": "justin.chen@hp.com",
        "time": "Thu Dec 11 11:16:44 2008 -0700"
      },
      "committer": {
        "name": "Jesse Barnes",
        "email": "jbarnes@virtuousgeek.org",
        "time": "Tue Dec 16 13:26:46 2008 -0800"
      },
      "message": "PCI hotplug: acpiphp wants a 64-bit _SUN\n\nCertain HP machines require the full 64 bits of _SUN as allowed\nby the ACPI spec. Without this change, we get name collisions in\nthe lower 32 bits of the _SUN returned by firmware.\n\nAcked-by: Matthew Wilcox \u003cwilly@linux.intel.com\u003e\nSigned-off-by: Justin Chen \u003cjustin.chen@hp.com\u003e\nSigned-off-by: Alex Chiang \u003cachiang@hp.com\u003e\nSigned-off-by: Jesse Barnes \u003cjbarnes@virtuousgeek.org\u003e\n"
    },
    {
      "commit": "db9aaf0bf19886114935152996edd9c6683b741c",
      "tree": "789bdbc23345c16dcf43c05d9e0987bf92065d07",
      "parents": [
        "b0b801dd7de3d77bb143d3c98199b487df0fc63a"
      ],
      "author": {
        "name": "Kenji Kaneshige",
        "email": "kaneshige.kenji@jp.fujitsu.com",
        "time": "Mon Dec 08 14:30:24 2008 +0900"
      },
      "committer": {
        "name": "Jesse Barnes",
        "email": "jbarnes@virtuousgeek.org",
        "time": "Tue Dec 16 13:26:46 2008 -0800"
      },
      "message": "PCI: pciehp: fix unexpected power off with pciehp_force\n\nThis patch fixes the problem that causes an occupied slot to be turned\noff even if it has a working device.\n\nSigned-off-by: Kenji Kaneshige \u003ckaneshige.kenji@jp.fujitsu.com\u003e\nSigned-off-by: Jesse Barnes \u003cjbarnes@virtuousgeek.org\u003e\n"
    },
    {
      "commit": "b0b801dd7de3d77bb143d3c98199b487df0fc63a",
      "tree": "3b751a26a91b1b1373f6c61a23b727f50d205532",
      "parents": [
        "1bda71282ded6a2e09a2db7c8884542fb46bfd4f"
      ],
      "author": {
        "name": "Hidetoshi Seto",
        "email": "seto.hidetoshi@jp.fujitsu.com",
        "time": "Mon Dec 01 16:31:06 2008 +0900"
      },
      "committer": {
        "name": "Jesse Barnes",
        "email": "jbarnes@virtuousgeek.org",
        "time": "Tue Dec 16 13:26:45 2008 -0800"
      },
      "message": "PCI: fix aer resume sanity check\n\nWhat we have to check here before calling is err_handler-\u003eresume, not\n-\u003eslot_reset.  Looks like a copy \u0026 paste error from report_slot_reset.\n\nAcked-by: Yanmin Zhang \u003cyanmin.zhang@intel.com\u003e\nSigned-off-by: Hidetoshi Seto \u003cseto.hidetoshi@jp.fujitsu.com\u003e\nSigned-off-by: Jesse Barnes \u003cjbarnes@virtuousgeek.org\u003e\n"
    },
    {
      "commit": "be44f01e8af3862767f466f89c12640a2f2b0038",
      "tree": "49f0127b1692b178c2786e5068adba54d37c01dc",
      "parents": [
        "a804644a1a31a0b85e4c7d3c49f30419513cb6c1"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Fri Oct 31 16:10:22 2008 +0000"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Dec 16 20:19:53 2008 +0000"
      },
      "message": "i2c-s3c2410: fix check for being in suspend.\n\nAs noted by Julia Lawall \u003cjulia@diku.dk\u003e, we can never\ntrigger the check for being in suspend due to the result\nof !readl(i2c-\u003eregs + S3C2410_IICCON) \u0026 S3C2410_IICCON_IRQEN\nalways being 0.\n\nAdd suspend/resume hooks to stop i2c transactions happening\nuntil the driver has been resumed.\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "a804644a1a31a0b85e4c7d3c49f30419513cb6c1",
      "tree": "31ee129f4590b3f99e69e78fe50ce5f503bc4a19",
      "parents": [
        "1bda71282ded6a2e09a2db7c8884542fb46bfd4f"
      ],
      "author": {
        "name": "Mike Ditto",
        "email": "mditto@consentry.com",
        "time": "Tue Dec 16 20:17:09 2008 +0000"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Dec 16 20:17:09 2008 +0000"
      },
      "message": "i2c-cpm: Detect and report NAK right away instead of timing out\n\nMake the driver report an ENXIO error immediately upon NAK instead of\nwaiting for another interrupt and getting a timeout.\n\nWhen reading from a device that is not present or declines to respond\nto, e.g., a non-existent register address, CPM immediately reports a\nNAK condition in the TxBD, but the driver kept waiting until a timeout,\nwhich takes 1 second and causes an ugly console error message.\n\nSigned-off-by: Mike Ditto \u003cmditto@consentry.com\u003e\nAcked-by: Jochen Friedrich \u003cjochen@scram.de\u003e\n[ben-linux@fluff.org: reordered description text]\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "a6da74cb077e88a604e5b2a6663b44c221f0ae75",
      "tree": "77f566c212282f8925dae4b1a960dc241087e2fb",
      "parents": [
        "02bd3499a3be984f1e88821c3ed252c8c49c498e"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "James.Bottomley@HansenPartnership.com",
        "time": "Mon Dec 15 14:13:27 2008 -0600"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "James.Bottomley@HansenPartnership.com",
        "time": "Tue Dec 16 13:38:52 2008 -0600"
      },
      "message": "[SCSI] mpt fusion: clear list of outstanding commands on host reset\n\nA bug in the fusion driver was exposed by the switch to block timeout.\nBasically, drivers are supposed to terminate commands once error\nhandling begins on them.  The fusion apparently wasn\u0027t doing this.\nUnder the old timeout regime, completions on terminated commands would\nby and large get ignored because of the way command timeouts used to\nwork. The new block timers are very intolerant to this, though,\nbecuase the request gets cleaned and freed.\n\nFixes: http://bugzilla.kernel.org/show_bug.cgi?id\u003d12195\n\nReported-by: Alex Shi \u003calex.shi@intel.com\u003e\nTested-by: Ming Lin \u003cming.m.lin@intel.com\u003e\nCc: Eric Moore \u003cEric.Moore@lsi.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@HansenPartnership.com\u003e\n"
    },
    {
      "commit": "83fd5cc6481c6b7fa8b45f8a7e0aa7120213430b",
      "tree": "d60bd8cbfce34e11f186a97eb5be2a5c2632b150",
      "parents": [
        "1bda71282ded6a2e09a2db7c8884542fb46bfd4f"
      ],
      "author": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Tue Dec 16 19:17:11 2008 +0100"
      },
      "committer": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Tue Dec 16 19:17:11 2008 +0100"
      },
      "message": "AMD IOMMU: allocate rlookup_table with __GFP_ZERO\n\nImpact: fix bug which can lead to panic in prealloc_protection_domains()\n\nSigned-off-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\n"
    },
    {
      "commit": "1bda71282ded6a2e09a2db7c8884542fb46bfd4f",
      "tree": "89505069cd4f46253c649bcd418a9e3cd26fc55f",
      "parents": [
        "7a62b17694e278b1cde659f85aa6149052baa811",
        "25a41b280083259d05d68f61633194344a1f8a9f"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 09:49:10 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 09:49:10 2008 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6:\n  ieee1394: add quirk fix for Freecom HDD\n"
    },
    {
      "commit": "7a62b17694e278b1cde659f85aa6149052baa811",
      "tree": "2863d84ab659472f87d300d0100b9a815200bf89",
      "parents": [
        "3bd82263a0d770d2ab3efd37144993f4433a179c",
        "3ee89f177e3cef0b5b024bcb6df683a3fa7d795f"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 09:48:53 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 09:48:53 2008 -0800"
      },
      "message": "Merge branch \u0027upstream-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev\n\n* \u0027upstream-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev:\n  pata_hpt366: no ATAPI DMA\n  pata_hpt366: fix cable detection,\n  libata: fix Seagate NCQ+FLUSH blacklist\n"
    },
    {
      "commit": "3bd82263a0d770d2ab3efd37144993f4433a179c",
      "tree": "0082aa8c22eb0b6ba97368b5eb42edcb241ab0f3",
      "parents": [
        "eef70b217a7ab46e8e0cf75982ad75d8305d5591",
        "f9d62c009637f9581cdd7f6e430f8eec511c8587"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 09:47:58 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 09:47:58 2008 -0800"
      },
      "message": "Merge branch \u0027sh/for-2.6.28\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6\n\n* \u0027sh/for-2.6.28\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6:\n  sh: Disable GENERIC_HARDIRQS_NO__DO_IRQ for unconverted platforms.\n  sh: maple: Do not pass SLAB_POISON to kmem_cache_create()\n"
    },
    {
      "commit": "eef70b217a7ab46e8e0cf75982ad75d8305d5591",
      "tree": "85d34903a74f2581ac0e67d8e16e5c02855f37cd",
      "parents": [
        "c095adbc211f9f4e990eac7d6cb440de35e4f05f",
        "23e0e8afafd9ac065d81506524adf3339584044b"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 09:47:43 2008 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 09:47:43 2008 -0800"
      },
      "message": "Merge branch \u0027merge\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc\n\n* \u0027merge\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc:\n  powerpc/cell/axon-msi: Fix MSI after kexec\n  powerpc: Fix bootmem reservation on uninitialized node\n  powerpc: Check for valid hugepage size in hugetlb_get_unmapped_area\n"
    },
    {
      "commit": "c095adbc211f9f4e990eac7d6cb440de35e4f05f",
      "tree": "b2da614d48d715816b8ee7172918fa9d2f089a24",
      "parents": [
        "a3dd15444baa9c7522c8457ab564c41219dfb44c"
      ],
      "author": {
        "name": "KOSAKI Motohiro",
        "email": "kosaki.motohiro@jp.fujitsu.com",
        "time": "Tue Dec 16 16:06:43 2008 +0900"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Dec 16 08:19:23 2008 -0800"
      },
      "message": "mm: Don\u0027t touch uninitialized variable in do_pages_stat_array()\n\nCommit 80bba1290ab5122c60cdb73332b26d288dc8aedd removed one necessary\nvariable initialization.  As a result following warning happened:\n\n    CC      mm/migrate.o\n  mm/migrate.c: In function \u0027sys_move_pages\u0027:\n  mm/migrate.c:1001: warning: \u0027err\u0027 may be used uninitialized in this function\n\nMore unfortunately, if find_vma() failed, kernel read uninitialized\nmemory.\n\nSigned-off-by: KOSAKI Motohiro \u003ckosaki.motohiro@jp.fujitsu.com\u003e\nCC: Brice Goglin \u003cBrice.Goglin@inria.fr\u003e\nCc: Christoph Lameter \u003cclameter@sgi.com\u003e\nCc: KAMEZAWA Hiroyuki \u003ckamezawa.hiroyu@jp.fujitsu.com\u003e\nCc: Nick Piggin \u003cnpiggin@suse.de\u003e\nCc: Hugh Dickins \u003chugh@veritas.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "3ee89f177e3cef0b5b024bcb6df683a3fa7d795f",
      "tree": "470dd4a4af017728b1e8fdc59614c61a4fa246d1",
      "parents": [
        "bab5b32a537edc83ff86bff91e46f328339f49f8"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Tue Dec 09 17:14:04 2008 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@redhat.com",
        "time": "Tue Dec 16 05:40:34 2008 -0500"
      },
      "message": "pata_hpt366: no ATAPI DMA\n\nIDE hpt366 driver doesn\u0027t allow DMA for ATAPI devices and MWDMA2 on\nATAPI device locks up pata_hpt366.  Follow the suit.\n\nSigned-off-by: Tejun Heo \u003ctj@kernel.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@redhat.com\u003e\n"
    },
    {
      "commit": "bab5b32a537edc83ff86bff91e46f328339f49f8",
      "tree": "e6a33ecc8968c1e822ce08d9ffe79a72ae239eb1",
      "parents": [
        "d10d491f842243e2e3bf5a2714020f9d649e1e38"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Tue Dec 09 17:13:19 2008 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@redhat.com",
        "time": "Tue Dec 16 05:40:32 2008 -0500"
      },
      "message": "pata_hpt366: fix cable detection,\n\npata_hpt366 is strange in that its two channels occupy two PCI\nfunctions and both are primary channels and bit1 of PCI configuration\nregister 0x5A indicates cable for both channels.\n\nSigned-off-by: Tejun Heo \u003ctj@kernel.org\u003e\nCc: Alan Cox \u003calan@lxorguk.ukuu.org.uk\u003e\nCc: Sergei Shtylyov \u003csshtylyov@ru.mvista.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@redhat.com\u003e\n"
    },
    {
      "commit": "d10d491f842243e2e3bf5a2714020f9d649e1e38",
      "tree": "23ba927ef1f93e74a2f137223dd9b4452b999f3e",
      "parents": [
        "a3dd15444baa9c7522c8457ab564c41219dfb44c"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Thu Dec 11 13:42:42 2008 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@redhat.com",
        "time": "Tue Dec 16 05:40:30 2008 -0500"
      },
      "message": "libata: fix Seagate NCQ+FLUSH blacklist\n\nDue to miscommunication, P/N was mistaken as firmware revision\nstrings.  Update it.\n\nSigned-off-by: Tejun Heo \u003ctj@kernel.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@redhat.com\u003e\n"
    },
    {
      "commit": "2c413a6434dca02387a263dc4ca8009692421998",
      "tree": "ac684707490d56c511cd46129e3a64df7943bb2f",
      "parents": [
        "8953f1282793882a5444924f7a273dc72a43d0a3"
      ],
      "author": {
        "name": "Baruch Siach",
        "email": "baruch@tkos.co.il",
        "time": "Mon Dec 15 20:18:52 2008 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 16 01:48:29 2008 -0800"
      },
      "message": "enc28j60: use netif_rx_ni() to deliver RX packets\n\nThe enc28j60 driver reads incoming packets in the process (workqueue) context,\nnot in a tasklet or the interrupt context.  Thus, we should use netif_rx_ni()\nto deliver those packets to the networking layer, instead of netif_rx(). This\nway incoming packets don\u0027t wait in the incoming queue for the next IRQ to be\nserviced.\n\nSigned-off-by: Baruch Siach \u003cbaruch@tkos.co.il\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "8953f1282793882a5444924f7a273dc72a43d0a3",
      "tree": "982c6a5b8d451fe64097f817ce071a34cf7b315d",
      "parents": [
        "092cab7e2cd868cb0b30209a0337689c3ffd6133"
      ],
      "author": {
        "name": "Sakari Ailus",
        "email": "sakari.ailus@iki.fi",
        "time": "Tue Dec 16 01:44:05 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 16 01:44:05 2008 -0800"
      },
      "message": "tlan: Fix small (\u003c 64 bytes) datagram transmissions\n\nThe TLAN chip does not support tranmissions smaller than 64\nbytes. Smaller transfers need to be padded up to that size. This was\nbroken by commit id 41873e9aff0632d80c74380d58a89e8d420151bd (\"tlan:\nget rid of padding buffer\").\n\n\u003cURL:http://bugzilla.kernel.org/show_bug.cgi?id\u003d11754\u003e\n\nSigned-off-by: Sakari Ailus \u003csakari.ailus@iki.fi\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "092cab7e2cd868cb0b30209a0337689c3ffd6133",
      "tree": "c99aff79e7c683a75ef9ba6ce91ecca51f8c6273",
      "parents": [
        "a3dd15444baa9c7522c8457ab564c41219dfb44c"
      ],
      "author": {
        "name": "Pablo Neira Ayuso",
        "email": "pablo@netfilter.org",
        "time": "Tue Dec 16 01:19:41 2008 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 16 01:19:41 2008 -0800"
      },
      "message": "netfilter: ctnetlink: fix missing CTA_NAT_SEQ_UNSPEC\n\nThis patch fixes an inconsistency in nfnetlink_conntrack.h that\nI introduced myself. The problem is that CTA_NAT_SEQ_UNSPEC is\nmissing from enum ctattr_natseq. This inconsistency may lead to\nproblems in the message parsing in userspace (if the message\ncontains the CTA_NAT_SEQ_* attributes, of course).\n\nThis patch breaks backward compatibility, however, the only known\nclient of this code is libnetfilter_conntrack which indeed crashes\nbecause it assumes the existence of CTA_NAT_SEQ_UNSPEC to do\nthe parsing.\n\nThe CTA_NAT_SEQ_* attributes were introduced in 2.6.25.\n\nSigned-off-by: Pablo Neira Ayuso \u003cpablo@netfilter.org\u003e\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f9d62c009637f9581cdd7f6e430f8eec511c8587",
      "tree": "64105ed4f26157c80dd1489f206b23fe1d119c9f",
      "parents": [
        "93d546399c2b7d66a54d5fbd5eee17de19246bf6"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Dec 08 11:45:37 2008 +0900"
      },
      "committer": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Tue Dec 16 16:42:53 2008 +0900"
      },
      "message": "sh: Disable GENERIC_HARDIRQS_NO__DO_IRQ for unconverted platforms.\n\nPresently limited to Cayman, Dreamcast, Microdev, and SystemH 7751.\nRe-enable it for everyone once these have been fixed up.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\n"
    },
    {
      "commit": "93d546399c2b7d66a54d5fbd5eee17de19246bf6",
      "tree": "063adac96c72807acde4c2673e1f83950fb765fd",
      "parents": [
        "cefb3d02cad6fae49369cdde24526c4c4806b20f"
      ],
      "author": {
        "name": "Matt Fleming",
        "email": "mjf@gentoo.org",
        "time": "Tue Dec 16 09:15:31 2008 +0900"
      },
      "committer": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Tue Dec 16 16:40:32 2008 +0900"
      },
      "message": "sh: maple: Do not pass SLAB_POISON to kmem_cache_create()\n\nSLAB_POISON is not a valid flag for kmem_create_cache() unless\nCONFIG_DEBUG_SLAB is set, so remove it from the flags argument.\n\nAcked-by: Adrian McMenamin \u003cadrian@newgolddream.dyndns.info\u003e\nSigned-off-by: Matt Fleming \u003cmjf@gentoo.org\u003e\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\n"
    },
    {
      "commit": "23e0e8afafd9ac065d81506524adf3339584044b",
      "tree": "2bbc2c95e49687be2f499096ccc7c94ddecb823b",
      "parents": [
        "a4c74ddd5ea3db53fc73d29c222b22656a7d05be"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arnd@arndb.de",
        "time": "Fri Dec 12 09:19:50 2008 +0000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Dec 16 13:48:18 2008 +1100"
      },
      "message": "powerpc/cell/axon-msi: Fix MSI after kexec\n\nCommit d015fe995 \u0027powerpc/cell/axon-msi: Retry on missing interrupt\u0027\nhas turned a rare failure to kexec on QS22 into a reproducible\nerror, which we have now analysed.\n\nThe problem is that after a kexec, the MSIC hardware still points\ninto the middle of the old ring buffer.  We set up the ring buffer\nduring reboot, but not the offset into it.  On older kernels, this\nwould cause a storm of thousands of spurious interrupts after a\nkexec, which would most of the time get dropped silently.\n\nWith the new code, we time out on each interrupt, waiting for\nit to become valid.  If more interrupts come in that we time\nout on, this goes on indefinitely, which eventually leads to\na hard crash.\n\nThe solution in this commit is to read the current offset from\nthe MSIC when reinitializing it.  This now works correctly, as\nexpected.\n\nReported-by: Dirk Herrendoerfer \u003cd.herrendoerfer@de.ibm.com\u003e\nSigned-off-by: Arnd Bergmann \u003carnd@arndb.de\u003e\nAcked-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    }
  ],
  "next": "a4c74ddd5ea3db53fc73d29c222b22656a7d05be"
}
