)]}'
{
  "log": [
    {
      "commit": "ac07860264bd2b18834d3fa3be47032115524cea",
      "tree": "f0456c2ccbbf26a69cd0a137132e8e141ed40780",
      "parents": [
        "1ceef40249f21eceabf8633934d94962e7d8e1d7"
      ],
      "author": {
        "name": "Jesper Juhl",
        "email": "jesper.juhl@gmail.com",
        "time": "Wed Aug 08 16:31:30 2007 -0700"
      },
      "committer": {
        "name": "Christoph Lameter",
        "email": "clameter@sgi.com",
        "time": "Thu Aug 09 21:57:16 2007 -0700"
      },
      "message": "SLUB: Fix format specifier in Documentation/vm/slabinfo.c\n\nThere\u0027s a little problem in Documentation/vm/slabinfo.c\nThe code is using \"%d\" in a printf() call to print an \u0027unsigned long\u0027.\nThis patch corrects it to use \"%lu\" instead.\n\nSigned-off-by: Jesper Juhl \u003cjesper.juhl@gmail.com\u003e\nSigned-off-by: Christoph Lameter \u003cclameter@sgi.com\u003e\n"
    },
    {
      "commit": "6adb31c90c47262c8a25bf5097de9b3426caf3ae",
      "tree": "1a8fc2bc8b0233e8308e9ea4f3e5b8f0ea17c3fe",
      "parents": [
        "620b5e68ee89ba1d3f017056857459dc21be8c7b"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Thu Aug 09 00:57:54 2007 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Aug 09 08:40:21 2007 -0700"
      },
      "message": "remove dubious legal statment from uio-howto\n\nUIO currently contains a rather dubious statement which wants removing.\n\nThe actual questions around whether user space code that depends tightly\non kernel GPL code designed to co-work with it are derivative works of\nthe kernel is extremely complex, and since we don\u0027t have space for either\na masters length essay on legal issues or need to start flamewars lets\nsimply remove the comment and leave law to lawyers\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctovalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "be12014dd7750648fde33e1e45cac24dc9a8be6d",
      "tree": "caf9715d2c37f3c08c25e51c9f416c2bbf956236",
      "parents": [
        "e3bcf5e2785aa49f75f36a8d27d601891a7ff12b",
        "7cff8cf61cac15fa29a1ca802826d2bcbca66152"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Aug 09 08:23:31 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Aug 09 08:23:31 2007 -0700"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-sched\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-sched: (61 commits)\n  sched: refine negative nice level granularity\n  sched: fix update_stats_enqueue() reniced codepath\n  sched: round a bit better\n  sched: make the multiplication table more accurate\n  sched: optimize update_rq_clock() calls in the load-balancer\n  sched: optimize activate_task()\n  sched: clean up set_curr_task_fair()\n  sched: remove __update_rq_clock() call from entity_tick()\n  sched: move the __update_rq_clock() call to scheduler_tick()\n  sched debug: remove the \u0027u64 now\u0027 parameter from print_task()/_rq()\n  sched: remove the \u0027u64 now\u0027 local variables\n  sched: remove the \u0027u64 now\u0027 parameter from deactivate_task()\n  sched: remove the \u0027u64 now\u0027 parameter from dequeue_task()\n  sched: remove the \u0027u64 now\u0027 parameter from enqueue_task()\n  sched: remove the \u0027u64 now\u0027 parameter from dec_nr_running()\n  sched: remove the \u0027u64 now\u0027 parameter from inc_nr_running()\n  sched: remove the \u0027u64 now\u0027 parameter from dec_load()\n  sched: remove the \u0027u64 now\u0027 parameter from inc_load()\n  sched: remove the \u0027u64 now\u0027 parameter from update_curr_load()\n  sched: remove the \u0027u64 now\u0027 parameter from -\u003etask_new()\n  ...\n"
    },
    {
      "commit": "e3bcf5e2785aa49f75f36a8d27d601891a7ff12b",
      "tree": "8a79cd195751b325e4972ef1b53ff2cc5a9eb5fe",
      "parents": [
        "0d027c01cd36b8cff727c78d2e40d334ba9895a8"
      ],
      "author": {
        "name": "Ronald G. Minnich",
        "email": "rminnich@gmail.com",
        "time": "Thu Aug 09 21:07:24 2007 +1000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Aug 09 08:14:56 2007 -0700"
      },
      "message": "lguest: avoid shared libraries mapped over guest memory\n\nSome versions of ld.so mmap the shared libraries right in over guest\nmemory, so compile lguest statically by default.\n\n[ FC7 maps shared libraries very low, where the launcher maps guest\u0027s\n  physical memory.  Quick fix is to link Launcher static, real fix is\n  for 2.6.24. ]\n\n-static is a simple fix. I expect this problem will be more common than we\nlike, as different distro\u0027s make different \"improvements\" to ld.so\n\nSigned-off-by: Ronald G. Minnich \u003crminnich@gmail.com\u003e\nSigned-off-by: Rusty Russell \u003crusty@rustcorp.com.au\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "aea25401c3347d9f3a64ebdc81043be246a9f631",
      "tree": "4d5168e823df59e43bed13e378bc88c75be2d332",
      "parents": [
        "e0361851e5647cdd62fd5c367df5d7e145769d04"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Aug 09 11:16:46 2007 +0200"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Aug 09 11:16:46 2007 +0200"
      },
      "message": "sched: document nice levels\n\nDocument the design thinking behind nice levels.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "5f5d3aa15bb24a4d5d195bd32d549bd725d414bc",
      "tree": "a56014415f771ff021daaa795b0594244ad0121c",
      "parents": [
        "4301065920b0cbde3986519582347e883b166f3e"
      ],
      "author": {
        "name": "Thomas Voegtle",
        "email": "tv@lio96.de",
        "time": "Thu Aug 09 11:16:46 2007 +0200"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Aug 09 11:16:46 2007 +0200"
      },
      "message": "sched: mention CONFIG_SCHED_DEBUG in documentation\n\na little hint to switch on CONFIG_SCHED_DEBUG should be given.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "c3887cd7253299cac2a6dc5ea792613a5ba5bf6a",
      "tree": "29a34d81e81c5e0f3fdaf1dcf0c8474b784a3f59",
      "parents": [
        "463c9a9f7d1f746c251761cef3af5c808394b7e1"
      ],
      "author": {
        "name": "H. Peter Anvin",
        "email": "hpa@zytor.com",
        "time": "Thu Aug 02 13:50:43 2007 -0400"
      },
      "committer": {
        "name": "H. Peter Anvin",
        "email": "hpa@zytor.com",
        "time": "Thu Aug 02 13:50:43 2007 -0400"
      },
      "message": "[x86 setup] Document grub \u003c 0.93 as broken\n\nGrub older than 0.93 are broken when the kernel setup is bigger than\n8K.  This was fixed in 2002, and 0.93 was the first grub version which\nfixed this bug.\n\nSigned-off-by: H. Peter Anvin \u003chpa@zytor.com\u003e\n"
    },
    {
      "commit": "dd9cd6d4351076c78bb8c0f9146d1904b481fdbb",
      "tree": "d633c460e2232def1a59b0e6f6c00711d835d911",
      "parents": [
        "128a2bcf9dddeb8e79a4ba55bf191533f70f39ce",
        "5cccf4a1a258ea5bff20e8440deb3dfcf032b04a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 20:40:50 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 20:40:50 2007 -0700"
      },
      "message": "Merge branch \u0027release\u0027 of git://lm-sensors.org/kernel/mhoffman/hwmon-2.6\n\n* \u0027release\u0027 of git://lm-sensors.org/kernel/mhoffman/hwmon-2.6:\n  hwmon: fscher read control bugfix\n  hwmon: (adm1031) Fix broken links in documentation\n  hwmon: make abituguru3_read_increment_offset() static\n  hwmon: Fix regression caused by typo in lm90.c\n  hwmon: (applesmc) add temperature sensors set for Macbook\n  hwmon: fscher control update bugfix\n  hwmon: fix dme1737 temp fault attribute\n  hwmon: Add missing __devexit tags in various drivers\n  hwmon: clean up duplicate includes\n  hwmon: fix lm78 detection regression\n  hwmon: fix array overruns in lm93.c\n  hwmon: add support for THMC50 and ADM1022\n"
    },
    {
      "commit": "07ff8ee79e254ac07205d2c9c9e8fbe2f4b3e6e8",
      "tree": "b2ca9a7a360ef1a5e4ec4926a3f20dfc816faa10",
      "parents": [
        "448e3cee839fdf975d6119eed475ec7d0400404e"
      ],
      "author": {
        "name": "Dave Young",
        "email": "hidave.darkstar@gmail.com",
        "time": "Tue Jul 31 00:39:11 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:42 2007 -0700"
      },
      "message": "hpet.txt: broken link fix\n\nThe specification link in hpet document is broken.\n\nSigned-off-by: Dave Young \u003chidave.darkstar@gmail.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "73c21e8024296760c450a0bded131cb573f83328",
      "tree": "c51a70df35c6e0783e435fa2c0d3531b3225ee23",
      "parents": [
        "5ac4d823fd93be49c2a90fb877fc5fc6317936d5"
      ],
      "author": {
        "name": "Randy Dunlap",
        "email": "randy.dunlap@oracle.com",
        "time": "Tue Jul 31 00:39:04 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:41 2007 -0700"
      },
      "message": "docbook bad file references\n\nFix docbook warnings:\n\nWarning(linux-2.6.22-git12//drivers/base/power/main.c): no structured comments found\nWarning(linux-2.6.22-git12//include/linux/splice.h): no structured comments found\n\nSigned-off-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "22b238bdb93ed2fcb1d627ce81d8a2fcbe24de85",
      "tree": "5d7cb82155b5e5db8cd219802c4b27362a3de1d7",
      "parents": [
        "6f166e3833d953f0acf77eb7d426840da9e1a87f"
      ],
      "author": {
        "name": "Anton Vorontsov",
        "email": "avorontsov@ru.mvista.com",
        "time": "Tue Jul 31 00:38:44 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:40 2007 -0700"
      },
      "message": "spidev_test utility\n\nThis is a simple utility used to test SPI functionality.  It could stand\ngrowing options to support using other test data patterns; this initial\nversion only issues full duplex transfers, which rules out 3WIRE or\nMicrowire links.\n\nSigned-off-by: Anton Vorontsov \u003cavorontsov@ru.mvista.com\u003e\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "7eacbbd32a98ab5b607f7773bb2692cc195db9b2",
      "tree": "debaffbdd2c2511fd5aa09a9d4b7860ad8eeead2",
      "parents": [
        "a12e2c6cde6392287b9cd3b4bd8d843fd1458087"
      ],
      "author": {
        "name": "Satyam Sharma",
        "email": "satyam@infradead.org",
        "time": "Tue Jul 31 00:38:17 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:39 2007 -0700"
      },
      "message": "Fix a typo in Documentation/keys.txt\n\nSigned-off-by: Satyam Sharma \u003csatyam@infradead.org\u003e\nAcked-by: David Howells \u003cdhowells@redhat.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "a12e2c6cde6392287b9cd3b4bd8d843fd1458087",
      "tree": "de28f0a232077e1dfaa56ffe35a7dcb238c0b72f",
      "parents": [
        "9eb3ff40376e505eafb927b4a4cbccc928df68ec"
      ],
      "author": {
        "name": "Randy Dunlap",
        "email": "randy.dunlap@oracle.com",
        "time": "Tue Jul 31 00:38:17 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:39 2007 -0700"
      },
      "message": "Doc: DMA-API update\n\nFix typos and update function parameters.\n\nSigned-off-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nAcked-by: Muli Ben-Yehuda \u003cmuli@il.ibm.com\u003e\nCc: James Bottomley \u003cJames.Bottomley@steeleye.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "60fd4d6a1953accd3d57f8e4f3b0f4692598bf4e",
      "tree": "6e2b9964c60e5af8cfa49cdc49db4f4403d81769",
      "parents": [
        "afb2c1650b4c6f285596268d0a1de2a81542a765"
      ],
      "author": {
        "name": "Wyatt Banks",
        "email": "wyatt@banksresearch.com",
        "time": "Tue Jul 31 00:38:10 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:38 2007 -0700"
      },
      "message": "Documentation: document HFSPlus\n\nDocumentation: document HFSPlus filesystem and its mount options.\n\nSigned-off-by: Wyatt Banks \u003cwyatt@banksresearch.com\u003e\nCc: \"Randy.Dunlap\" \u003crdunlap@xenotime.net\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "57d4810ea0d9ca58a7bcc1336607f0cede0a2abf",
      "tree": "6194ce01088fbd9852579a14bd8726d9c8eef73f",
      "parents": [
        "a583f1b54249b11ad1ffd14c6e74d28fcbc59c07"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@linux-foundation.org",
        "time": "Tue Jul 31 00:38:02 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:38 2007 -0700"
      },
      "message": "revert \"x86, serial: convert legacy COM ports to platform devices\"\n\nRevert 7e92b4fc345f5b6f57585fbe5ffdb0f24d7c9b26.  It broke Sébastien Dugué\u0027s\nmachine and Jeff said (persuasively)\n\n  This seems like it will break decades-long-working stuff, in favor of\n  breaking new ground in our favorite area, \"trusting the BIOS.\"\n\n  It\u0027s just not worth it for serial ports, IMO.  Serial ports are something\n  that just shouldn\u0027t break at this late stage in the game.  My new Intel\n  platform boxes don\u0027t even have serial ports, so I question the value of\n  messing with serial port probing even more...  because...  just wait a year,\n  and your box won\u0027t have a serial port either!  :)\n\n  I certainly don\u0027t object to the use of platform devices (or isa_driver),\n  but the probe change seems questionable.  That\u0027s sorta analagous to\n  rewriting the floppy driver probe routine.  Sure you could do it...  but why\n  risk all that damage and go through debugging all over again?\n\n  It seems clear from this report that we cannot, should not, trust BIOS for\n  something (a) so simple and (b) that has been working for over a decade.\n\nMuch discussion ensued and we\u0027ve decided to have another go at all of this.\n\nCc: Sébastien Dugué \u003csebastien.dugue@bull.net\u003e\nCc: Bjorn Helgaas \u003cbjorn.helgaas@hp.com\u003e\nCc: Len Brown \u003clenb@kernel.org\u003e\nCc: Adam Belay \u003cambx1@neo.rr.com\u003e\nCc: Matthew Garrett \u003cmjg59@srcf.ucam.org\u003e\nCc: Russell King \u003crmk@arm.linux.org.uk\u003e\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nAcked-by: Alan Cox \u003calan@lxorguk.ukuu.org.uk\u003e\nCc: Michal Piotrowski \u003cmichal.k.k.piotrowski@gmail.com\u003e\nCc: Sascha Sommer \u003csaschasommer@freenet.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "cd4f0ef7c03e79f92a883843662e3d0eaae26fb4",
      "tree": "321429b2ecc1bb9137445b8a8c117fc33b985a1b",
      "parents": [
        "f6f953aa99d456aff44ffdb1c77061d1a010eae2"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Tue Jul 31 00:37:59 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:38 2007 -0700"
      },
      "message": "doc/kernel-parameters: use X86-32 tag instead of IA-32\n\nSigned-off-by: Alan Cox \u003calan@lxorguk.ukuu.org.uk\u003e\nAcked-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "b8a367935fc649c071a91c648c4a9c892f72113e",
      "tree": "4713218892b8bf32278c71e93e92952b0849969e",
      "parents": [
        "dd54567a83057821a667109a5cadec6eed0295de"
      ],
      "author": {
        "name": "Randy Dunlap",
        "email": "randy.dunlap@oracle.com",
        "time": "Tue Jul 31 00:37:50 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:38 2007 -0700"
      },
      "message": "pnp: fix kernel-doc warnings\n\nFix PNP docbook warnings:\n\nWarning(linux-2623-rc1g4//drivers/pnp/core.c): no structured comments found\nWarning(linux-2623-rc1g4//drivers/pnp/driver.c): no structured comments found\n\nSigned-off-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "c8facbb62111f9333d00870b0d523f5036822d04",
      "tree": "7c1206728991e360f360b574c9218f0471982a24",
      "parents": [
        "f53161d1088567dda41094a932f6a16dc0bdae59"
      ],
      "author": {
        "name": "Randy Dunlap",
        "email": "randy.dunlap@oracle.com",
        "time": "Tue Jul 31 00:37:40 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:37 2007 -0700"
      },
      "message": "various doc/kernel-parameters fixes\n\n- tell what APIC (by request), MTD, \u0026 PARIDE mean\n- correct some source file names\n- remove IA64 \"llsc*\u003d\" (seems to have been removed from source tree)\n- removel SCSI \"53c7xx\u003d\" (driver already removed)\n\nSigned-off-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nAcked-by: Jesper Juhl \u003cjesper.juhl@gmail.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "7f8e00f2b9797ce7235634431d65269d21ef80d2",
      "tree": "515eb16ef77b48121376f1493c758b4513ebcdd0",
      "parents": [
        "96918a35a09f322d57c1a2d41e5b5ab24ea73991"
      ],
      "author": {
        "name": "Randy Dunlap",
        "email": "randy.dunlap@oracle.com",
        "time": "Tue Jul 31 00:37:26 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 31 15:39:36 2007 -0700"
      },
      "message": "update dontdiff file\n\nUpdates based on recent .gitignore updates:\n\n*.o.*: Says Alexey Dobriyan:\nThese are presumably temporary gcc files, which aren\u0027t interesting.\n\nsetup.bin, setup.elf: new x86 boot code files (from Matthew Wilcox)\n\nSigned-off-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "517ef0d2a470c69b303c66694b0c45f31ff716cd",
      "tree": "8870ea38c542eb458abc5f1ff779a48c82674f20",
      "parents": [
        "4688902dab051eae24a57e4e549d119c332f7ab0"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Fri Jul 13 14:29:41 2007 +0200"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Mon Jul 30 21:13:43 2007 -0400"
      },
      "message": "hwmon: (adm1031) Fix broken links in documentation\n\nThe Analog Devices chip information pages moved to a different location.\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Mark M. Hoffman \u003cmhoffman@lightlink.com\u003e\n"
    },
    {
      "commit": "add77c64ca8b00dae5dc0a6be9eb89f1514d21ea",
      "tree": "91f998c9c203d877cce43cf0c08d05848d624973",
      "parents": [
        "80ba80a9bf25d251237694c3fcee850a73324532"
      ],
      "author": {
        "name": "Krzysztof Helt",
        "email": "krzysztof.h1@wp.pl",
        "time": "Sun Jul 08 22:43:00 2007 +0200"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Mon Jul 30 21:02:59 2007 -0400"
      },
      "message": "hwmon: add support for THMC50 and ADM1022\n\nThis patch adds support for THMC50 and ADM1022 hardware monitoring chips.\n\nSigned-off-by: Krzysztof Helt \u003ckrzysztof.h1@wp.pl\u003e\nAcked-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Mark M. Hoffman \u003cmhoffman@lightlink.com\u003e\n"
    },
    {
      "commit": "f285ea058001ef534f9e53a21aad42c2952bbad5",
      "tree": "d3e4df63f49fc10c599d9fd123812ac297c226ce",
      "parents": [
        "a56156489dbdc60ac39a77b8a988d375b2f273a0"
      ],
      "author": {
        "name": "Cornelia Huck",
        "email": "cornelia.huck@de.ibm.com",
        "time": "Fri Jul 27 13:41:10 2007 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Jul 30 14:25:13 2007 -0700"
      },
      "message": "kobject: update documentation\n\nUpdate kobject documentation:\n\n- Update structure definitions.\n- Remove documentation of removed struct subsystem.\n\n(First shot, uevent_ops probably need some documentation as well.)\n\nSigned-off-by: Cornelia Huck \u003ccornelia.huck@de.ibm.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "a2765e81d8a58f66e21176ca2a8fd6012b187994",
      "tree": "f3c29cb040338b02131b7ceeab9605cba27e186f",
      "parents": [
        "30b1b28001fef09ea31b1c87e8e8acb962d109e2"
      ],
      "author": {
        "name": "Juan Lang",
        "email": "juan.lang@gmail.com",
        "time": "Tue Jul 24 13:24:19 2007 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Jul 30 14:25:12 2007 -0700"
      },
      "message": "stable_api_nonsense.txt: Disambiguate the use of \"this\" by using \"that\" to refer to the syscall interface\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "30b1b28001fef09ea31b1c87e8e8acb962d109e2",
      "tree": "790f0984bf042a557920b73b13c8a3c7e7a01af2",
      "parents": [
        "42e61f4adbf18c7b0218b91d32fd6ee1f978d82c"
      ],
      "author": {
        "name": "Randy Dunlap",
        "email": "randy.dunlap@oracle.com",
        "time": "Mon Jul 23 21:05:02 2007 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Jul 30 14:25:12 2007 -0700"
      },
      "message": "Fix Doc/sysfs-rules typos\n\nFix typos only (spelling, grammar, duplicate words, etc.).\n\nSigned-off-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nCc: Kay Sievers \u003ckay.sievers@vrfy.org\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "8b43626f0cdfb3154c57d52e732679c9d3484369",
      "tree": "853d6cbc020b4bd7ac6bf288d26e2f6fbbfbe3ad",
      "parents": [
        "6e3eb0993837fb4a597b88a7e28ce3847cb5777c"
      ],
      "author": {
        "name": "Tsugikazu Shibata",
        "email": "tshibata@ab.jp.nec.com",
        "time": "Thu Jul 19 11:24:54 2007 +0900"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Jul 30 14:25:11 2007 -0700"
      },
      "message": "HOWTO: sync Japanese HOWTO\n\nSigned-off-by: Tsugikazu Shibata \u003ctshibata@ab.jp.nec.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "6e3eb0993837fb4a597b88a7e28ce3847cb5777c",
      "tree": "af1bbfd3c36f90db390c6744a57f96766a984386",
      "parents": [
        "80ba80a9bf25d251237694c3fcee850a73324532"
      ],
      "author": {
        "name": "IKEDA, Munehiro",
        "email": "m-ikeda@ds.jp.nec.com",
        "time": "Thu Jul 19 11:36:56 2007 +0900"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Jul 30 14:25:11 2007 -0700"
      },
      "message": "HOWTO: adjust translation header of Japanese stable_api_nonsense.txt\n\nSigned-off-by: IKEDA, Munehiro \u003cm-ikeda@ds.jp.nec.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "9873aed5a90aefb1642a85070c35088cca8b6a92",
      "tree": "be7d6cf2a3e0c71faa861e0c5d0c9bc4c5f40a10",
      "parents": [
        "7b5573769f26a23518b33a64ec129d2833564877",
        "5aaaf9f0ed11882fe7c6bc4202f78da1baa8caba"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sat Jul 28 19:33:23 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sat Jul 28 19:33:23 2007 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git390.osdl.marist.edu/pub/scm/linux-2.6\n\n* \u0027for-linus\u0027 of git://git390.osdl.marist.edu/pub/scm/linux-2.6:\n  [S390] Fix sclp_vt220 error handling.\n  [S390] cio: Reorganize initialization.\n  [S390] cio: Make CIO_* macros safe if dbfs are not available.\n  [S390] cio: Clean up messages.\n  [S390] Fix IRQ tracing.\n  [S390] vmur: fix diag14_read.\n  [S390] Wire up sys_fallocate.\n  [S390] add types.h include to s390_ext.h\n  [S390] cio: Remove deprecated rdc/rcd.\n  [S390] Get rid of new section mismatch warnings.\n  [S390] sclp: kill unused SCLP config option.\n  [S390] cio: Remove remains of _ccw_device_get_device_number().\n  [S390] cio: css_sch_device_register() can be made static.\n  [S390] Improve __smp_call_function_map.\n  [S390] Convert to smp_call_function_single.\n"
    },
    {
      "commit": "8e8ef2971b0fd6dcf1a66014fb74b41938eecb4e",
      "tree": "3c451f9c21123046806724680a3a8aebd48e6247",
      "parents": [
        "933a6208d84c92d92f9264a2e28d0fc317d41fd1",
        "79685b8deea4541d18882d8c07d0e99e788292ab"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sat Jul 28 19:31:13 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sat Jul 28 19:31:13 2007 -0700"
      },
      "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  docbook: add pipes, other fixes\n  blktrace: use cpu_clock() instead of sched_clock()\n  bsg: Fix build for CONFIG_BLOCK\u003dn\n  [patch] QUEUE_FLAG_READFULL QUEUE_FLAG_WRITEFULL comment fix\n"
    },
    {
      "commit": "8059862c636778bc1872c89ae307eb6bccd35581",
      "tree": "6a568941dc8d44bf5dfcb8a9abd988fdd3a8be1d",
      "parents": [
        "e62133b4ea0d85888d9883a3e1c396ea8717bc26"
      ],
      "author": {
        "name": "Cornelia Huck",
        "email": "cornelia.huck@de.ibm.com",
        "time": "Fri Jul 27 12:29:14 2007 +0200"
      },
      "committer": {
        "name": "Martin Schwidefsky",
        "email": "schwidefsky@de.ibm.com",
        "time": "Fri Jul 27 12:29:18 2007 +0200"
      },
      "message": "[S390] cio: Remove deprecated rdc/rcd.\n\nhttp://marc.info/?l\u003dlinux-kernel\u0026m\u003d118481061928246\u0026w\u003d2 seems to\nindicate disfavour of \"deprecated\", so let\u0027s just kill it now.\n\nSigned-off-by: Cornelia Huck \u003ccornelia.huck@de.ibm.com\u003e\nSigned-off-by: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\n"
    },
    {
      "commit": "79685b8deea4541d18882d8c07d0e99e788292ab",
      "tree": "07ef3cd834115451598b5988ca2074c7618bc809",
      "parents": [
        "7c2ff389bbb33074e7fde7a744f59da199a74af5"
      ],
      "author": {
        "name": "Randy Dunlap",
        "email": "randy.dunlap@oracle.com",
        "time": "Fri Jul 27 08:08:51 2007 +0200"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Fri Jul 27 08:08:51 2007 +0200"
      },
      "message": "docbook: add pipes, other fixes\n\nFix some typos in pipe.c and splice.c.\nAdd pipes API to kernel-api.tmpl.\n\nSigned-off-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Jens Axboe \u003cjens.axboe@oracle.com\u003e\n"
    },
    {
      "commit": "c99c108ac362f5cc37f79fad7e9897bd9d033bcc",
      "tree": "95ab1d70136c748a9d951559db0ed34c043e744f",
      "parents": [
        "190644e180794208bc638179f4d5940fe419bf9c"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "cebbert@redhat.com",
        "time": "Fri Jul 27 10:46:20 2007 +1000"
      },
      "committer": {
        "name": "Dave Airlie",
        "email": "airlied@redhat.com",
        "time": "Fri Jul 27 10:46:20 2007 +1000"
      },
      "message": "AGP: document boot options\n\nAdd documentation for AGP boot options.\n\nSigned-off-by: Chuck Ebbert \u003ccebbert@redhat.com\u003e\nSigned-off-by: Dave Airlie \u003cairlied@redhat.com\u003e\n"
    },
    {
      "commit": "257f49251c802c67030c11f63cee4ed7b50f6639",
      "tree": "99fcefa267be1b2ae63b48bf2094157732ecece1",
      "parents": [
        "293a032eb95f3c6c212c1541e94c14b111731313",
        "e692ab53473c93c0d0820618c97aa74a62ab67da"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 26 13:59:59 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 26 13:59:59 2007 -0700"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-sched\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-sched:\n  [PATCH] sched: debug feature - make the sched-domains tree runtime-tweakable\n  [PATCH] sched: add above_background_load() function\n  [PATCH] sched: update Documentation/sched-stats.txt\n  [PATCH] sched: mark sysrq_sched_debug_show() static\n  [PATCH] sched: make cpu_clock() not use the rq clock\n  [PATCH] sched: remove unused rq-\u003eload_balance_class\n  [PATCH] sched: arch preempt notifier mechanism\n  [PATCH] sched: increase SCHED_LOAD_SCALE_FUZZ\n"
    },
    {
      "commit": "f56a384e98aa81065038c4e16f39ed989ccae687",
      "tree": "923bcaabd76a88351fe5e61370143350747a90c4",
      "parents": [
        "f8f0fdcd40449d318f8dc30c1b361b0b7f54134a"
      ],
      "author": {
        "name": "Rusty Russell",
        "email": "rusty@rustcorp.com.au",
        "time": "Thu Jul 26 10:41:05 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 26 11:35:17 2007 -0700"
      },
      "message": "lguest: documentation VII: FIXMEs\n\nDocumentation: The FIXMEs\n\nSigned-off-by: Rusty Russell \u003crusty@rustcorp.com.au\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "dde797899ac17ebb812b7566044124d785e98dc7",
      "tree": "531ae7fd415d267e49acfedbbf4f03cf86e5eac1",
      "parents": [
        "e2c9784325490c878b7f69aeec1bed98b288bd97"
      ],
      "author": {
        "name": "Rusty Russell",
        "email": "rusty@rustcorp.com.au",
        "time": "Thu Jul 26 10:41:03 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 26 11:35:17 2007 -0700"
      },
      "message": "lguest: documentation IV: Launcher\n\nDocumentation: The Launcher\n\nSigned-off-by: Rusty Russell \u003crusty@rustcorp.com.au\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "f938d2c892db0d80d144253d4a7b7083efdbedeb",
      "tree": "1fbc946a9fb59827001a5d4d5224abe5e624e605",
      "parents": [
        "dfb68689bf3e3d31dc9fb5c2bde5379a4ca9b0ec"
      ],
      "author": {
        "name": "Rusty Russell",
        "email": "rusty@rustcorp.com.au",
        "time": "Thu Jul 26 10:41:02 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 26 11:35:16 2007 -0700"
      },
      "message": "lguest: documentation I: Preparation\n\nThe netfilter code had very good documentation: the Netfilter Hacking HOWTO.\nNoone ever read it.\n\nSo this time I\u0027m trying something different, using a bit of Knuthiness.\n\nSigned-off-by: Rusty Russell \u003crusty@rustcorp.com.au\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "b762f3ffb797c1281a38a1c82194534055fba5ec",
      "tree": "00677b2b564f93b28385715fea6bf3435d8edc0b",
      "parents": [
        "f33734619371ae40f34bbce001938408e6634f05"
      ],
      "author": {
        "name": "Joachim Deguara",
        "email": "joachim.deguara@amd.com",
        "time": "Thu Jul 26 13:40:43 2007 +0200"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Jul 26 13:40:43 2007 +0200"
      },
      "message": "[PATCH] sched: update Documentation/sched-stats.txt\n\nWhile learning about schedstats I found that the documentation in the tree\nis old.  I updated it and found some interesting stuff like schedstats\nversion 14 is the same as version and version 13 never saw a kernel\nrelease!  Also there are 6 fields in the current schedstats that are not\nused anymore.  Nick had made them irrelevant in commit\n476d139c218e44e045e4bc6d4cc02b010b343939 but never removed them.\n\nThanks to Rick\u0027s perl script who I borrowed some of the updated descriptions\nfrom.\n\nSigned-off-by: Joachim Deguara \u003cjoachim.deguara@amd.com\u003e\nAcked-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nCc: Rick Lindsley \u003cricklind@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "b2e961eb2e7a54ffaae82f8e0198b26b54ade98e",
      "tree": "33e5192a4c84e717d8c2f8235f268216b01053f7",
      "parents": [
        "b8c1c5da1520977cb55a358f20fc09567d40cad9",
        "71f65e6bd7651610d2d6aeb3c12aab63667ace30"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 24 12:26:44 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 24 12:26:44 2007 -0700"
      },
      "message": "Merge branch \u0027request-queue-t\u0027 of git://git.kernel.dk/linux-2.6-block\n\n* \u0027request-queue-t\u0027 of git://git.kernel.dk/linux-2.6-block:\n  [BLOCK] Add request_queue_t and mark it deprecated\n  [BLOCK] Get rid of request_queue_t typedef\n"
    },
    {
      "commit": "be1ff386e768ee4fc19bb7da48cee4fc4cb4e75b",
      "tree": "56b1dc6b7220d8f32688acdb214318c5842b017b",
      "parents": [
        "6570c45995a6339597462434a81f358a38941ac4"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Mon Jul 23 18:43:57 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 24 12:24:59 2007 -0700"
      },
      "message": "minor gpio doc update\n\nFix doc bug noted by Uwe Kleine-König:  gpio_set_direction() is long\ngone, replaced by gpio_direction_input() and gpio_direction_output().\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nCc: \u003cukleinek@informatik.uni-freiburg.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "6570c45995a6339597462434a81f358a38941ac4",
      "tree": "e1d963379a71e847f92c447a7ebffeb45bdf1d0f",
      "parents": [
        "6ddb23c78aeef40f549c5ad22a3e8dfa1f8297e0"
      ],
      "author": {
        "name": "Rusty Russell",
        "email": "rusty@rustcorp.com.au",
        "time": "Mon Jul 23 18:43:56 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Tue Jul 24 12:24:59 2007 -0700"
      },
      "message": "link lguest example launcher non-static\n\nS.Caglar Onur points out that many distributions don\u0027t ship a static\nzlib.  Unfortunately the launcher currently maps virtual device memory\nwhere shared libraries want to go.\n\nThe solution is to pre-scan the args to figure out how much memory we\nhave, then allocate devices above that, rather than down from the top\npossible address.  This also turns out to be simpler.\n\nSigned-off-by: Rusty Russell \u003crusty@rustcorp.com.au\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "165125e1e480f9510a5ffcfbfee4e3ee38c05f23",
      "tree": "8009c8a5ff09e26dc2418d42f66ecafb055c52a2",
      "parents": [
        "f695baf2df9e0413d3521661070103711545207a"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Tue Jul 24 09:28:11 2007 +0200"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "jens.axboe@oracle.com",
        "time": "Tue Jul 24 09:28:11 2007 +0200"
      },
      "message": "[BLOCK] Get rid of request_queue_t typedef\n\nSome of the code has been gradually transitioned to using the proper\nstruct request_queue, but there\u0027s lots left. So do a full sweet of\nthe kernel and get rid of this typedef and replace its uses with\nthe proper type.\n\nSigned-off-by: Jens Axboe \u003cjens.axboe@oracle.com\u003e\n"
    },
    {
      "commit": "f56d35e7aa78ac56a93ff43da90e8d90a37a1362",
      "tree": "c8902c204e07171bce5effa8123bc1c2e85ceebc",
      "parents": [
        "e3202262eccf9b5669abea848303e79bd84dc1bb"
      ],
      "author": {
        "name": "Linus Nilsson",
        "email": "lajnold@gmail.com",
        "time": "Sat Jul 21 17:49:06 2007 +0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sun Jul 22 11:49:53 2007 -0700"
      },
      "message": "Documentation: Fix a mispelt \"probably\" in SubmittingPatches.\n\nFix a typo in SubmittingPatches where \"probably\" was spelt \"probabally\".\n\nSigned-off-by: Linus Nilsson \u003clajnold@gmail.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "e3202262eccf9b5669abea848303e79bd84dc1bb",
      "tree": "a419f206ea992c330e78b023bc5c8bacbe47c4af",
      "parents": [
        "a5b4860b973bb7a306562d8715ba8538a584537d"
      ],
      "author": {
        "name": "Linus Nilsson",
        "email": "lajnold@gmail.com",
        "time": "Sat Jul 21 17:25:34 2007 +0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sun Jul 22 11:49:53 2007 -0700"
      },
      "message": "DocBook: Change a headline in kernel-locking to list all three main types of locking.\n\nChange a headline to reflect that there are three main types of kernel\nlocking, not two.\n\nSigned-off-by: Linus Nilsson \u003clajnold@gmail.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "e6f194d8f6f50da6837af637b2fd839c34185f7a",
      "tree": "f3c479a2bc24d49a150ff183e2614ee0f76cb366",
      "parents": [
        "7578634990fb47cc30083fbd812689aa6deacfc0",
        "b91421749a1840148d8c81637c03c0ace3f35269"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sun Jul 22 11:36:49 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sun Jul 22 11:36:49 2007 -0700"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6\n\n* master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (60 commits)\n  [SCSI] libsas: make ATA functions selectable by a config option\n  [SCSI] bsg: unexport sg v3 helper functions\n  [SCSI] bsg: fix bsg_unregister_queue\n  [SCSI] bsg: make class backlinks\n  [SCSI] 3w-9xxx: add support for 9690SA\n  [SCSI] bsg: fix bsg_register_queue error path\n  [SCSI] ESP: Increase ESP_BUS_TIMEOUT to 275.\n  [SCSI] libsas: fix scr_read/write users and update the libata documentation\n  [SCSI] mpt fusion: update Kconfig help\n  [SCSI] scsi_transport_sas: add destructor for bsg\n  [SCSI] iscsi_tcp: buggered kmalloc()\n  [SCSI] qla2xxx: Update version number to 8.02.00-k2.\n  [SCSI] qla2xxx: Add ISP25XX support.\n  [SCSI] qla2xxx: Use pci_try_set_mwi().\n  [SCSI] qla2xxx: Use PCI-X/PCI-Express read control interfaces.\n  [SCSI] qla2xxx: Re-factor isp_operations to static structures.\n  [SCSI] qla2xxx: Validate mid-layer \u0027underflow\u0027 during check-condition handling.\n  [SCSI] qla2xxx: Correct setting of \u0027current\u0027 and \u0027supported\u0027 speeds during FDMI registration.\n  [SCSI] qla2xxx: Generalize iIDMA support.\n  [SCSI] qla2xxx: Generalize FW-Interface-2 support.\n  ...\n"
    },
    {
      "commit": "08e31686d6d119ba26bf0690f5f872f6f5bd1a97",
      "tree": "4568c690296eede145bdcc6555834b939d0a6c2c",
      "parents": [
        "d6da5ce8cc71a13e2f3671361c5a8bd9b82e014d",
        "f432255e936a892a6896e5032e2b4897423076f2"
      ],
      "author": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Jul 22 02:28:06 2007 -0400"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Jul 22 02:28:06 2007 -0400"
      },
      "message": "Pull thinkpad into release branch\n"
    },
    {
      "commit": "f79e3185dd0f8650022518d7624c876d8929061b",
      "tree": "4cec3a434036031b4e2d4fef608f5523fb21c829",
      "parents": [
        "e8b495fe09bc793ae26774e7b2667f7f658d56e2",
        "8b8eb7d8cfc6cd95ed00cd58754e8493322505bd"
      ],
      "author": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Jul 22 02:27:40 2007 -0400"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Jul 22 02:27:40 2007 -0400"
      },
      "message": "Pull misc into release branch\n\nConflicts:\n\n\tDocumentation/feature-removal-schedule.txt\n"
    },
    {
      "commit": "8b8eb7d8cfc6cd95ed00cd58754e8493322505bd",
      "tree": "2f5406ec140b747524144eae821bf1f4184c6360",
      "parents": [
        "7a9b9068b8c7b526894904c0b9b90354825b8fbd"
      ],
      "author": {
        "name": "Zhang Rui",
        "email": "rui.zhang@intel.com",
        "time": "Wed Jul 18 17:23:24 2007 +0800"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Jul 22 02:09:16 2007 -0400"
      },
      "message": "ACPI: update ACPI proc I/F removal schedule\n\nACPI sysfs conversion is not finished yet and\nsome user space tools still depend on the ACPI proc I/F.\n\nWe plan to finish all the sysfs conversion by January 2008\nand remove the ACPI proc I/F in July 2008.\n\nSigned-off-by: Zhang Rui \u003crui.zhang@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "7a9b9068b8c7b526894904c0b9b90354825b8fbd",
      "tree": "4e0fe1017c47fb112de5247e2f920b25c05e755e",
      "parents": [
        "4ebf83c8cf89ab13bc23e46b0fcb6178ca23b43c"
      ],
      "author": {
        "name": "Zhang Rui",
        "email": "rui.zhang@intel.com",
        "time": "Fri Jul 13 13:42:47 2007 +0800"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Jul 22 02:08:16 2007 -0400"
      },
      "message": "ACPI: update feature-removal-schedule.txt, /sys/firmware/acpi/namespace is gone\n\nThe /sys/firmware/acpi/namespace has already been removed in 2.6.21.\n\nSigned-off-by: Zhang Rui \u003crui.zhang@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "c78d5c96bb65b71a54b7551b404fbaf4763ed6e4",
      "tree": "cc941497db0f54d307c0f297374822964dccde08",
      "parents": [
        "3d6f99ca00ccf861305fd8630a21f2e696886708"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:47 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:50:13 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: bump up version to 0.15\n\nName it thinkpad-acpi version 0.15.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "3d6f99ca00ccf861305fd8630a21f2e696886708",
      "tree": "9c22295bbcccf8325cc690c691cf16f28bfeb3a4",
      "parents": [
        "a8fba3da3d11d808137be7ebeb3b6938a42f011f"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:46 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:50:05 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: make EC-based thermal readings non-experimental\n\nReading the 16 thermal sensors directly from the EC has been stable for\nabout one year, in all supported ThinkPad models.  Remove its\n\"experimental\" label.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "edf0e0e56904f794c97ca6c4562d8256e3d8d8e3",
      "tree": "aab531df2112114bc7a855c5b283207de2b37406",
      "parents": [
        "24d3b77467b6aaf59e38dce4aa86d05541858195"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:44 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:49:18 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: react to Lenovo ThinkPad differences in hot key\n\nLenovo ThinkPads have a slightly different key map layout from IBM\nThinkPads (fn+f2 and fn+f3 are swapped).  Knowing which one we are dealing\nwith, we can properly set a few more hot keys up by default.\n\nAlso, export the correct vendor in the input device, as that information\nmight be useful to userspace.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "24d3b77467b6aaf59e38dce4aa86d05541858195",
      "tree": "92975c9c2d4b37922d25782bd02d7076d77e817e",
      "parents": [
        "d5a2f2f1d68e2da538ac28540cddd9ccc733b001"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:43 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:49:03 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: allow use of CMOS NVRAM for brightness control\n\nIt appears that Lenovo decided to break the EC brightness control interface\nin a weird way in their latest BIOSes.  Fortunately, the old CMOS NVRAM\ninterface works just fine in such BIOSes.\n\nAdd a module parameter that allows the user to select which strategy to use\nfor brightness control: EC, NVRAM, or both.  By default, do both (which is\nthe way thinkpad-acpi used to work until now) on IBM ThinkPads, and use\nNVRAM only on Lenovo ThinkPads.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "741553c2d29b4075d636a38792c05cd2fc62bd8a",
      "tree": "c9adece8209e5f3d2540639db994a8cede3352d3",
      "parents": [
        "5c29d58f471099401513e2e567f6c28001bb0f13"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:39 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:46:48 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: checkpoint sysfs interface version due to input layer\n\nThe change in the way hotkey events are handled by default, and the use of\nthe input layer for the hotkey events are important enough features to\nwarrant increasing the major field of the sysfs interface version.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "1a343760b516ca5466d201bec32b1794858b18a5",
      "tree": "a3ba178b79e5f17365fac6bbd9aa475e42e102b0",
      "parents": [
        "6a38abbf2b68e37493f2d5e8702b895a6c23ba0f"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:36 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:45:56 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: make the input event mode the default\n\nMake the input layer the default way to deal with thinkpad-acpi hot keys,\nbut add a kernel config option to retain the old way of doing things.\n\nThis means we map a lot more keys to useful stuff by default, and also that\nwe enable hot key handling by default on driver load (like Windows does).\n\nThe documentation for proper use of this resource is also updated.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nCc: Richard Hughes \u003chughsient@gmail.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "6a38abbf2b68e37493f2d5e8702b895a6c23ba0f",
      "tree": "23f4e4bad740a5b866ee31d46c907756127e5fb0",
      "parents": [
        "7f5d1cd6287b7b29d210f85e2343207ac4310da2"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:35 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:38:44 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: add input device support to hotkey subdriver\n\nAdd input device support to the hotkey subdriver.\n\nHot keys that have a valid keycode mapping are reported through the input\nlayer if the input device is open.  Otherwise, they will be reported as\nACPI events, as they were before.\n\nScan codes are reported (using EV_MSC MSC_SCAN events) along with EV_KEY\nKEY_UNKNOWN events.\n\nFor backwards compatibility purposes, hot keys that used to be reported\nthrough ACPI events are not mapped to anything meaningful by default.\nUserspace is supposed to remap them if it wants to use the input device for\nhot key reporting.\n\nThis patch is based on a patch by Richard Hughes \u003chughsient@gmail.com\u003e.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nCc: Richard Hughes \u003chughsient@gmail.com\u003e\nCc: Dmitry Torokhov \u003cdmitry.torokhov@gmail.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "d54b7d7f8026300c612dd733d501fcbc22fd0370",
      "tree": "b0c31839196d25938bdb02b8b090c6f5673ec03c",
      "parents": [
        "94b08713186cc47a5c367a866cc0a0a762721455"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:33 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:38:23 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: update CMOS commands documentation\n\nThe CMOS set of commands is often just used to keep the CMOS NVRAM in sync\nwith whatever the ACPI BIOS has been doing in modern ThinkPads.  In older\nThinkPads, it actually carried out real actions.  Document this.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "94b08713186cc47a5c367a866cc0a0a762721455",
      "tree": "a4a8a464a382437bb803aabc2e99a2ca04fa50e6",
      "parents": [
        "74941a69afcc06722685d492784414ec042ab492"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:32 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:38:16 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: checkpoint sysfs interface version due to hotkey\n\nThe change in the size of the hotkey mask, the hability to report the keys\nthat use the higher bits, and the addition of the hotkey_radio_sw attribute\nare important enough features to warrant increasing the minor field of the\nsysfs interface version.\n\nAlso, document a bit better how and when the thinkpad-acpi sysfs interface\nversion will be updated.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "74941a69afcc06722685d492784414ec042ab492",
      "tree": "6f97b54fc18db01504cc46dc72d7f28d7d91d5a7",
      "parents": [
        "9b010de59cb6dcab7e167dd2a0fa5d3b31447fea"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:31 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:38:08 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: export to sysfs the state of the radio slider switch\n\nSome ThinkPad models, notably the T60 and X60, have a slider switch to\nenable and disable the radios.  The switch has the capability of\nforce-disabling the radios in hardware on most models, and it is supposed\nto affect all radios (WLAN, WWAN, BlueTooth).\n\nExport the switch state as a sysfs attribute, on ThinkPads where it is\navailable.\n\nThanks to Henning Schild for asking for this feature, and for tracking down\nthe EC register that holds the radio switch state.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nCc: Henning Schild \u003chenning@wh9.tu-dresden.de\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "9b010de59cb6dcab7e167dd2a0fa5d3b31447fea",
      "tree": "44b5e548c0d9a4ad06011816aa6f8ded3a95457b",
      "parents": [
        "ae92bd17ff703b3703562148c73b4d6833e6a326"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:30 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:37:59 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: export hotkey maximum masks\n\nThe firmware knows how many hot keys it supports, so export this\ninformation in a sysfs attribute.\n\nAnd the driver knows which keys are always handled by the firmware in all\nknown ThinkPad models too, so export this information as well in a sysfs\nattribute.  Unless you know which events need to be handled in a passive\nway, do *not* enable hotkeys that are always handled by the firmware.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "ae92bd17ff703b3703562148c73b4d6833e6a326",
      "tree": "8e987e553f7c4d4a54be326e2b5310c32a6c1faf",
      "parents": [
        "b8b26402cb711de5d3bbd4515b91b6d863fea259"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:29 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:37:50 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: enable more hotkeys\n\nRevise ACPI HKEY functionality to better interface with the firmware, and\nenable up to 32 regular hotkeys, instead of just 16 of them.  Ouch.\n\nThis takes care of most keys one used to have to do CMOS NVRAM polling on,\nand should drop the need for tpb, thinkpad-keys, and other such 5Hz NVRAM\npolling power vampires on most modern ThinkPads ;-)\n\nAnd, just to add insult to injury, this was sort of working since forever\nthrough the procfs interface, but nobody noticed or tried an echo\n0xffffffff \u003e /proc/acpi/ibm/hotkey and told me it would generate weird\nevents. ARGH!\n\nThanks to Richard Hughes for kicking off the work that ended up with this\ndiscovery, and to Matthew Garret for calling my attention to the fact that\nnewer ThinkPads were indeed generating ACPI GPEs when such hot keys were\npressed.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nCc: Richard Hughes \u003chughsient@gmail.com\u003e\nCc: Matthew Garrett \u003cmjg59@srcf.ucam.org\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "b8b26402cb711de5d3bbd4515b91b6d863fea259",
      "tree": "c64aba89592096bed7c0922b485b8f1e65d1b1ac",
      "parents": [
        "94954cc60194796fb257802f6f65d79553c9a8ca"
      ],
      "author": {
        "name": "Henrique de Moraes Holschuh",
        "email": "hmh@hmh.eng.br",
        "time": "Wed Jul 18 23:45:28 2007 -0300"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sat Jul 21 23:37:20 2007 -0400"
      },
      "message": "ACPI: thinkpad-acpi: update information on T43 thermal sensor 0xc1\n\nUpdate the documentation with some extra data on the T43 thermal sensor\n@0xc1, thanks to Alexey Fisher.\n\nSigned-off-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "bd78432c8f209a1028f4e5bada8b1da1d8e4da09",
      "tree": "d807bc0f28f3157927f93c37c3e5002b00633b2e",
      "parents": [
        "e02e68d31e2d436197386997727b216fee9c4623"
      ],
      "author": {
        "name": "Tim Hockin",
        "email": "thockin@google.com",
        "time": "Sat Jul 21 17:10:37 2007 +0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sat Jul 21 18:37:10 2007 -0700"
      },
      "message": "x86_64: mcelog tolerant level cleanup\n\nBackground:\n The MCE handler has several paths that it can take, depending on various\n conditions of the MCE status and the value of the \u0027tolerant\u0027 knob.  The\n exact semantics are not well defined and the code is a bit twisty.\n\nDescription:\n This patch makes the MCE handler\u0027s behavior more clear by documenting the\n behavior for various \u0027tolerant\u0027 levels.  It also fixes or enhances\n several small things in the handler.  Specifically:\n     * If RIPV is set it is not safe to restart, so set the \u0027no way out\u0027\n       flag rather than the \u0027kill it\u0027 flag.\n     * Don\u0027t panic() on correctable MCEs.\n     * If the _OVER bit is set *and* the _UC bit is set (meaning possibly\n       dropped uncorrected errors), set the \u0027no way out\u0027 flag.\n     * Use EIPV for testing whether an app can be killed (SIGBUS) rather\n       than RIPV.  According to docs, EIPV indicates that the error is\n       related to the IP, while RIPV simply means the IP is valid to\n       restart from.\n     * Don\u0027t clear the MCi_STATUS registers until after the panic() path.\n       This leaves the status bits set after the panic() so clever BIOSes\n       can find them (and dumb BIOSes can do nothing).\n\n This patch also calls nonseekable_open() in mce_open (as suggested by akpm).\n\nResult:\n Tolerant levels behave almost identically to how they always have, but\n not it\u0027s well defined.  There\u0027s a slightly higher chance of panic()ing\n when multiple errors happen (a good thing, IMHO).  If you take an MBE and\n panic(), the error status bits are not cleared.\n\nAlternatives:\n None.\n\nTesting:\n I used software to inject correctable and uncorrectable errors.  With\n tolerant \u003d 3, the system usually survives.  With tolerant \u003d 2, the system\n usually panic()s (PCC) but not always.  With tolerant \u003d 1, the system\n always panic()s.  When the system panic()s, the BIOS is able to detect\n that the cause of death was an MC4.  I was not able to reproduce the\n case of a non-PCC error in userspace, with EIPV, with (tolerant \u003c 3).\n That will be rare at best.\n\nSigned-off-by: Tim Hockin \u003cthockin@google.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "d567b6a955c2c1a6b0e8fc13ecddc7d4ac4900a2",
      "tree": "7920c076cc3dae5684c47e8c7d7b002247d0fe47",
      "parents": [
        "74a1ddc597d83d5ca6541b15a15f80a3722e3a1e"
      ],
      "author": {
        "name": "Jan Beulich",
        "email": "jbeulich@novell.com",
        "time": "Sat Jul 21 17:10:23 2007 +0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sat Jul 21 18:37:09 2007 -0700"
      },
      "message": "x86_64: remove unused variable maxcpus\n\n.. and adjust documentation to properly reflect options that are\nx86-64 specific.\n\nSigned-off-by: Jan Beulich \u003cjbeulich@novell.com\u003e\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "2aae950b21e4bc789d1fc6668faf67e8748300b7",
      "tree": "5777768cc2493695ec9f4000c14f3584b3db28fd",
      "parents": [
        "a586df067afe0580bb02b7a6312ca2afe49bba03"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "ak@suse.de",
        "time": "Sat Jul 21 17:10:01 2007 +0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sat Jul 21 18:37:08 2007 -0700"
      },
      "message": "x86_64: Add vDSO for x86-64 with gettimeofday/clock_gettime/getcpu\n\nThis implements new vDSO for x86-64.  The concept is similar\nto the existing vDSOs on i386 and PPC.  x86-64 has had static\nvsyscalls before,  but these are not flexible enough anymore.\n\nA vDSO is a ELF shared library supplied by the kernel that is mapped into\nuser address space.  The vDSO mapping is randomized for each process\nfor security reasons.\n\nDoing this was needed for clock_gettime, because clock_gettime\nalways needs a syscall fallback and having one at a fixed\naddress would have made buffer overflow exploits too easy to write.\n\nThe vdso can be disabled with vdso\u003d0\n\nIt currently includes a new gettimeofday implemention and optimized\nclock_gettime(). The gettimeofday implementation is slightly faster\nthan the one in the old vsyscall.  clock_gettime is significantly faster\nthan the syscall for CLOCK_MONOTONIC and CLOCK_REALTIME.\n\nThe new calls are generally faster than the old vsyscall.\n\nAdvantages over the old x86-64 vsyscalls:\n- Extensible\n- Randomized\n- Cleaner\n- Easier to virtualize (the old static address range previously causes\noverhead e.g. for Xen because it has to create special page tables for it)\n\nWeak points:\n- glibc support still to be written\n\nThe VM interface is partly based on Ingo Molnar\u0027s i386 version.\n\nIncludes compile fix from Joachim Deguara\n\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "fccdb5ae7e453eb7de5592bc4ed17d10d4d90125",
      "tree": "c85dd84f8e7db1629d20ebc468ba42249d970e4c",
      "parents": [
        "d6269543ef24aa012aa228c27af3adb074f7b36b"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oliver@neukum.org",
        "time": "Sat Jul 21 04:37:43 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Sat Jul 21 17:49:16 2007 -0700"
      },
      "message": "Documentation:reference notifiers.txt in freezing-of-tasks.txt\n\nfreezing-of-tasks.txt mentions firmware issues without mentioning the use\nof the new notifier API to overcome them.  Here\u0027s an update.\n\nSigned-off-by: Oliver Neukum \u003coneukum@suse.de\u003e\nAcked-by: Rafael J. Wysocki \u003crjw@sisk.pl\u003e\nAcked-by: Nigel Cunningham \u003cnigel@nigel.suspend2.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "110dd8f19df534b5e464bd1d8f491195a7e62a26",
      "tree": "4c6b1875b4ed081feb898ff62206a1c140df8bea",
      "parents": [
        "fbc9a5727401442f6972bbddaeb0650f2bf2ebe2"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "James.Bottomley@steeleye.com",
        "time": "Fri Jul 20 13:11:44 2007 -0500"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.localdomain",
        "time": "Fri Jul 20 15:52:08 2007 -0500"
      },
      "message": "[SCSI] libsas: fix scr_read/write users and update the libata documentation\n\nThis fixes up the usage in libsas (which are easy to miss, since they\u0027re\nonly in the scsi-misc tree) ... and also corrects the documentation on\nthe point of what these two function pointers actually return.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "efa7e8673c78cc6de2d6c367eb6f50449c57ed90",
      "tree": "2759535bd50e6d6cc4801a02106ee26f27aa610f",
      "parents": [
        "02d6112cd7d75bf30685ee4b2e9dc0291b4d3133",
        "bd807f9c5b90c236c3d173a5815d620bc1b1316d"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Fri Jul 20 12:02:20 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Fri Jul 20 12:02:20 2007 -0700"
      },
      "message": "Merge branch \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6\n\n* \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6:\n  [IA64] Prevent people from directly including \u003casm/rwsem.h\u003e.\n  [IA64] remove time interpolator\n  [IA64] Convert to generic timekeeping/clocksource\n  [IA64] refresh some config files for 64K pagesize\n  [IA64] Delete iosapic_free_rte()\n  [IA64] fallocate system call\n  [IA64] Enable percpu vector domain for IA64_DIG\n  [IA64] Enable percpu vector domain for IA64_GENERIC\n  [IA64] Support irq migration across domain\n  [IA64] Add support for vector domain\n  [IA64] Add mapping table between irq and vector\n  [IA64] Check if irq is sharable\n  [IA64] Fix invalid irq vector assumption for iosapic\n  [IA64] Use dynamic irq for iosapic interrupts\n  [IA64] Use per iosapic lock for indirect iosapic register access\n  [IA64] Cleanup lock order in iosapic_register_intr\n  [IA64] Remove duplicated members in iosapic_rte_info\n  [IA64] Remove block structure for locking in iosapic.c\n"
    },
    {
      "commit": "c36c282b88963d0957368a443168588e62301fda",
      "tree": "6343887ae42a65635a61b4ad99fd7f3e8dd24758",
      "parents": [
        "f4fbfb0dda5577075a049eec7fb7ad38abca1912",
        "1f564ad6d4182859612cbae452122e5eb2d62a76"
      ],
      "author": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Fri Jul 20 11:26:47 2007 -0700"
      },
      "committer": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Fri Jul 20 11:26:47 2007 -0700"
      },
      "message": "Pull ia64-clocksource into release branch\n"
    },
    {
      "commit": "1f564ad6d4182859612cbae452122e5eb2d62a76",
      "tree": "ef98ce12ed64853437c35a81e29f0d1c09a4393b",
      "parents": [
        "0aa366f351d044703e25c8425e508170e80d83b1"
      ],
      "author": {
        "name": "Bob Picco",
        "email": "bob.picco@hp.com",
        "time": "Wed Jul 18 15:51:28 2007 -0700"
      },
      "committer": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Fri Jul 20 11:23:02 2007 -0700"
      },
      "message": "[IA64] remove time interpolator\n\nRemove time_interpolator code (This is generic code, but\nonly user was ia64.  It has been superseded by the\nCONFIG_GENERIC_TIME code).\n\nSigned-off-by: Bob Picco \u003cbob.picco@hp.com\u003e\nSigned-off-by: John Stultz \u003cjohnstul@us.ibm.com\u003e\nSigned-off-by: Peter Keilty \u003cpeter.keilty@hp.com\u003e\nSigned-off-by: Tony Luck \u003ctony.luck@intel.com\u003e\n"
    },
    {
      "commit": "0aa366f351d044703e25c8425e508170e80d83b1",
      "tree": "485040cbef6157b9bcb2e7b1b85920d1e391ab68",
      "parents": [
        "5bae7ac9feba925fd0099057f6b23d7be80b7b41"
      ],
      "author": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Fri Jul 20 11:22:30 2007 -0700"
      },
      "committer": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Fri Jul 20 11:22:30 2007 -0700"
      },
      "message": "[IA64] Convert to generic timekeeping/clocksource\n\nThis is a merge of Peter Keilty\u0027s initial patch (which was\nrevived by Bob Picco) for this with Hidetoshi Seto\u0027s fixes\nand scaling improvements.\n\nAcked-by: Bob Picco \u003cbob.picco@hp.com\u003e\nSigned-off-by: Tony Luck \u003ctony.luck@intel.com\u003e\n"
    },
    {
      "commit": "c54728d8aa59283ece86cb745e5085ece8b4eedb",
      "tree": "d1f4dba33634bdfdec64fb2e6c90a2ada9925c64",
      "parents": [
        "c5d9f1cdbf067b5500886c5171159e99657341ce"
      ],
      "author": {
        "name": "Nicola Fagnani",
        "email": "nicfagn@iol.it",
        "time": "Thu Jul 19 23:28:52 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:12:00 2007 +0200"
      },
      "message": "[ALSA] hda-intel: support for iMac 24\u0027\u0027 released on 09/2006\n\nBasic audio support for the iMac 24\u0027\u0027 model released on 09/2006,\nincluding\nheadphone jack detection with automatic speaker muting.\nThis iMac uses the Realtek ALC885 codec, not a Sigmatel one as in\nother models.\nFunctionality has been tested for internal speakers, headphone and\nmicrophone.\n\nSigned-off-by: Nicola Fagnani \u003cnicfagn@iol.it\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "4723c022e1960abb5608b37ef61443da7d6296bb",
      "tree": "12874e8f5e5fbcb521b3168e18ee60090ade5224",
      "parents": [
        "e87f97a3e842a816f30f087d5bfac68ef2afaef2"
      ],
      "author": {
        "name": "Claudio Matsuoka",
        "email": "cmatsuoka@gmail.com",
        "time": "Fri Jul 13 14:36:19 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:53 2007 +0200"
      },
      "message": "[ALSA] hda-codec - Rename HP model-specific quirks\n\nRename ALC888_HP_NETTLE and ALC888_HP_LUCKNOW models to the more generic\nnames ALC888_6ST_HP and ALC888_3ST_HP since HP seems to be consistent\nin the wiring of their 3stack and 6stack ALC888-based systems.\n\nSigned-off-by: Claudio Matsuoka \u003ccmatsuoka@gmail.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "cac19c3ba123369b7c1199e20bb01fb265004ff5",
      "tree": "10598290eb75ce54fcd988afbc7e58a0da4ffbcb",
      "parents": [
        "1b290a510c12be91b6a2f7d6a07ef61b8ee9f06a"
      ],
      "author": {
        "name": "Thibault Le Meur",
        "email": "Thibault.LeMeur@supelec.fr",
        "time": "Fri Jul 13 11:50:23 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:52 2007 +0200"
      },
      "message": "[ALSA] usb-audio - Fix AC3 with M-Audio Audiophile USB\n\nFixed AC3 interface in device_setup\u003d0x00 mode thanks to Hakan\nLennestal and updated documentation\n\nSigned-off-by: Thibault Le Meur \u003cThibault.LeMeur@supelec.fr\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "f8c78b82b9e47d933629e7060e4a83a277b15ffe",
      "tree": "bebe05fcce9dc70f5b6fea2459e3950ca909b1e0",
      "parents": [
        "be38114a49853e441e694d690e631937de5fc524"
      ],
      "author": {
        "name": "Thibault Le Meur",
        "email": "Thibault.LeMeur@supelec.fr",
        "time": "Thu Jul 12 11:26:35 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:50 2007 +0200"
      },
      "message": "[ALSA] usb-audio - Fix audiophile-USB quirk for little-endian\n\nAudiophile-usb fix (corrects little-endianness in 16bit\nmodes, resets interfaces at device initialization, and updates the\ndocumentation).\n\nSigned-off-by: Thibault Le Meur \u003cThibault.LeMeur@supelec.fr\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "940d244851f8a204b5aedae678d9ab96c20b2fec",
      "tree": "40e89725d991845b2bf2f7888c6f442fe7eaac00",
      "parents": [
        "0f40502e0b5300a37c4cfc7bf93f84c2702dbbe9"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Jul 06 12:24:55 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:45 2007 +0200"
      },
      "message": "[ALSA] Add missing model entries for HD-audio codecs\n\nAdded missing model entries for HD-audio codecs in the module option list.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "6963f84c428ecd31780c97224004c2462b0664f7",
      "tree": "d6bd0167304e2e92e55869c722d7ca2311967ff5",
      "parents": [
        "e65365de5ba280e058bd6b8b80c8790253268887"
      ],
      "author": {
        "name": "Mike Crash",
        "email": "mike@mikecrash.com",
        "time": "Mon Jun 25 12:12:51 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:37 2007 +0200"
      },
      "message": "[ALSA] hda: support for S/PDIF out on ASUS M2V\n\nAdded support for S/PDIF digital output on ASUS M2V motheboard - added\nnew model \u00273stack-660-digout\u0027 and ALC660VD_3ST_DIG\n\nSigned-off-by: Mike Crash \u003cmike@mikecrash.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "0ac8551ea08e655fc6f35874803f091a17dacf90",
      "tree": "9f04215414516587d393e631d1718e271dc38114",
      "parents": [
        "e25c05f1d5cf4e332db88b15e9daa1cabd6e17e0"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Wed Jun 20 15:46:13 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:33 2007 +0200"
      },
      "message": "[ALSA] hda-codec - Add AD1882 codec support\n\nAdded AD1882 codec support.  It has currently two models, 3stack and\n6stack.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "76c08828709129bdce6c6a325e0342ba73f2618f",
      "tree": "c2c9f08a3ee14c7b8191aef627242ee57e077498",
      "parents": [
        "b69f3748400517d1023337b97456a0a1cdc74a79"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Tue Jun 19 12:17:42 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:30 2007 +0200"
      },
      "message": "[ALSA] hda-codec - Add model dell for Dell XPS M1210\n\nAdded a new model \u0027dell\u0027 for Dell XPS M1210 with STAC922x codec chip.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "a361d84bfcd938208dea6c84aa19994b3d69e15d",
      "tree": "c3b05f27ca6331478b29dd8ecd52c3c44d468e3c",
      "parents": [
        "7d87de2db2213e6e9413532445b14c92dae42c85"
      ],
      "author": {
        "name": "Kailang Yang",
        "email": "kailang@realtek.com.tw",
        "time": "Tue Jun 05 12:30:55 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:24 2007 +0200"
      },
      "message": "[ALSA] hda-codec - Add support of ALC268 codec\n\nAdded the support of new ALC268 codec chip.\n\nSigned-off-by: Kailang Yang \u003ckailang@realtek.com.tw\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "1919de0a9e939ef4f9453ef1630ca1345991e144",
      "tree": "019b662d29a7f6c278c4ea6f4ad8bbd562bf74f6",
      "parents": [
        "3b194401a31b8df9a07a1850e3fe44fc7ba832a4"
      ],
      "author": {
        "name": "Alan Horstmann",
        "email": "gineera@aspect135.co.uk",
        "time": "Mon Jun 04 23:11:23 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:23 2007 +0200"
      },
      "message": "[ALSA] More description on duplex streams with OSS emulation\n\nAdd paragraph to the OSS document to clarify correct use of duplex streams.\n\nSigned-off-by: Alan Horstmann \u003cgineera@aspect135.co.uk\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "5d5d3bc3eddf2ad97b2cb090b92580e7fed6cee1",
      "tree": "479390be2c14313605ccadcaab11959571e1d281",
      "parents": [
        "65ff2357a7e40bf4b42858516861c3d0e19f512b"
      ],
      "author": {
        "name": "Ivan N. Zlatev",
        "email": "contact@i-nz.net",
        "time": "Tue May 29 16:03:00 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:22 2007 +0200"
      },
      "message": "[ALSA] hda-codec - Fix pin configs for Intel Macs\n\n* adds the pinconfigs for all 5 Apple boards and 14 Subsystem IDs\n  (support for possibly all iMac, Mac, MacMini etc etc)\n* adds \u0027intel-mac-v1\u0027 to v5 models which replace the current\n* reflects changes in Alsa-Configuration.txt\n\nSigned-off-by: Ivan N. Zlatev \u003ccontact@i-nz.net\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "621887aee9c7b4b613c12b82b83df7e56877f303",
      "tree": "fa26d2a5a584db9646ec33df6eb3965f2704bc7a",
      "parents": [
        "0ba7962b9f06c02dd1af93002e8d757805d16758"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Thu May 24 18:46:54 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:19 2007 +0200"
      },
      "message": "[ALSA] Add support for Cyrix/NatSemi Geode CS5530 (VSA1)\n\nAdd support for Cyrix/NatSemi Geode SC5530 (VSA1).\nThe driver is snd-cs5530.\nSigned-off-by Ash Willis \u003cashwillis@programmer.net\u003e\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "0dae0f83cd9956d0959f6d6de9f5391da6483274",
      "tree": "c92d0a2bbe51a693d31d5c35223a4a31016b2b6f",
      "parents": [
        "ea7cfcdfe6439cd98816da9d339a6bc9032d2084"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Mon May 21 12:41:29 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:19 2007 +0200"
      },
      "message": "[ALSA] hda-codec - Add support of newer version of Intel iMac\n\nAdded the pin configs for newer version of Intel iMac.\nThe information provided by Ivan N. Zlatev \u003ccontact@i-nz.net\u003e.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "959047431a9e65f6ae25705e77a8e460a1aa04c0",
      "tree": "635faaf3c82c5eef976fc2077ec7ae331ffdfe7f",
      "parents": [
        "2bac647c45ed9b397ace9109e6935c1364690f8a"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Sat May 19 17:06:42 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:18 2007 +0200"
      },
      "message": "[ALSA] Add description about probe_mask option for snd-hda-intel\n\nAdded a brief description about probe_mask option for snd-hda-intel.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "2bac647c45ed9b397ace9109e6935c1364690f8a",
      "tree": "d7faf326e72b7ee0ddd8a5446de40bdb7ae9f207",
      "parents": [
        "198de43d758ca2700e2b52b49c0b189b4931466c"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri May 18 18:21:41 2007 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Jul 20 11:11:18 2007 +0200"
      },
      "message": "[ALSA] hda-codec - Add AD1884 / AD1984 codec support\n\nAdded the support of AD1884 and AD1984 codec chips.\nAlso experimental quirks for Thinkpad T61/X61 laptops with AD1984.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "f4fbfb0dda5577075a049eec7fb7ad38abca1912",
      "tree": "dfba29efc83cb7c7e4f8e681152c92ee2a32fe9c",
      "parents": [
        "ffc720409ae8d1cb16ae4b9c39e9e744e4c59898",
        "bf903d0a4503db8ac166ca6135a59bc5f9b91a45"
      ],
      "author": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Thu Jul 19 16:34:40 2007 -0700"
      },
      "committer": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Thu Jul 19 16:34:40 2007 -0700"
      },
      "message": "Pull vector-domain into release branch\n"
    },
    {
      "commit": "efffbeee5bc4168059683714b300d307f5193d69",
      "tree": "7fde51080f4534a86bfa27a430aaf7ef2bb8ef92",
      "parents": [
        "40b42f1ebf653cd72c32eb1a1a0b9fea2dfbfd7d",
        "b824325443bb010689d22262c6a4e0feb63bad56"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 19 14:28:19 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 19 14:28:19 2007 -0700"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild: (33 commits)\n  xtensa: use DATA_DATA in xtensa\n  powerpc: add missing DATA_DATA to powerpc\n  cris: use DATA_DATA in cris\n  kallsyms: remove usage of memmem and _GNU_SOURCE from scripts/kallsyms.c\n  kbuild: use -fno-optimize-sibling-calls unconditionally\n  kconfig: reset generated values only if Kconfig and .config agree.\n  kbuild: fix the warning when running make tags\n  kconfig: strip \u0027CONFIG_\u0027 automatically in kernel configuration search\n  kbuild: use POSIX BRE in headers install target\n  Whitelist references from __dbe_table to .init\n  modpost white list pattern adjustment\n  kbuild: do section mismatch check on full vmlinux\n  kbuild: whitelist references from variables named _timer to .init.text\n  kbuild: remove hardcoded _logo names from modpost\n  kbuild: remove hardcoded apic_es7000 from modpost\n  kbuild: warn about references from .init.text to .exit.text\n  kbuild: consolidate section checks\n  kbuild: refactor code in modpost to improve maintainability\n  kbuild: ignore section mismatch warnings originating from .note section\n  kbuild: .paravirtprobe section is obsolete, so modpost doesn\u0027t need to handle it\n  ...\n"
    },
    {
      "commit": "40b42f1ebf653cd72c32eb1a1a0b9fea2dfbfd7d",
      "tree": "6a2adfcd8412189932a372ce25def8611e287b5c",
      "parents": [
        "5a021e9ffd56c22700133ebc37d607f95be8f7bd",
        "e24b8cb4fa2bb779bdf48656152366b6f52f748f"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 19 14:24:57 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 19 14:24:57 2007 -0700"
      },
      "message": "Merge branch \u0027release\u0027 of git://lm-sensors.org/kernel/mhoffman/hwmon-2.6\n\n* \u0027release\u0027 of git://lm-sensors.org/kernel/mhoffman/hwmon-2.6: (44 commits)\n  i2c: Delete the i2c-isa pseudo bus driver\n  hwmon: refuse to load abituguru driver on non-Abit boards\n  hwmon: fix Abit Uguru3 driver detection on some motherboards\n  hwmon/w83627ehf: Be quiet when no chip is found\n  hwmon/w83627ehf: No need to initialize fan_min\n  hwmon/w83627ehf: Export the thermal sensor types\n  hwmon/w83627ehf: Enable VBAT monitoring\n  hwmon/w83627ehf: Add support for the VID inputs\n  hwmon/w83627ehf: Fix timing issues\n  hwmon/w83627ehf: Add error messages for two error cases\n  hwmon/w83627ehf: Convert to a platform driver\n  hwmon/w83627ehf: Update the Kconfig entry\n  make coretemp_device_remove() static\n  hwmon: Add LM93 support\n  hwmon: Improve the pwmN_enable documentation\n  hwmon/smsc47b397: Don\u0027t report missing fans as spinning at 82 RPM\n  hwmon: Add support for newer uGuru\u0027s\n  hwmon/f71805f: Add temperature-tracking fan control mode\n  hwmon/w83627ehf: Preserve speed reading when changing fan min\n  hwmon: fix detection of abituguru volt inputs\n  ...\n\nManual fixup of trivial conflict in MAINTAINERS file\n"
    },
    {
      "commit": "e24b8cb4fa2bb779bdf48656152366b6f52f748f",
      "tree": "13cb838a2dd364b0453061f038cf62b118585d03",
      "parents": [
        "c182f5bbfb399b1fa2ad65107b3caf9c1c69435e"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Sun Jul 08 14:26:37 2007 +0200"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:25:20 2007 -0400"
      },
      "message": "i2c: Delete the i2c-isa pseudo bus driver\n\nThere are no users of i2c-isa left, so we can finally get rid of it.\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\n"
    },
    {
      "commit": "fc18d6c0479d5b6da281590a8caf166d60cc748b",
      "tree": "91f3184d802e7a45223db0bb187a1e195749b62c",
      "parents": [
        "6b3e46458049fe556c2346a347c4540e532db288"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Sun Jun 24 11:19:42 2007 +0200"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:17 2007 -0400"
      },
      "message": "hwmon/w83627ehf: Add support for the VID inputs\n\nThe W83627EHF and similar chips have 6 VID input pins, add support\nfor them. The driver changes the input voltage level automatically\nif the current setting is not correct for the detected CPU model.\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Mark M. Hoffman \u003cmhoffman@lightlink.com\u003e\n"
    },
    {
      "commit": "e46957edfb85e3054ed49350777833e18564c9ff",
      "tree": "f924d608e74815aea21a465b7f8a270ab31df60f",
      "parents": [
        "875f25d5f553f7cf3e6a59c50b32e5fc06442945"
      ],
      "author": {
        "name": "Hans-Jürgen Koch",
        "email": "hjk@linutronix.de",
        "time": "Thu Jul 05 17:58:29 2007 +0200"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:16 2007 -0400"
      },
      "message": "hwmon: Add LM93 support\n\nThis patch adds support for the LM93 hardware monitoring chip.\n\nSigned-off-by: Hans J. Koch \u003chjk@linutronix.de\u003e\nSigned-off-by: Mark M. Hoffman \u003cmhoffman@lightlink.com\u003e\n"
    },
    {
      "commit": "875f25d5f553f7cf3e6a59c50b32e5fc06442945",
      "tree": "a64c1ae5391df7c926d56a2c963eb155fbd893d4",
      "parents": [
        "90205c6cbb8fd9880bf798903a99f5b8903455e2"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Wed Jun 27 21:26:08 2007 +0200"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:16 2007 -0400"
      },
      "message": "hwmon: Improve the pwmN_enable documentation\n\nThe documentation of the pwmN_enable interface file is not very clear,\nand has been confusing several driver authors already. Make it clearer.\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Mark M. Hoffman \u003cmhoffman@lightlink.com\u003e\n"
    },
    {
      "commit": "3faa1ffb4f4be7d10715f4b003ff7b27d14eae26",
      "tree": "30e61e56fbe0b4889aea672a615c8d17e6a8cf1a",
      "parents": [
        "aba5073d3f4c928c89c483d85f8cff7cc9aa3312"
      ],
      "author": {
        "name": "Hans de Goede",
        "email": "j.w.r.degoede@hhs.nl",
        "time": "Sun Jun 17 00:28:45 2007 +0200"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:16 2007 -0400"
      },
      "message": "hwmon: Add support for newer uGuru\u0027s\n\nThis patch adds a new driver for the hardware monitoring features of the\nthird revision of the Abit uGuru chip, found on recent Abit\nmotherboards. This is an entirely different beast then the first and\nsecond revision (its again a winbond microcontroller, but the \"protocol\"\nto talk to it and the bank addresses are very different.\n\nSigned-off-by: Hans de Goede \u003cj.w.r.degoede@hhs.nl\u003e\nSigned-off-by: Mark M. Hoffman \u003cmhoffman@lightlink.com\u003e\n"
    },
    {
      "commit": "aba5073d3f4c928c89c483d85f8cff7cc9aa3312",
      "tree": "c966ca4de6e14d4edbb7232b3dcef3fb7e114b7f",
      "parents": [
        "158ce07564b68d4215b9560213a089d6f7c5a4ea"
      ],
      "author": {
        "name": "Phil Endecott",
        "email": "kernel@chezphil.org",
        "time": "Fri Jun 29 09:19:14 2007 +0200"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:15 2007 -0400"
      },
      "message": "hwmon/f71805f: Add temperature-tracking fan control mode\n\nAdd support for the \"temperature mode\" fan speed control. In this mode,\nthe user can define 3 temperature/speed trip points, and the chip will\nset the speed automatically according to the temperature changes.\n\nSigned-off-by: Phil Endecott \u003ckernel@chezphil.org\u003e\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Mark M. Hoffman \u003cmhoffman@lightlink.com\u003e\n"
    },
    {
      "commit": "2dbbdb35746fdc1a3c3bc5b07f197a90e53b059e",
      "tree": "babf7a8bb0ee6b36c5da17ab8961587df391418c",
      "parents": [
        "b74f3fdd98c7186930b8ee841dc542dfdba95473"
      ],
      "author": {
        "name": "Juerg Haefliger",
        "email": "juergh@gmail.com",
        "time": "Wed Jun 20 15:41:33 2007 -0700"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:15 2007 -0400"
      },
      "message": "hwmon: add SCH5317 to smsc47b397 driver\n\nThis patch adds the SMSC SCH5317 chip (device ID 0x85) as a supported\ndevice to the smsc47b397 driver.\n\nSigned-off-by: Juerg Haefliger \u003cjuergh at gmail.com\u003e\nSigned-off-by: Mark M. Hoffman \u003cmhoffman@lightlink.com\u003e\n"
    },
    {
      "commit": "08a8f6e9e63a4317f716749ba9f828351bd4af35",
      "tree": "22f5a8218b7d89d49eda2360f4ab99cfd98c364f",
      "parents": [
        "7817a39e65f04abe136d94a65fa26b7fe3334a1f"
      ],
      "author": {
        "name": "Rudolf Marek",
        "email": "r.marek@assembler.cz",
        "time": "Sat Jun 09 10:11:16 2007 -0400"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:13 2007 -0400"
      },
      "message": "hwmon/it87: Add IT8726F support\n\nAdd support for IT8726F chip driver, which is just same as\nIT8716F with additional glue logic for AMD power sequencing.\n\nSigned-off-by: Rudolf Marek \u003cr.marek@assembler.cz\u003e\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\n"
    },
    {
      "commit": "7817a39e65f04abe136d94a65fa26b7fe3334a1f",
      "tree": "4c7170fe690a8e66e1db341e32e28e7108e46435",
      "parents": [
        "32c82a934759b2c9939c9e25865c2d7d1204b9e8"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Sat Jun 09 10:11:16 2007 -0400"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:12 2007 -0400"
      },
      "message": "hwmon: Fault files naming convention\n\nWe have the following naming convention documented in\nDocumentation/hwmon/sysfs-interface for fault files:\n\nin[0-*]_input_fault\nfan[1-*]_input_fault\ntemp[1-*]_input_fault\n\nSome drivers follow this convention (lm63, lm83, lm90, smsc47m192).\nHowever some drivers omit the \"input\" part and create files named\nfan1_fault (pc87427) or temp1_fault (dme1737). And the new \"generic\"\nlibsensors follows this second (non-standard) convention, so it fails\nto report fault conditions for drivers which follow the standard.\n\nWe want a single naming scheme, and everyone seems to prefer the\nshorter variant, so let\u0027s go for it.\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\n"
    },
    {
      "commit": "32c82a934759b2c9939c9e25865c2d7d1204b9e8",
      "tree": "2e635ddcb4f84e24f271efad193881334bd78dcd",
      "parents": [
        "2df6d811574f46bea0d38bf91aa54df4c05488cd"
      ],
      "author": {
        "name": "Rainer Birkenmaier",
        "email": "rainer.birkenmaier@siemens.com",
        "time": "Sat Jun 09 10:11:16 2007 -0400"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:12 2007 -0400"
      },
      "message": "hwmon/lm90: Add support for the Maxim MAX6680/MAX6681\n\nSigned-off-by: Rainer Birkenmaier \u003crainer.birkenmaier@siemens.com\u003e\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\n"
    },
    {
      "commit": "b825037d185549825d4f35504f2085ec86037110",
      "tree": "732dfe9c84a813a3bc125d25d5e9f48c1a8b59b1",
      "parents": [
        "9431996f55f8a3c04cdcb63895cf7661e135fadb"
      ],
      "author": {
        "name": "Juerg Haefliger",
        "email": "juergh@gmail.com",
        "time": "Sat Jun 09 10:11:16 2007 -0400"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:12 2007 -0400"
      },
      "message": "hwmon/dme1737: Add documentation\n\nAdd documentation for the new SMSC DME1737 driver.\n\nSigned-off-by: Juerg Haefliger \u003cjuergh at gmail.com\u003e\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\n"
    },
    {
      "commit": "0966415d7267c860b88fe96f7e83cfd687efe0bd",
      "tree": "96d65e6c174ba2ef440e064fb5d7d60f72ee066b",
      "parents": [
        "6ea884dbc6eedd28af0fdb4577cdcb033d459543"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Sat Jun 09 10:11:15 2007 -0400"
      },
      "committer": {
        "name": "Mark M. Hoffman",
        "email": "mhoffman@lightlink.com",
        "time": "Thu Jul 19 14:22:11 2007 -0400"
      },
      "message": "hwmon/lm90: Spelling fix: explicitly\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\n"
    },
    {
      "commit": "87f24c3ac399e82c578e71311251f00618fc5203",
      "tree": "60790579a22d51105476299c015efa32b376f74c",
      "parents": [
        "b2a4ac0c2860b27670bce99e8c9c281bf431c272"
      ],
      "author": {
        "name": "Doug Thompson",
        "email": "dougthompson@xmission.com",
        "time": "Thu Jul 19 01:50:34 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 19 10:04:57 2007 -0700"
      },
      "message": "drivers/edac: add to edac docs\n\nUpdated the EDAC kernel documentation\n\nSigned-off-by:\tDoug Thompson \u003cdougthompson@xmission.com\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nCc: Alan Cox \u003calan@lxorguk.ukuu.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    }
  ],
  "next": "8ca47e00690914a9e5e6c734baa37c829a2f2fa1"
}
