)]}'
{
  "log": [
    {
      "commit": "5d0571d915f3e281f151df9a18a6a0be5a57c4b0",
      "tree": "731e8546c3a663208b8d8ad429dd86a9b49a2a1c",
      "parents": [
        "fc71fe40d2bedcc57d3406bf2050481f8b3441b6"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Thu Nov 17 14:02:48 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Nov 18 13:10:30 2005 -0500"
      },
      "message": "[PATCH] smc91x: fix one source of spurious interrupts\n\nNot only SMC_ACK_INT(IM_TX_EMPTY_INT) in in smc_hardware_send_pkt)\nappears to be unnecessary (tested with an SMC91C94 and SMC91C111), but\nit seems to trigger spurious interrupts on some machines as well.\nRemoved.\n\nWhile at it, let\u0027s log any remaining spurious interrupts if any (and\nclean usage of the max IRQ loop count value).\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "fc71fe40d2bedcc57d3406bf2050481f8b3441b6",
      "tree": "a0da5e2e32a4867f8f813f0421361b28aef55d20",
      "parents": [
        "b50ce2324cecf4efc7babe31f4aa1a07f9157317"
      ],
      "author": {
        "name": "Martin Schwidefsky",
        "email": "schwidefsky@de.ibm.com",
        "time": "Fri Nov 18 01:11:03 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:46 2005 -0800"
      },
      "message": "[PATCH] s390: fix class_device_create calls in 3270 the driver\n\nAdd the missing NULL argument to the class_device_create calls.\n\nSigned-off-by: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b50ce2324cecf4efc7babe31f4aa1a07f9157317",
      "tree": "c8cacd9ab083d2abf58a8d586d3014f314479b69",
      "parents": [
        "c0e485216de80046dd0d448b7cd530dbfc31402f"
      ],
      "author": {
        "name": "Andy Whitcroft",
        "email": "apw@shadowen.org",
        "time": "Fri Nov 18 01:11:02 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:46 2005 -0800"
      },
      "message": "[PATCH] ppc64 need HPAGE_SHIFT when huge pages disabled\n\nWith the new powerpc architecture we don\u0027t seem to be able to disable huge\npages anymore.\n\n    mm/built-in.o(.toc1+0xae0): undefined reference to `HPAGE_SHIFT\u0027\n    make: *** [.tmp_vmlinux1] Error 1\n\nWe seem to need to define HPAGE_SHIFT to something when HUGETLB_PAGE isn\u0027t\ndefined.  This patch defines it to PAGE_SHIFT when we have no support.\n\nSigned-off-by: Andy Whitcroft \u003capw@shadowen.org\u003e\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c0e485216de80046dd0d448b7cd530dbfc31402f",
      "tree": "069326485a1919936231a5a4d64d6adb8105d3a2",
      "parents": [
        "34ef75f09f09611b62ae11ae36c3c7b0a6a8a9cb"
      ],
      "author": {
        "name": "NeilBrown",
        "email": "neilb@suse.de",
        "time": "Fri Nov 18 01:11:01 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:46 2005 -0800"
      },
      "message": "[PATCH] md: fix is_mddev_idle calculation now that disk/sector accounting happens when request completes\n\nmd needs to monitor the rate of requests to its devices when doing\nresync/recovery so that it can back-off when there is non-resync IO.  It\ndoes this by comparing resync IO, which it counts, with total IO which is\ntaken from disk_stats.\n\ndisk_stats were recently changed to account sectors when a request\ncompletes instead of when it is queued.  This upsets md\u0027s calculations.\n\nWe could do the sync_io accounting at the end of requests too, but that has\nproblems.  If an underlying device is an md array, the accounting will\nstill be done when the request is submitted.  This could be changed for\nsome raid levels, but it cannot be changed for raid0 or linear without\nsubstantial code changes.\n\nSo instead, we increase the error that is_mddev_idle allows, up to the\nmaximum amount of resync IO that can be in flight at any time.  The\ncalculation is current fragile as each personality as different limits for\nin-flight resync.  This should be fixed up.\n\nFor now, this simple patch fixes the problem.\n\nIncreasing the error margin decreases the sensitivity to non-resync IO.  To\npartially compensate for this, the time to wait when non-resync IO is\ndetected is increased so that less steady IO is required to keep the resync\nat bay.\n\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "34ef75f09f09611b62ae11ae36c3c7b0a6a8a9cb",
      "tree": "b65c7225287313caeef5ba521a2ece9a3015b632",
      "parents": [
        "c4b32b8b010d036dc03f77b0ef2a747db0cc3588"
      ],
      "author": {
        "name": "Neil Brown",
        "email": "neilb@suse.de",
        "time": "Fri Nov 18 01:10:59 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:46 2005 -0800"
      },
      "message": "[PATCH] md: don\u0027t pass a NULL file* into -\u003eprepare_write()\n\nSome filesystems go oops.\n\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c4b32b8b010d036dc03f77b0ef2a747db0cc3588",
      "tree": "790006316ffa12c76dcfb0b53e7441932025fbf5",
      "parents": [
        "90612b308f2a2cc8aa08fbaf6f7184f5b7b5a855"
      ],
      "author": {
        "name": "Kylene Jo Hall",
        "email": "kjhall@us.ibm.com",
        "time": "Fri Nov 18 01:10:59 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:46 2005 -0800"
      },
      "message": "[PATCH] tpm: remove PCI kconfig dependency\n\nThe driver dependencies on PCI have been removed.  This patch clears that\nup in the Kconfig file\n\nSigned-off-by: Kylene Hall \u003ckjhall@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "90612b308f2a2cc8aa08fbaf6f7184f5b7b5a855",
      "tree": "ec50684193a201c7f6762287ce4f3b66bae1b04d",
      "parents": [
        "ba3961152e7016237e15e3dfc18f08c1853d156b"
      ],
      "author": {
        "name": "Kylene Jo Hall",
        "email": "kjhall@us.ibm.com",
        "time": "Fri Nov 18 01:10:58 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:45 2005 -0800"
      },
      "message": "[PATCH] tpm: use ioread8 and iowrite8\n\nUse ioread8 and iowrite8 as suggested.\n\nSigned-off-by: Kylene Hall \u003ckjhall@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ba3961152e7016237e15e3dfc18f08c1853d156b",
      "tree": "eef7380031f0e267ce78499f66b04edc2e51a0aa",
      "parents": [
        "966cc04b4d9d3d7a49e744888628acc36ebec5d4"
      ],
      "author": {
        "name": "Kylene Jo Hall",
        "email": "kjhall@us.ibm.com",
        "time": "Fri Nov 18 01:10:57 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:45 2005 -0800"
      },
      "message": "[PATCH] tpm: use flush_scheduled_work()\n\nAdd the necessary flush_schedule_work calls when canceling the timer.\n\nSigned-off-by: Kylene Hall \u003ckjhall@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "966cc04b4d9d3d7a49e744888628acc36ebec5d4",
      "tree": "7ec690deddbf164eb07abd541c7d13b1cf25b0d3",
      "parents": [
        "44f080c46e84090daf81b4d142359f8e38d7c5ee"
      ],
      "author": {
        "name": "Vitaly Bordug",
        "email": "vbordug@ru.mvista.com",
        "time": "Fri Nov 18 01:10:55 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:45 2005 -0800"
      },
      "message": "[PATCH] ppc32: add missing define for fs_enet Ethernet driver\n\nThis adds the FCC_PSMR_RMII defenition, which is used in fs_enet to enable\nRMII mode.\n\nSigned-off-by: Vitaly Bordug \u003cvbordug@ru.mvista.com\u003e\nCc: Jeff Garzik \u003cjgarzik@pobox.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "44f080c46e84090daf81b4d142359f8e38d7c5ee",
      "tree": "7f2cd28f932bba32c0c28a7c20983c9167f4667e",
      "parents": [
        "58bb01a9cd72eebf60d00c57b948a76aa7b85727"
      ],
      "author": {
        "name": "Matt Domsch",
        "email": "Matt_Domsch@dell.com",
        "time": "Fri Nov 18 01:10:54 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:45 2005 -0800"
      },
      "message": "[PATCH] ipmi: missing NULL test for kthread\n\nOn IPMI systems with BT interfaces, we don\u0027t start the kernel thread, so\nsmi_info-\u003ethread is NULL.  Test for NULL when stopping the thread, because\nkthread_stop() doesn\u0027t, and an oops ensues otherwise.\n\nSigned-off-by: Matt Domsch \u003cMatt_Domsch@dell.com\u003e\nAcked-by: Corey Minyard \u003cminyard@acm.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "58bb01a9cd72eebf60d00c57b948a76aa7b85727",
      "tree": "556a2185831feae57684f9c92f011a559420dab7",
      "parents": [
        "996417d2c4eb583e94553e4ede58974e0da1c38e"
      ],
      "author": {
        "name": "Hans Reiser",
        "email": "reiser@namesys.com",
        "time": "Fri Nov 18 01:10:53 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:45 2005 -0800"
      },
      "message": "[PATCH] re-export clear_page_dirty_for_io()\n\n2.6.14 has this exported, and reiser4 (at least) uses it.  Put things back\nthe way they were.\n\nSigned-off-by: Vladimir V. Saveliev \u003cvs@namesys.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "996417d2c4eb583e94553e4ede58974e0da1c38e",
      "tree": "61a1c6dfa7e4d65ce1424f2225c1f46b15f16bb1",
      "parents": [
        "2463ade2cb78224302998ee3c7dc7d53da88d258"
      ],
      "author": {
        "name": "Paul E. McKenney",
        "email": "paulmck@us.ibm.com",
        "time": "Fri Nov 18 01:10:50 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:45 2005 -0800"
      },
      "message": "[PATCH] add success/failure indication to RCU torture test\n\nOne issue with the RCU torture test is that the current error flagging can\nbe lost in dmesg.  This patch adds a \"SUCCESS\"/\"FAILURE\" string to the line\nthat flags the end of the test, where it can easily be seen with \"dmesg |\ntail\" at the end of the test.  Also adds tests of architecture-specific\nmemory barriers -- or, more likely, of the RCU torture test itself.\n\nCc: \u003cvatsa@in.ibm.com\u003e\nSigned-off-by: \"Paul E. McKenney\" \u003cpaulmck@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2463ade2cb78224302998ee3c7dc7d53da88d258",
      "tree": "b4ab2456c69a9cefcb5229834970b72772bda3bb",
      "parents": [
        "2203d6ed448ff3b777ee6bb614a53e686b483e5b"
      ],
      "author": {
        "name": "Andrey Volkov",
        "email": "avolkov@varma-el.com",
        "time": "Fri Nov 18 01:10:48 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:49:45 2005 -0800"
      },
      "message": "[PATCH] Fix copy-paste bug in ohci-ppc-soc.c\n\nFix copy-paste bug in ohci-ppc-soc.c(ohci_hcd_ppc_soc_drv_remove)\n\nSigned-off-by: Andrey Volkov \u003cavolkov@varma-el.com\u003e\nCc: Russell King \u003crmk@arm.linux.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2203d6ed448ff3b777ee6bb614a53e686b483e5b",
      "tree": "b7f540f808bde4febc304ad60b9af277ab0e7170",
      "parents": [
        "2656c076e31a3ce3ab2a987a578e7122dc2af51d"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:29:51 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:29:51 2005 -0800"
      },
      "message": "Fix ACPI processor power block initialization\n\nProperly clear the memory, and set \"pr-\u003eflags.power\" only if a C2 or\ndeeper state is valid (to make the code match both the comment and\nprevious behaviour).\n\nThis fixes a boot-time lockup reported by Maneesh Soni when using\n\"maxcpus\u003d1\".\n\nAcked-by: Maneesh Soni \u003cmaneesh@in.ibm.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2656c076e31a3ce3ab2a987a578e7122dc2af51d",
      "tree": "98ee4e9c816191c72fc7faaf1934f6c4e5e1f3d6",
      "parents": [
        "811803c5572b296e0031e0099203de90d77c7bcf",
        "f365cfd0d8b6d8fb3583d23d48f54efa88ee8563"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:22:51 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 18 07:22:51 2005 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge\n"
    },
    {
      "commit": "f365cfd0d8b6d8fb3583d23d48f54efa88ee8563",
      "tree": "26b22435eb7dfa2bc8df082a837a244cd5248838",
      "parents": [
        "8a5abdf80ecf3ad3fa052878778c7185c5911a53"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 16:41:49 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 16:41:49 2005 +1100"
      },
      "message": "offb: Fix compile error on ppc32 systems\n\nThe code Ben H added needs \u003clinux/pci.h\u003e for things like pci_dev, etc.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "8a5abdf80ecf3ad3fa052878778c7185c5911a53",
      "tree": "4e2cf3b1fc96e614b5e3e33fe5a44ef756f78741",
      "parents": [
        "44aedfe7dedb1ba9f4f9d17f55dec5727f5ff82f"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 16:39:08 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 16:39:08 2005 +1100"
      },
      "message": "powerpc: Move defconfig over and remove remaining arch/ppc64 files\n\nmake defconfig will now use arch/powerpc/configs/ppc64_defconfig\nif running on a ppc64 system.  I need to add an\narch/powerpc/configs/ppc_defconfig sometime.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "44aedfe7dedb1ba9f4f9d17f55dec5727f5ff82f",
      "tree": "60402e5468a06567fd525234c056d8827dd07fc7",
      "parents": [
        "49e16b7becd6320bde51aa238c11815708f836d9"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 15:54:12 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 15:54:12 2005 +1100"
      },
      "message": "powerpc: Fix a couple of compile warnings for 32-bit compiles\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "49e16b7becd6320bde51aa238c11815708f836d9",
      "tree": "38f6159992e890abe1134cecfff36b94146b4065",
      "parents": [
        "6146eed1e972a7de93ce2e36adc5812de81e879c"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 15:52:38 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 15:52:38 2005 +1100"
      },
      "message": "powerpc: time-of-day fixes for 32-bit CHRP systems\n\nThis makes 32-bit CHRP systems use the RTAS time-of-day routines if\navailable.  It fixes a bug in the RTAS time-of-day routines where they\nwere storing a 64-bit timebase value in an unsigned long by making\nthose variables u64.  Also, the direct-access time-of-day routines\nhad the wrong convention for the month and year in the struct rtc_time.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "6146eed1e972a7de93ce2e36adc5812de81e879c",
      "tree": "ecc17eeb0034a87c8f9bd763f258d4f6e2ff914d",
      "parents": [
        "437a58db57c61385baaa1cb8b7fa590b6a2f1607"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 15:47:18 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 15:47:18 2005 +1100"
      },
      "message": "powerpc: Fix compile error on pSeries arising from delay.h changes\n\npseries_dedicated_idle() was using __get_tb which used to be defined\nin asm/delay.h.  Change it to use get_tb from asm/time.h, which is\nin fact exactly the same thing.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "437a58db57c61385baaa1cb8b7fa590b6a2f1607",
      "tree": "3b25862dccdfd891b0d8582ff7b98b1db9f197f7",
      "parents": [
        "f62859bb6871c5e4a8e591c60befc8caaf54db8c"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 15:43:34 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 15:43:34 2005 +1100"
      },
      "message": "powerpc: Move remaining .c files from arch/ppc64 to arch/powerpc\n\nThis also deletes the now-unused Makefiles under arch/ppc64.\n\nBoth of the files moved over could use some merging, but for now I\nhave moved them as-is and arranged for them to be used only in 64-bit\nkernels.  For 32-bit kernels we still use arch/ppc/kernel/idle.c and\ndrivers/char/generic_nvram.c as before.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "f62859bb6871c5e4a8e591c60befc8caaf54db8c",
      "tree": "765fdc15c121d2b61754f33f98c750f2a728c7b4",
      "parents": [
        "5daf9071b527089b1bd5d9cb3a5354b83121550e"
      ],
      "author": {
        "name": "Mike Kravetz",
        "email": "kravetz@us.ibm.com",
        "time": "Mon Nov 14 16:12:49 2005 -0800"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 14:45:54 2005 +1100"
      },
      "message": "[PATCH] Remove SPAN_OTHER_NODES config definition\n\nThe config option SPAN_OTHER_NODES was created so that we could\nmake pSeries numa layouts work within the DISCONTIG memory model.\nNow that DISCONTIG has been replaced by SPARSEMEM, we can eliminate\nthis option.\n\nI\u0027ll be sending a separate patch to Andrew to remove the arch\nindependent code as pSeries was the only arch that needed this.\n\nSigned-off-by: Mike Kravetz \u003ckravetz@us.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "5daf9071b527089b1bd5d9cb3a5354b83121550e",
      "tree": "3abf10c1f67975f3a7d0def22de261f395c325f1",
      "parents": [
        "6defa38b3754c84cd3449447477aed81ea979407"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Fri Nov 18 14:09:41 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 14:39:23 2005 +1100"
      },
      "message": "[PATCH] powerpc: merge align.c\n\nThis patch merges align.c, the result isn\u0027t quite what was in ppc64 nor\nwhat was in ppc32 :) It should implement all the functionalities of both\nthough. Kumar, since you played with that in the past, I suppose you\nhave some test cases for verifying that it works properly before I dig\nout the 601 machine ? :)\n\nSince it\u0027s likely that I won\u0027t be able to test all scenario, code\ninspection is much welcome.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "6defa38b3754c84cd3449447477aed81ea979407",
      "tree": "b5f40628d6fd9001470aa2f9a8fa3f2ed08862c6",
      "parents": [
        "fe7bce5ef70105a6546dc9b5c354219b9f6ea991"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 13:44:17 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 14:08:12 2005 +1100"
      },
      "message": "powerpc: Fix delay functions for 601 processors\n\nMy earlier merge of delay.h introduced a timebase-based udelay for\n32-bit machines but also broke the 601, which doesn\u0027t have the\ntimebase register.  This fixes it by using the 601\u0027s RTC register on\nthe 601, and also moves __delay() and udelay() to be out-of-line in\narch/powerpc/kernel/time.c.  These functions aren\u0027t really performance\ncritical, after all.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "fe7bce5ef70105a6546dc9b5c354219b9f6ea991",
      "tree": "fd928be43cc97617d5dd9cac6ff2461ffbd83604",
      "parents": [
        "6760a1bdf56de6e1a30399d9069b94bfea59c13d"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Thu Nov 17 17:45:40 2005 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 13:31:46 2005 +1100"
      },
      "message": "[PATCH] ppc: Fix warnings related to seq_file\n\nWhen we moved things around in irq.h seq_file became an issue.  Fix\nwarnings related to its usage.\n\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "6760a1bdf56de6e1a30399d9069b94bfea59c13d",
      "tree": "01e95349b0c6074fde1dfc343bad5ac7cf534fc5",
      "parents": [
        "a097a35c9a6de6316c18a3e914c64400b5a6db57"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Thu Nov 17 17:05:02 2005 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 13:31:37 2005 +1100"
      },
      "message": "[PATCH] ppc: Fix MPC83xx device table\n\nThe SVRs for MPC8343/E were incorrect and really the SVRs\nfor MPC8347/E.\n\nSigned-off-by: David Updegraff \u003cdave@cray.com\u003e\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "a097a35c9a6de6316c18a3e914c64400b5a6db57",
      "tree": "d6e873018b552e1c3db80b36d02a09997b1c095c",
      "parents": [
        "68643cfb879ad8c327441f875b60981822016575"
      ],
      "author": {
        "name": "Segher Boessenkool",
        "email": "segher@kernel.crashing.org",
        "time": "Thu Nov 17 22:22:14 2005 +0100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 13:31:20 2005 +1100"
      },
      "message": "[PATCH] powerpc: Maple: request I/O resource.\n\nReserve the Maple RTC I/O resource.  Needed now we use genrtc.\n\nSigned-off-by: Segher Boessenkool \u003csegher@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "68643cfb879ad8c327441f875b60981822016575",
      "tree": "78c39f62bf48658640b4f4ed36a6356a4403cdd5",
      "parents": [
        "d2a33170972c5772826f7f6cc950ab69ba034667"
      ],
      "author": {
        "name": "Olaf Hering",
        "email": "olh@suse.de",
        "time": "Thu Nov 17 22:09:02 2005 +0100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 13:18:16 2005 +1100"
      },
      "message": "[PATCH] ppc boot: replace string labels with numbers\n\nReplacing the string labels with numbers saves 117 bytes in the final zImage.\nThese local labels are not discared.\n\nSigned-off-by: Olaf Hering \u003colh@suse.de\u003e\n\n arch/powerpc/boot/crt0.S |   23 +++++++++++------------\n 1 files changed, 11 insertions(+), 12 deletions(-)\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "d2a33170972c5772826f7f6cc950ab69ba034667",
      "tree": "4943e088cc0d89cd081c05f7e4185efde89f6454",
      "parents": [
        "b341e32e5cc1a154cb0ac2f4229c2d040647804b"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Thu Nov 17 20:34:35 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 13:18:11 2005 +1100"
      },
      "message": "[PATCH] powerpc: Fix typo in topology.h\n\nThe fix to topology.h (5cfccd7f132432dd4705444a44b51d12ef88a85f) seems to have\na typeo, struct sched_domain has an idle_idx member but not an idle_id\nmember. I assume this is the fix.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "811803c5572b296e0031e0099203de90d77c7bcf",
      "tree": "d2cd86c706af9e6ad47e2dda6b24df0d93f6f98f",
      "parents": [
        "42f9cabebe5915351bdba2f6f7f80e47c68e6ac8",
        "d5ea655376c471731845735dfe9a0bdfbe4492e9"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 17:26:56 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 17:26:56 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6\n"
    },
    {
      "commit": "42f9cabebe5915351bdba2f6f7f80e47c68e6ac8",
      "tree": "ae7487319d876ce736430a97a178af557fe2a189",
      "parents": [
        "976164497d6d8050403c96894ad418de44ec748f",
        "9e147a1cfce5ec6308b024abe425d5b4e1884a03"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 17:26:26 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 17:26:26 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6\n"
    },
    {
      "commit": "976164497d6d8050403c96894ad418de44ec748f",
      "tree": "5795746426c22eb8cb8b6e9ce3df761a154e0f91",
      "parents": [
        "6b1de9161e973bac8c4675db608fe4f38d2689bd"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Thu Nov 17 17:45:40 2005 -0600"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 17:26:09 2005 -0800"
      },
      "message": "[PATCH] ppc: Fix warnings related to seq_file\n\nWhen we moved things around in irq.h seq_file became an issue.  Fix\nwarnings related to its usage.\n\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9e147a1cfce5ec6308b024abe425d5b4e1884a03",
      "tree": "cbf4e057d96c38519dec3f1399654523a780ff6a",
      "parents": [
        "05b8b0fafd4cac75d205ecd5ad40992e2cc5934d"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Nov 17 16:52:51 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Nov 17 16:52:51 2005 -0800"
      },
      "message": "[IPV6]: Fib dump really needs GFP_ATOMIC.\n\nRevert: 8225ccbaf01b459cf1e462047a51b2851e756bc1\n\nBased upon a report by Yan Zheng.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "05b8b0fafd4cac75d205ecd5ad40992e2cc5934d",
      "tree": "b5ff4b545fc9d65b2c2ffe44b199621c675d4c7a",
      "parents": [
        "381998241fd1fc635596f4e8ae835f0d64ca1ba2"
      ],
      "author": {
        "name": "Roman Zippel",
        "email": "zippel@linux-m68k.org",
        "time": "Thu Nov 17 15:22:39 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Nov 17 15:22:39 2005 -0800"
      },
      "message": "[NET]: Sanitize NET_SCHED protection in /net/sched/Kconfig\n\nOn Thu, 17 Nov 2005, David Gómez wrote:\n\n\u003e I found out that if i select NET_CLS_ROUTE4, save my changes and exit\n\u003e menuconfig, execute again make menuconfig and go to QoS options, then the new\n\u003e available options are visible. So menuconfig has some problem refreshing\n\u003e contents :?\n\nNo, they were there before too, but you have to go up one level to see \nthem.\n\nIt\u0027s better in 2.6.15-rc1-git5, but the menu structure is still a little \nmessed up, the patch below properly indents all menu entries.\n\nSigned-off-by: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "381998241fd1fc635596f4e8ae835f0d64ca1ba2",
      "tree": "7e480e6ddba0144fc6029adf4a66fa00f72019bd",
      "parents": [
        "2fce76afdb067fa3e7f8ee33c9fe366bd65887ea"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Nov 17 15:17:42 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Nov 17 15:17:42 2005 -0800"
      },
      "message": "[LLC]: Fix compiler warnings introduced by TX window scaling changes.\n\nNoticed by Olaf Hering.\n\nThe comparisons want a u8 here (the data type on the left-hand branch\nis a u8 structure member, and the constant on the right-hand branch is\n\"~((u8) 128)\"), but C turns it into an integer so we get:\n\nnet/llc/llc_c_ac.c: In function `llc_conn_ac_inc_npta_value\u0027:\nnet/llc/llc_c_ac.c:998: warning: comparison is always true due to limited range of data type\nnet/llc/llc_c_ac.c:999: warning: large integer implicitly truncated to unsigned type\n\nFix this up by explicitly recasting the right-hand branch constant\ninto a \"u8\" once more.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2fce76afdb067fa3e7f8ee33c9fe366bd65887ea",
      "tree": "1c3c543169d446d495711860250dca4b319343fb",
      "parents": [
        "bd6af700a7191f483f41706467033588f28c8877"
      ],
      "author": {
        "name": "Harald Welte",
        "email": "laforge@netfilter.org",
        "time": "Thu Nov 17 15:06:47 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Nov 17 15:06:47 2005 -0800"
      },
      "message": "[NETFILTER] ip_conntrack: fix ftp/irc/tftp helpers on ports \u003e\u003d 32768\n\nSince we\u0027ve converted the ftp/irc/tftp helpers to use the new\nmodule_parm_array() some time ago, we ware accidentially using signed data\ntypes - thus preventing those modules from being used on ports \u003e\u003d 32768.\n\nThis patch fixes it by using \u0027ushort\u0027 module parameters.\n\nThanks to Jan Nijs for reporting this bug.\n\nSigned-off-by: Harald Welte \u003claforge@netfilter.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "d5ea655376c471731845735dfe9a0bdfbe4492e9",
      "tree": "27564e45ef7656c9130edad80a5f1495f927f3ef",
      "parents": [
        "6b1de9161e973bac8c4675db608fe4f38d2689bd"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Nov 17 15:04:34 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Nov 17 15:04:34 2005 -0800"
      },
      "message": "[COMPAT]: Add ext3 ioctl translations.\n\nSo things like on-line resizing et al. work.\n\nBased almost entirely upon a patch by Guido Günther \u003cagx@sigxcpu.org\u003e\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "bd6af700a7191f483f41706467033588f28c8877",
      "tree": "8a795f3effcc7086eee5addcc56646cf2cbb6c6e",
      "parents": [
        "6b1de9161e973bac8c4675db608fe4f38d2689bd"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Thu Nov 17 14:11:18 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Nov 17 14:11:18 2005 -0800"
      },
      "message": "[TCP]: TCP highspeed build error\n\nThere is a compile error that crept in with the last patch of\nTCP patches.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6b1de9161e973bac8c4675db608fe4f38d2689bd",
      "tree": "3ab6aaad7d22dcb7a00a339b8b49c2f5b2ecc12d",
      "parents": [
        "bb833986674ce1fc1b237b3d81459511ad2df393"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "axboe@suse.de",
        "time": "Thu Nov 17 21:35:02 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 12:43:01 2005 -0800"
      },
      "message": "[PATCH] VM: fix zone list restart in page allocatate\n\nWe must reassign z before looping through the zones kicking kswapd,\nsince it will be NULL if we hit an OOM condition and jump back to the\nbeginning again. \u0027z\u0027 is initially assigned before the restart: label. So\nmove the restart label up a little.\n\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "bb833986674ce1fc1b237b3d81459511ad2df393",
      "tree": "dca61cffabb03ab262be578f6e6d3b446383afbf",
      "parents": [
        "2d117403ae4006eeeb9037b82e9ecd8b3b043584"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 17 09:48:18 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:55 2005 -0800"
      },
      "message": "[PATCH] USB: add the anydata usb-serial driver\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2d117403ae4006eeeb9037b82e9ecd8b3b043584",
      "tree": "26283c3bd04bb17ccaa79036c540ee9f39d0aee6",
      "parents": [
        "654f31189e550cd5924b786487a5d93d9feaada9"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 17 09:48:13 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:55 2005 -0800"
      },
      "message": "[PATCH] USB: delete the nokia_dku2 driver\n\nIt was causing too many problems, and this is not the proper type of\ndriver for this device.\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "654f31189e550cd5924b786487a5d93d9feaada9",
      "tree": "3502129c017607c961e396b4f32566f48436cc70",
      "parents": [
        "87cf203935a646d5fb00464dc5887292da71d928"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 17 09:48:09 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:55 2005 -0800"
      },
      "message": "[PATCH] USB: move CONFIG_USB_DEBUG checks into the Makefile\n\nThis lets us remove a lot of code in the drivers that were all checking\nthe same thing.  It also found some bugs in a few of the drivers, which\nhas been fixed up.\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "87cf203935a646d5fb00464dc5887292da71d928",
      "tree": "8e5ca7b152755b03723dc3180eb931b41e66d652",
      "parents": [
        "9465663965fbe7de4e21d090e8eb0cc34b65294f"
      ],
      "author": {
        "name": "Richard Purdie",
        "email": "rpurdie@rpsys.net",
        "time": "Thu Nov 17 09:47:57 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:55 2005 -0800"
      },
      "message": "[PATCH] USB: OHCI lh7a404 platform device conversion fixup\n\nFix an error in the OHCI lh7a404 driver after the platform device\nconversion.\n\nSigned-off-by: Richard Purdie \u003crpurdie@rpsys.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9465663965fbe7de4e21d090e8eb0cc34b65294f",
      "tree": "c44aba9fdcdab05b096bfc0bbbdb185eaa893aaf",
      "parents": [
        "058120d70ebb430e27ad55871429028361c5baed"
      ],
      "author": {
        "name": "Antti Andreimann",
        "email": "Antti.Andreimann@mail.ee",
        "time": "Thu Nov 17 09:47:53 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] USB: Maxtor OneTouch button support for older drives\n\nThis small patch adds a device ID used by older Maxtor OneTouch drives\n(the ones with blue face-plate instead of the fancy silver one used in\nnewer models). The button on those drives works well with the current\ndriver.\n\nFrom: Antti Andreimann \u003cAntti.Andreimann@mail.ee\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "058120d70ebb430e27ad55871429028361c5baed",
      "tree": "83310b7403f841311b054f2509d12f2b4096f4e9",
      "parents": [
        "d23b536bb715673ca0ccbdaac2b6ce2c001d06e9"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Thu Nov 17 09:47:49 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] usb devio warning fix\n\ndrivers/usb/core/devio.c: In function `proc_ioctl_compat\u0027:\ndrivers/usb/core/devio.c:1401: warning: passing arg 1 of `compat_ptr\u0027 makes integer from pointer without a cast\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d23b536bb715673ca0ccbdaac2b6ce2c001d06e9",
      "tree": "ea784d44ab72378b716c084f79926e4435eea046",
      "parents": [
        "8845add380854ffce5268714a093df8c80b4a6e2"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Thu Nov 17 09:47:45 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] USB: fix race in kaweth disconnect\n\nthis patch from Herbert Xu fixes a race by moving termination of\nthe URBs into close() exclusively.\n\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: Oliver Neukum \u003coliver@neukum.name\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8845add380854ffce5268714a093df8c80b4a6e2",
      "tree": "dd2a06773bcfe716d1a35bcec0dfce5de5077cc5",
      "parents": [
        "9142d59a451731d23539d218c962418acc93283c"
      ],
      "author": {
        "name": "Daniel Drake",
        "email": "dsd@gentoo.org",
        "time": "Thu Nov 17 09:48:01 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] usb-storage: Fix detection of kodak flash readers in shuttle_usbat driver\n\nPeter Favrholdt reported that his Kodak flash device was getting\ndetected as a CDROM, and he helped me track this down to the fact that\nthe device takes a long time (approx 440ms!) to reset.\n\nThis patch increases the delay to 500ms, which solves the problem.\n\nSigned-off-by: Daniel Drake \u003cdsd@gentoo.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9142d59a451731d23539d218c962418acc93283c",
      "tree": "620f7c15bd32f2e21962f20ab82490944b56526f",
      "parents": [
        "b8f4c1d6674463e5824eada1ad7ec799276718bd"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oliver@neukum.org",
        "time": "Thu Nov 17 09:47:41 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] USB: Adapt microtek driver to new scsi features\n\nthe scsi layer now uses very short sg lists. This breaks the microtek\ndriver. Here is a patch fixes this and some other issues.\n\nSigned-off-by: Oliver Neukum \u003coliver@neukum.name\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b8f4c1d6674463e5824eada1ad7ec799276718bd",
      "tree": "65b7b3bed0f5534eeded951a7a0852c495ec6a83",
      "parents": [
        "a8310f3b8b713e52d77c56d4b8865685ee40d02a"
      ],
      "author": {
        "name": "Luiz Fernando Capitulino",
        "email": "lcapitulino@mandriva.com.br",
        "time": "Thu Nov 17 09:47:36 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] USB: pl2303: updates pl2303_update_line_status()\n\nUpdates pl2303_update_line_status() to handle X75 and SX1 Siemens mobiles\n\nSigned-off-by: Luiz Capitulino \u003clcapitulino@mandriva.com.br\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a8310f3b8b713e52d77c56d4b8865685ee40d02a",
      "tree": "e21db029b1e175603ef2227226c10b0b6c7fc1f3",
      "parents": [
        "c9d00fc148b210aa8cf388d6e1eac187a0e855a6"
      ],
      "author": {
        "name": "Luiz Fernando Capitulino",
        "email": "lcapitulino@mandriva.com.br",
        "time": "Thu Nov 17 09:47:32 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] USB: pl2303: adds new IDs.\n\nThis patch adds two new Siemens mobiles IDs for the pl2303 driver.\n\nSigned-off-by: Luiz Capitulino \u003clcapitulino@mandriva.com.br\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c9d00fc148b210aa8cf388d6e1eac187a0e855a6",
      "tree": "bc6e85fc0f7f207b2d95e17acac37add6d96a104",
      "parents": [
        "b0ce84d5539de88a1001f9aa3deeaa20fde3d152"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Thu Nov 17 09:47:28 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] USB: onetouch doesn\u0027t suspend yet\n\nThe onetouch support doesn\u0027t suspend correctly (leaves an interrupt\nURB posted, instead of unlinking it) so for now just disable it\nwhen PM is in the air.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b0ce84d5539de88a1001f9aa3deeaa20fde3d152",
      "tree": "781d6b520e592440305a18e3f326bdfdbf8567ee",
      "parents": [
        "c5dbf868e2bbeea6581f388a09539779c0d61357"
      ],
      "author": {
        "name": "Josef Balatka",
        "email": "balatka@email.cz",
        "time": "Thu Nov 17 09:47:24 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:54 2005 -0800"
      },
      "message": "[PATCH] USB: cp2101.c: Jablotron usb serial interface identification\n\nJablotron usb serial interface identification\n\nSigned-off-by: Josef Balatka \u003cbalatka@email.cz\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c5dbf868e2bbeea6581f388a09539779c0d61357",
      "tree": "2c3ca2e6c333c153517622cc9e28c0db90b6c462",
      "parents": [
        "777da5905e82695d1dd73eee6cfe50bd486d8fe9"
      ],
      "author": {
        "name": "Pavel Machek",
        "email": "pavel@ucw.cz",
        "time": "Thu Nov 17 09:47:11 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:53 2005 -0800"
      },
      "message": "[PATCH] USB: kill unneccessary usb-storage blacklist entries\n\nI actually have this device, and kernel reports blacklist entry is no\nlonger neccessary.\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "777da5905e82695d1dd73eee6cfe50bd486d8fe9",
      "tree": "cb605466ad446c4e2bb2a2e3332686e7ca9b3112",
      "parents": [
        "bc7cb323bab717660830211d50555dedf19e372e"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Thu Nov 17 09:47:02 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:53 2005 -0800"
      },
      "message": "[PATCH] USB: usbdevfs_ioctl 32bit fix\n\ndrivers/usb/core/devio.c: In function `proc_ioctl_compat\u0027:\ndrivers/usb/core/devio.c:1401: warning: passing arg 1 of `compat_ptr\u0027 makes integer from pointer without a cast\n\nNFI if this is correct...\n\nCc: Pete Zaitcev \u003czaitcev@redhat.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bc7cb323bab717660830211d50555dedf19e372e",
      "tree": "c0fdd088380e42bed04fde77dd56428507bf02d4",
      "parents": [
        "c611d2cd2f74988baa9a4c6cfc8a48064fd075e6"
      ],
      "author": {
        "name": "OGAWA Hirofumi",
        "email": "hirofumi@mail.parknet.co.jp",
        "time": "Thu Nov 17 09:47:07 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:53 2005 -0800"
      },
      "message": "[PATCH] usbfs: usbfs_dir_inode_operations cleanup\n\nSigned-off-by: OGAWA Hirofumi \u003chirofumi@mail.parknet.co.jp\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c611d2cd2f74988baa9a4c6cfc8a48064fd075e6",
      "tree": "052db5410bf71436f3c0b81c628280f09d07fb74",
      "parents": [
        "d4ece29d89d424ea045753c639971429faa9ee58"
      ],
      "author": {
        "name": "Marcel Holtmann",
        "email": "marcel@holtmann.org",
        "time": "Thu Nov 17 09:46:39 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:53 2005 -0800"
      },
      "message": "[PATCH] USB: Delete leftovers from bluetty driver\n\nThis patch deletes the bluetooth.txt help file of the bluetty driver and\nhands over its major device nodes for character devices to the RFCOMM TTY\nimplementation of the Bluetooth subsystem.\n\nSigned-off-by: Marcel Holtmann \u003cmarcel@holtmann.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d4ece29d89d424ea045753c639971429faa9ee58",
      "tree": "e92d83765fbd0a854480c6761459d65540008df9",
      "parents": [
        "ebb6f371ac5ce623051c4431c5d0f093462f679b"
      ],
      "author": {
        "name": "Dmitry Torokhov",
        "email": "dtor_core@ameritech.net",
        "time": "Thu Nov 17 09:46:44 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:53 2005 -0800"
      },
      "message": "[PATCH] USB: fix \u0027unused variable\u0027 warning\n\nUSB: fix \u0027unused variable\u0027 warning\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ebb6f371ac5ce623051c4431c5d0f093462f679b",
      "tree": "d805f477f728f142c702bf4309c6d00f76c2f588",
      "parents": [
        "116d75bd4d539309e0e1391e509f852a9cce82a6"
      ],
      "author": {
        "name": "Ping Cheng",
        "email": "pingc@wacom.com",
        "time": "Thu Nov 17 09:46:51 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:53 2005 -0800"
      },
      "message": "[PATCH] USB: wacom tablet driver update\n\nThis patch adds support for Graphire4, Cintiq 710, Intuos3 6x11, etc. and\nreport Device IDs.\n\nSigned-off-by: Ping Cheng \u003cpingc@wacom.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "116d75bd4d539309e0e1391e509f852a9cce82a6",
      "tree": "137d19f8db4308fca6f6104265cc69ac45dee327",
      "parents": [
        "80ed89f6105fd2f35b3b9ee2078f31e1510da71e"
      ],
      "author": {
        "name": "Ping Cheng",
        "email": "pingc@wacom.com",
        "time": "Thu Nov 17 09:46:33 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:52 2005 -0800"
      },
      "message": "[PATCH] USB: add new wacom devices to usb hid-core list\n\nThis patch adds support for Graphire4, Cintiq 710, Intuos3 6x11, etc.\n\nSigned-off-by: Ping Cheng \u003cpingc@wacom.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "80ed89f6105fd2f35b3b9ee2078f31e1510da71e",
      "tree": "68d81165ddbcd8e4b6ed68371e55db710b3273d9",
      "parents": [
        "cca2362c64429283d384df5b4cb948dcd6e8127b"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 17 09:46:28 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:52 2005 -0800"
      },
      "message": "[PATCH] USB Serial: rename ChangeLog.old\n\nPeople are complaining about a .old file in the tree.  So rename\ndrivers/usb/serial/ChangeLog.old to ChangeLog.history.\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "cca2362c64429283d384df5b4cb948dcd6e8127b",
      "tree": "ebac113302eec1b91bee4481d85f2152ac4c2bf6",
      "parents": [
        "1a7ec1a6a1df63aab9a1fa6174bd704241329805"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 17 09:46:24 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:29:52 2005 -0800"
      },
      "message": "[PATCH] USB: fix build breakage in dummy_hcd.c\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1a7ec1a6a1df63aab9a1fa6174bd704241329805",
      "tree": "3e0048b905f1f118559b08f3c909582db8b6cad1",
      "parents": [
        "7652aab77fbf6de8bcc69ee6a864270b0da6b3f6"
      ],
      "author": {
        "name": "Deepak Saxena",
        "email": "dsaxena@plexity.net",
        "time": "Thu Nov 17 11:09:53 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 11:23:48 2005 -0800"
      },
      "message": "[PATCH] Fix IXP4xx I2C driver build breakage\n\nPlatform device conversion missed a couple of spots.\n\nSigned-off-by: Deepak Saxena \u003cdsaxena@plexity.net\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7652aab77fbf6de8bcc69ee6a864270b0da6b3f6",
      "tree": "cc380ac53a720a905232463cd8fed9cb27875723",
      "parents": [
        "cd02e27b1514a27b2a8ab59755ae6d23d4d8a10f",
        "aec8b7557cf0fc4dac059112328b5aa89271c77e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 10:56:34 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 10:56:34 2005 -0800"
      },
      "message": "Merge branch \u0027upstream\u0027 of git://ftp.linux-mips.org/pub/scm/upstream-linus\n"
    },
    {
      "commit": "cd02e27b1514a27b2a8ab59755ae6d23d4d8a10f",
      "tree": "75f624b82ab95446661a6322f644dae01dced710",
      "parents": [
        "6027994423e12a3c0b22d3dbf9ac87364ca4e0ec"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 10:04:31 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 10:04:31 2005 -0800"
      },
      "message": "x86: Fix silly typo in recent \u003casm/signal.h\u003e fixes\n\nThe second __const_sigaddset() should have been a sigdelset..  Compile\ntrouble noted by Greg K-H.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6027994423e12a3c0b22d3dbf9ac87364ca4e0ec",
      "tree": "9ba435e73247a7ea0f07a28d717bd1f58deaffec",
      "parents": [
        "d0fa7e9f8ebeb19db4d2aed33c35f9d16fa7f32d",
        "4a59a810513d5f7aa76515908b8e3620fa1b9b69"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 09:06:54 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 09:06:54 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6\n"
    },
    {
      "commit": "d0fa7e9f8ebeb19db4d2aed33c35f9d16fa7f32d",
      "tree": "092bf1f6cd50db2272d12ad6991ac3465f2d19ef",
      "parents": [
        "fbf0e1348ec4023675123d432ce1fdfa1eef8e54",
        "5470dc656820fb67c0a2e352f0aaa48b86c19026"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 08:45:42 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 08:45:42 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n"
    },
    {
      "commit": "fbf0e1348ec4023675123d432ce1fdfa1eef8e54",
      "tree": "06dff2cb05cd8f2d610aff11b1c7905153391a65",
      "parents": [
        "b7fd1edd2c0c225afa96af92d4adecb91e7d439d",
        "a2c91a8819e315e9fd1aef3ff57badb6c1be3f80"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 08:43:38 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 08:43:38 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev\n"
    },
    {
      "commit": "b7fd1edd2c0c225afa96af92d4adecb91e7d439d",
      "tree": "5e8d4cbc6d16eb318bc7df102b39a09056981817",
      "parents": [
        "3b26b1100e26811e54770abaa221eae140ba840d"
      ],
      "author": {
        "name": "Constantine Gavrilov",
        "email": "constg@qlusters.com",
        "time": "Thu Nov 17 11:40:43 2005 +0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 08:42:26 2005 -0800"
      },
      "message": "[PATCH] x86: fix sigaddset() inline asm memory constraint\n\nDue to incomplete memory constraints, gcc would miscompile code with\nsigaddset on i386 if sig arg was const.\n\nA quote form Jakub to make the issue clear:\n\n \"You need either\n\t__asm__(\"btsl %1,%0\" : \"+m\"(*set) : \"Ir\"(_sig-1) : \"cc\");\n  or\n\t__asm__(\"btsl %1,%0\" : \"\u003dm\"(*set) : \"Ir\"(_sig-1), \"m\"(*set) : \"cc\");\n  because the btsl instruction doesn\u0027t just set the memory to some\n  value, but needs to read its previous content as well.  If you don\u0027t\n  tell that fact to GCC, GCC is of course free to optimize as if the asm\n  was just setting the value and not depended on the previous value.\"\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3b26b1100e26811e54770abaa221eae140ba840d",
      "tree": "eb19e8e3145dfeb93ca5f1f9882302f5831fb35b",
      "parents": [
        "efb3442cf1c65747a858476e10f705612383eed1"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Thu Nov 17 13:58:30 2005 +0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 08:32:58 2005 -0800"
      },
      "message": "[PATCH] ipw2200: fix error log offset calculation\n\nThis fixes a slab corruption issue in the ipw2200 driver: it essentially\nmultiplied the error log number _twice_ by the size of the error element\nentry (once explicitly in the code, and once implicitly as part of the\nregular pointer arithmetic).\n\nCc: Henrik Brix Andersen \u003cbrix@gentoo.org\u003e\nCc: Bernard Blackham \u003cbernard@blackham.com.au\u003e\nCc: Zilvinas Valinskas \u003czilvinas@gemtek.lt\u003e\nCc: Pekka Enberg \u003cpenberg@cs.helsinki.fi\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n--\n"
    },
    {
      "commit": "efb3442cf1c65747a858476e10f705612383eed1",
      "tree": "a093915da40a7887a8c8a3f927177764a55d33d2",
      "parents": [
        "0db169f9703115bab09eda5d89a8f6937a7bf98e"
      ],
      "author": {
        "name": "Pekka Enberg",
        "email": "penberg@cs.helsinki.fi",
        "time": "Wed Nov 16 21:55:05 2005 +0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Nov 17 08:32:58 2005 -0800"
      },
      "message": "[PATCH] ipw2200: disallow direct scanning when device is down\n\nThe function ipw_request_direct_scan() should bail out when the device\nis down.  This fixes a lockup caused by wpa_supplicant triggering\nipw_request_direct_scan() while the driver was in a middle of a reset\ndue to firmware errors.\n\nThanks to Zilvinas Valinskas for reporting the bug and helping me\ndebug it.\n\nSigned-off-by: Pekka Enberg \u003cpenberg@cs.helsinki.fi\u003e\nAcked-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "aec8b7557cf0fc4dac059112328b5aa89271c77e",
      "tree": "fb431327fcbdc0b474183c8016e9e8d25a72afb7",
      "parents": [
        "1a6ea3ec6784cf3dedc338e1980dc0b4cf28a805"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:58 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:58 2005 +0000"
      },
      "message": "[MIPS] Update defconfigs\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "1a6ea3ec6784cf3dedc338e1980dc0b4cf28a805",
      "tree": "91870e1281226e7ac1fac450c58e26d01f4028c5",
      "parents": [
        "09b696efd93560609f25821208dae18027187425"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 16:10:01 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:57 2005 +0000"
      },
      "message": "[MIPS] SEAD: More build fixes.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "09b696efd93560609f25821208dae18027187425",
      "tree": "54618abf054e5a94e530f9bfe8ea53e6cf929334",
      "parents": [
        "561a0792405bea8ead78990d755dd1f95b8e95b8"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 13:55:06 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:56 2005 +0000"
      },
      "message": "[MIPS] TX3927: Try to glue the PCI code.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "561a0792405bea8ead78990d755dd1f95b8e95b8",
      "tree": "a9efc705f30fe603a64b33d21bffd28373ea55fa",
      "parents": [
        "3d5d44017601c927f5e14c43b0efee34e7e50a66"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 13:25:59 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:55 2005 +0000"
      },
      "message": "[MIPS] SEAD: Delete seadint_init() prototype.\n    \nThere is no definition for seadint_init() and the unprotected prototype\nbreaks compilation of assembler files.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "3d5d44017601c927f5e14c43b0efee34e7e50a66",
      "tree": "372b4d998b82368e172c4355f6973c609ff7cff0",
      "parents": [
        "c183f1224bbae052b5fbb971d6eafc5cbdc6be4f"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 13:11:35 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:55 2005 +0000"
      },
      "message": "[MIPS] Ocelot G: Use CPU_MASK_NONE instead of 0 to initialize cpu mask.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "c183f1224bbae052b5fbb971d6eafc5cbdc6be4f",
      "tree": "b9ff7a60bf519d27ce89ad440bbef520b4ecd7dd",
      "parents": [
        "c32cf78c0289c4d8f5973c985dda18f2b3a03e2b"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 13:05:26 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:54 2005 +0000"
      },
      "message": "[MIPS] JMR3927: Fix include wrapper symbol.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "c32cf78c0289c4d8f5973c985dda18f2b3a03e2b",
      "tree": "0cf5b2e36eeb3d6bde3f4c1051f7443cf4d4788a",
      "parents": [
        "5135b0cdb23e47dd48d8100e45bd48ce937732ff"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 13:01:50 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:53 2005 +0000"
      },
      "message": "[MIPS] JMR3927: Fix compilation by including \u003clinux/ds1742rtc.h\u003e.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "5135b0cdb23e47dd48d8100e45bd48ce937732ff",
      "tree": "60270c0c35fb9d948cfb88b22b03acf9fee2862f",
      "parents": [
        "8bf4057bdd8912c7388c28e625f0b846a4ca1468"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 12:19:46 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:52 2005 +0000"
      },
      "message": "[MIPS] JMR3927: need include/asm-mips/mach-jmr3927 in it\u0027s include path.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "8bf4057bdd8912c7388c28e625f0b846a4ca1468",
      "tree": "4487f32aee83cc1f1cffe2d63b564716f386679b",
      "parents": [
        "4237f229018ccf937578dee97565a49d712809e8"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 12:17:42 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:51 2005 +0000"
      },
      "message": "[MIPS] JMR3927: It\u0027s ops-tx3927.o not ops-jmr3927.o\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "4237f229018ccf937578dee97565a49d712809e8",
      "tree": "f18e3560f64364b02f06a32d0a23af5f4095794b",
      "parents": [
        "b60ccd575c2d96041b856aad19a7d3af168d79b9"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:50 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:50 2005 +0000"
      },
      "message": "[IDE] Add driver for Sibyte Swarm evaluation board\n\nThis driver supports the IDE port on the Sibyte Swarm evaluation boards\nand it\u0027s relatives for the BCM1250 family of systems on a chip.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nAcked-by: Bartlomiej Zolnierkiewicz \u003cbzolnier@gmail.com\u003e\n"
    },
    {
      "commit": "b60ccd575c2d96041b856aad19a7d3af168d79b9",
      "tree": "4b5cd16ca45fc8f959cc32d9cd4a3ac984d54f74",
      "parents": [
        "f10d14ddec8daf11a298f05ab3d644887df39830"
      ],
      "author": {
        "name": "Pantelis Antoniou",
        "email": "pantelis.antoniou@gmail.com",
        "time": "Sun Nov 13 23:27:46 2005 +0200"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:50 2005 +0000"
      },
      "message": "[MIPS] Alchemy: Console output fixup\n    \nThis is needed to make console output appear with the new driver...\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "f10d14ddec8daf11a298f05ab3d644887df39830",
      "tree": "cb720c4553760ac37937eb56ef2255ae8aec70dd",
      "parents": [
        "99289a4e8a9cb3fa6caa8fc4ebf57a33db497340"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:49 2005 +0000"
      },
      "message": "[MIPS] Fix documentation typos.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "99289a4e8a9cb3fa6caa8fc4ebf57a33db497340",
      "tree": "53a149795f88ea1da576b4cec0d218cc998670a3",
      "parents": [
        "59f145d28ce853b13dafdfab438c48f3ead0b38e"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:49 2005 +0000"
      },
      "message": "[MIPS] Add const qualifier to writes##bwlq.\n    \nAdd const qualifier to parameter addr of writes##bwlq.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "59f145d28ce853b13dafdfab438c48f3ead0b38e",
      "tree": "e758652a96e8d63ac2b413bcba4266743af09d78",
      "parents": [
        "84c493d8e143360cfba3efede97e5a93d62c4d3d"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:48 2005 +0000"
      },
      "message": "[MIPS] IP32: Fix sparse warnings.\n    \nAdd __iomem qualifier to crime and mace pointers.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "84c493d8e143360cfba3efede97e5a93d62c4d3d",
      "tree": "1530db463632b6cdb279aa0078d2249452d815aa",
      "parents": [
        "19ce1cfb2d53e5b9f70d0199d551789db2718e6f"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:47 2005 +0000"
      },
      "message": "[MIPS] IP32 Fix and complete IP32 parport definitions\n    \nFix, complete, and indent IP32 parport definitions.\nDefinition were wrong for CTXINUSE and DMACTIVE (1-bit shift).\nAdd macros DATA_BOUND, DATALEN_SHIFT, and CTRSHIFT.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "19ce1cfb2d53e5b9f70d0199d551789db2718e6f",
      "tree": "6a8e08b25a64718c5fad3c60e1aa1aedff6fdca5",
      "parents": [
        "70ad7d1840d3479ea8503c9f89ec503115bfd2cf"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:47 2005 +0000"
      },
      "message": "[MIPS] IP32: Export mace symbol.\n    \nExport mace symbol so that it can be used in modules.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "70ad7d1840d3479ea8503c9f89ec503115bfd2cf",
      "tree": "804f9d3678bb4aa39be1e47229236ad8c1d0e2c6",
      "parents": [
        "efd9412d850397fc129c17eb33c84f74abb0d3ee"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Nov 11 11:49:53 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:46 2005 +0000"
      },
      "message": "[MIPS] JMR3927: Fix syntax error.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "efd9412d850397fc129c17eb33c84f74abb0d3ee",
      "tree": "49d832872141ed2982312e705b863be35a61c489",
      "parents": [
        "d93efab838ee399b45379bd97b2812ecee84471b"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Nov 11 11:46:25 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:45 2005 +0000"
      },
      "message": "[MIPS] JMR3927: Undo accidental rename.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "d93efab838ee399b45379bd97b2812ecee84471b",
      "tree": "3d6ef302f593e7d7f7d4da95adb65166b41a0124",
      "parents": [
        "16212017a54afdb702ecc796aaa0448b795de03b"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Nov 11 11:15:41 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:45 2005 +0000"
      },
      "message": "[MIPS] DDB5477: Fix unused variable warning.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "16212017a54afdb702ecc796aaa0448b795de03b",
      "tree": "3ee7edf2f92d531689bcb0db0be91a5d9e8d2a61",
      "parents": [
        "cd017fbdd33f2d8294b0e0324faa1dc7750b4af0"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:44 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:44 2005 +0000"
      },
      "message": "[MIPS] IP32: No need to include \u003casm/io.h\u003e.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "cd017fbdd33f2d8294b0e0324faa1dc7750b4af0",
      "tree": "7d7191c3be2270b036876a137d417c1ef9da7e11",
      "parents": [
        "443bf3292f04c53e92bf0588f1aa2c9b421545e2"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:43 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:43 2005 +0000"
      },
      "message": "Add definitions for the Dallas DS1742 RTC / non-volatile memory.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "443bf3292f04c53e92bf0588f1aa2c9b421545e2",
      "tree": "686f01621b7144c17c5b4340c5cdd40f299fedf3",
      "parents": [
        "bdc3c3c7cbc3e1244c03640b4b372d097a1dacf3"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:42 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:42 2005 +0000"
      },
      "message": "Add definitions for the Dallas DS17287 RTC.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "bdc3c3c7cbc3e1244c03640b4b372d097a1dacf3",
      "tree": "513f7beb915ef2adae11f9222879a6eab911ef02",
      "parents": [
        "6f17ce33fef3fd84e3e45850c9388d118adfad96"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:42 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:42 2005 +0000"
      },
      "message": "[MIPS] Add missing arch defines for the Alchemy MTD driver.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "6f17ce33fef3fd84e3e45850c9388d118adfad96",
      "tree": "062cc6c191d9db6450d37c36051506218e0a66e8",
      "parents": [
        "0905780aae58ea69f2dafea9716ee2ea78dbe4e2"
      ],
      "author": {
        "name": "Yoichi Yuasa",
        "email": "yuasa@hh.iij4u.or.jp",
        "time": "Thu Nov 10 22:42:36 2005 +0900"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:41 2005 +0000"
      },
      "message": "Add GT64111 PCI ID back\n    \nSigned-off-by: Yoichi Yuasa \u003cyuasa@hh.iij4u.or.jp\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "0905780aae58ea69f2dafea9716ee2ea78dbe4e2",
      "tree": "8285d824fce3959edb64af5fbc2511cd549321e4",
      "parents": [
        "e0c9b7973021ea4baa1ed76ff25ceb80f75edd8f"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Mon Jun 13 19:58:50 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:39 2005 +0000"
      },
      "message": "[MIPS] zs.c: Resurrect the deceased zs.c for now.\n\nNot that it\u0027s meant to be sustained for long, but from time to time it\u0027s\nuseful to have some console...\n\nSigned-off-by: Maciej W. Rozycki \u003cmacro@linux-mips.org\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "e0c9b7973021ea4baa1ed76ff25ceb80f75edd8f",
      "tree": "020d0d255ae1632563f415a0a5943057d70ef8f3",
      "parents": [
        "db7f6861822c80f17a23647b4d0042dcc56e2024"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 08 22:36:48 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:39 2005 +0000"
      },
      "message": "[MIPS] feature-removal-schedule.txt: Schedule au1x00_uart for removal.\n\nThe 8250 serial driver now has the ability to deal with the differences\nbetween the standard 8250 family of UARTs and their slightly strange\nbrother on Alchemy SOCs.  The loss of features is not considered an\nissue.\n \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "db7f6861822c80f17a23647b4d0042dcc56e2024",
      "tree": "45f030d4feb1146e09c95d96d108797564c3558a",
      "parents": [
        "0db169f9703115bab09eda5d89a8f6937a7bf98e"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 08 22:23:13 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:38 2005 +0000"
      },
      "message": "[MIPS] Delete duplicate definitions of break codes.\n   \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "a2c91a8819e315e9fd1aef3ff57badb6c1be3f80",
      "tree": "0b75460b200383d341b8473fc187f5db2c681795",
      "parents": [
        "22374677d18c5eeefd3a283431d312b8c44fef02"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Nov 17 05:44:44 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Nov 17 05:44:44 2005 -0500"
      },
      "message": "[libata sata_mv] handle lack of hardware nIEN support\n\nHandle errata (it was unintentional on this h/w, whereas its intentional\non others) whereby the nIEN bit in Device Control is ignored, leading to\na situation where a hardware interrupt completes the qc before the\npolling code has a chance to.\n\nThis will get fixed The Right Way(tm) once Albert Lee\u0027s irq-pio\nbranch is merged, as the more natural PIO method on this hardware is\ninterrupt-driven.\n"
    },
    {
      "commit": "22374677d18c5eeefd3a283431d312b8c44fef02",
      "tree": "4d923291cdab7c84e0346a8500f090f2b11e2bc1",
      "parents": [
        "64f043d80752a8e5f0d55255e7bb9a1a05af206f"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Nov 17 10:59:48 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Nov 17 10:59:48 2005 -0500"
      },
      "message": "[libata sata_mv] SATA probe, DMA boundary fixes\n\n- DMA boundary was being handled incorrectly.  Copied the code from\n  ata_fill_sg(), since Marvell has the same DMA boundary needs.\n  (we can\u0027t use ata_fill_sg directly since we have different hardware\n   descriptors)\n- cleaned up the SATA phy reset code, to deal with various errata\n"
    },
    {
      "commit": "64f043d80752a8e5f0d55255e7bb9a1a05af206f",
      "tree": "3dc2a2511e29f6d8e2b26884ea090ce5d8c9f6c2",
      "parents": [
        "556c66db0794b9b85481cb5e3cb57688eabad982"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Nov 17 10:50:01 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Nov 17 10:50:01 2005 -0500"
      },
      "message": "[libata] add timeout to commands for which we call wait_completion()\n"
    }
  ],
  "next": "4a59a810513d5f7aa76515908b8e3620fa1b9b69"
}
