)]}'
{
  "log": [
    {
      "commit": "08dc2ca61e683e9119ff534dfcd0fd555401fcf7",
      "tree": "d891918b735a8896caf1a4cf193125cf01d0e520",
      "parents": [
        "4269b0d371c43bc8f3c9e183847a08258587cf06"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "jejb@parisc-linux.org",
        "time": "Thu Nov 17 16:35:09 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:35:09 2005 -0500"
      },
      "message": "[PARISC] Fix our spinlock implementation\n\nWe actually have two separate bad bugs\n\n1. The read_lock implementation spins with disabled interrupts.  This is\ncompletely wrong\n2. Our spin_lock_irqsave should check to see if interrupts were enabled\nbefore the call and re-enable interrupts around the inner spin loop.\n\nThe problem is that if we spin with interrupts off, we can\u0027t receive\nIPIs. This has resulted in a bug where SMP machines suddenly spit\nsmp_call_function timeout messages and hang.\n\nThe scenario I\u0027ve caught is\n\nCPU0 does a flush_tlb_all holding the vmlist_lock for write.\nCPU1 tries a cat of /proc/meminfo which tries to acquire vmlist_lock for\n     read\nCPU1 is now spinning with interrupts disabled\nCPU0 tries to execute a smp_call_function to flush the local tlb caches\n\nThis is now a deadlock because CPU1 is spinning with interrupts disabled\nand can never receive the IPI\n\nSigned-off-by: James Bottomley \u003cjejb@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "4269b0d371c43bc8f3c9e183847a08258587cf06",
      "tree": "235601492ed2c0eaabda369bcb72a542235fb710",
      "parents": [
        "ba5c4f1bae89eba7b03e58a5448e8b28a006d4df"
      ],
      "author": {
        "name": "Matthew Wilcox",
        "email": "willy@parisc-linux.org",
        "time": "Thu Nov 17 16:33:56 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:33:56 2005 -0500"
      },
      "message": "[PARISC] Improve the error message when we get a clashing mod path\n\nImprove the error message when we get a clashing mod path, and\nactually display the IODC data and path for the conflicting device.\n\nSigned-off-by: Matthew Wilcox \u003cwilly@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "ba5c4f1bae89eba7b03e58a5448e8b28a006d4df",
      "tree": "677d29940c35138c178ac311eb0f8d63a2cb7937",
      "parents": [
        "aa0eecb07f27bea25a7cbe4150822be72493e574"
      ],
      "author": {
        "name": "Matthew Wilcox",
        "email": "willy@parisc-linux.org",
        "time": "Thu Nov 17 16:33:29 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:33:29 2005 -0500"
      },
      "message": "[PARISC] Return PDC_OK when alloc_pa_dev fails to enumerate all devices\n\nReturn PDC_OK when device registration fails so that we enumerate all\nsubsequent devices, even when we get two devices with the same hardware\npath (which should never happen, but does with at least one revision of\nrp8400 firmware).\n\nSigned-off-by: Matthew Wilcox \u003cwilly@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "aa0eecb07f27bea25a7cbe4150822be72493e574",
      "tree": "59dc123caeffcc340ea0b6c90c9ff33de191b127",
      "parents": [
        "75be99a8c597aaebf82802109cdfd1249eea951e"
      ],
      "author": {
        "name": "Carlos O\u0027Donell",
        "email": "carlos@parisc-linux.org",
        "time": "Thu Nov 17 16:32:46 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:32:46 2005 -0500"
      },
      "message": "[PARISC] Document some register usages in assembly files\n\nDocument clobbers and args in entry.S and syscall.S.\n\nentry.S: Add comment to indicate that cr27 may recycle and EDEADLOCK\ndetection is not 100% correct. Since this is only enabled when using\nENABLE_LWS_DEBUG, the user is warned by the comment.\n\nSigned-off-by: Carlos O\u0027Donell \u003ccarlos@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "75be99a8c597aaebf82802109cdfd1249eea951e",
      "tree": "cc128f730e678a40ed58bed8e8644da722bcd644",
      "parents": [
        "03afe22f074231196dcf3298f962cfc787ebbc60"
      ],
      "author": {
        "name": "Ryan Bradetich",
        "email": "rbrad@parisc-linux.org",
        "time": "Thu Nov 17 16:29:50 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:29:50 2005 -0500"
      },
      "message": "[PARISC] Make redirecting irq messages less noisy\n\nMake the \"redirecting irq\" message to not display on the console by\nsetting the severity to KERN_DEBUG.  The console was basically unusable.\n\nSigned-off-by: Ryan Bradetich \u003crbrad@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "03afe22f074231196dcf3298f962cfc787ebbc60",
      "tree": "9a1b4400f387f46dd2009500dc1d4f2fa0a15f44",
      "parents": [
        "c2ab64d09815cc4d48347ee3679658f197455a2a"
      ],
      "author": {
        "name": "Grant Grundler",
        "email": "grundler@parisc-linux.org",
        "time": "Thu Nov 17 16:29:16 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:29:16 2005 -0500"
      },
      "message": "[PARISC] irq_affinityp[] only available for SMP builds\n\nirq_affinityp[] only available for SMP builds, make code that uses\nit conditional on CONFIG_SMP.\n\nSigned-off-by: Grant Grundler \u003cgrundler@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "c2ab64d09815cc4d48347ee3679658f197455a2a",
      "tree": "7b6bde77c712c4db52717f70d593c5d8f4ce6bf9",
      "parents": [
        "1d4c452a85503cdb4bca5925cf698b61d3aa43a0"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "jejb@parisc-linux.org",
        "time": "Thu Nov 17 16:28:37 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:28:37 2005 -0500"
      },
      "message": "[PARISC] Add IRQ affinities\n\nThis really only adds them for the machines I can check SMP on, which\nis CPU interrupts and IOSAPIC (so not any of the GSC based machines).\n\nWith this patch, irqbalanced can be used to maintain irq balancing.\nUnfortunately, irqbalanced is a bit x86 centric, so it doesn\u0027t do an\nincredibly good job, but it does work.\n\nSigned-off-by: James Bottomley \u003cjejb@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "1d4c452a85503cdb4bca5925cf698b61d3aa43a0",
      "tree": "cd2c786aa4dbab46d4aa394ffdaa8cd52387d894",
      "parents": [
        "d911aed8adf74e1fae88d082b8474b2175b7f1da"
      ],
      "author": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:27:44 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:27:44 2005 -0500"
      },
      "message": "[PARISC] Fix uniprocessor build by dummying smp_send_all_nop()\n\nSince irq.c uses smp_send_all_nop, we must define it for UP builds\nas well. Make it a static inline so it gets optimized away. This forces\nirq.c to include \u003casm/smp.h\u003e though.\n\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "d911aed8adf74e1fae88d082b8474b2175b7f1da",
      "tree": "dc3271e33b2951a8fd43824300b790610c7cd221",
      "parents": [
        "3f902886a81c6d4e6c399760936b645b5c7a7342"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "jejb@parisc-linux.org",
        "time": "Thu Nov 17 16:27:02 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:27:02 2005 -0500"
      },
      "message": "[PARISC] Fix our interrupts not to use smp_call_function\n\nFix our interrupts not to use smp_call_function\n\nOn K and D class smp, the generic code calls this under an irq\nspinlock, which causes the WARN_ON() message in smp_call_function()\n(and is also illegal because it could deadlock).\n\nThe fix is to use a new scheme based on the IPI_NOP.\n\nSigned-off-by: James Bottomley \u003cjejb@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "3f902886a81c6d4e6c399760936b645b5c7a7342",
      "tree": "9e46c6f799390497784f2048a2294b3967bb857e",
      "parents": [
        "9a8b4584065dd241d6c2bf818e349986bd900b8e"
      ],
      "author": {
        "name": "Grant Grundler",
        "email": "grundler@parisc-linux.org",
        "time": "Thu Nov 17 16:26:20 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:26:20 2005 -0500"
      },
      "message": "[PARISC] Disable nesting of interrupts\n\nDisable nesting of interrupts - still has holes\n\nThe offending sequence starts out like this:\n1) take external interrupt\n2) set_eiem() to only allow TIMER_IRQ; local interrupts still disabled\n3) read the EIRR to get a \"list\" of pending interrupts\n4) clear EIRR of pending interrupts we intend to handle\n5) call __do_IRQ() to handle IRQ.\n6) handle_IRQ_event() enables local interrupts (I-Bit)\n7) take a timer interrupt\n8) read EIRR to get a new list of pending interrupts\n9) clear EIRR of pending interrupts we just read\n10) handle pending interrupts found in (8)\n11) set_eiem(cpu_eiem) and return\n        [ TROUBLE! all enabled CPU IRQs are unmasked. }\n12) handle remaining interrupts pending from (3)\n        e.g. call __do_IRQ() -\u003e handle_IRQ_event()..etc\n        [ TROUBLE! call to handle_IRQ_event() can now enable *any* IRQ. }\n13) set_eiem(cpu_eiem) and return\n\nThe problem is we now get into ugly race conditions with Timer and IPI\ninterrupts at this point.  I\u0027m not exactly sure what happens when\nthings go wrong (perhaps nest calls to IPI or timer interrupt?).\nBut I\u0027m certain it\u0027s not good.\n\nThis sequence will break sooner if (10) would accidentally leave\ninterrupts enabled.\n\nI\u0027m pretty sure the right answer is now to make cpu_eiem\na per CPU variable since all external interrupts on parisc\nare per CPU. This means we will NOT need to send an IPI to\nevery CPU in the system when enabling or disabling an IRQ\nsince only one CPU needs to change it\u0027s EIEM.\n\nThanks to James Bottomley for (once again) pointing out the problem.\n\nSigned-off-by: Grant Grundler \u003cgrundler@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "9a8b4584065dd241d6c2bf818e349986bd900b8e",
      "tree": "e801bca17874bdb64aa686f32d20dce76c07473e",
      "parents": [
        "6b1de9161e973bac8c4675db608fe4f38d2689bd"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "jejb@parisc-linux.org",
        "time": "Thu Nov 17 16:24:52 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:24:52 2005 -0500"
      },
      "message": "[PARISC] Make sure timer and IPI execute with interrupts disabled\n\nFix a longstanding smp bug\n\nThe problem is that both the timer and ipi interrupts are being called\nwith interrupts enabled, which isn\u0027t what anyone is expecting.\n\nThe IPI issue has just started to show up by causing a BUG_ON in the\nslab debugging code.  The timer issue never shows up because there\u0027s an\neiem work around in our irq.c\n\nThe fix is to label both these as SA_INTERRUPT which causes the generic\nirq code not to enable interrupts.\n\nI also suspect the smp_call_function timeouts we\u0027re seeing might be\nconnected with the fact that we disable IPIs when handling any other\ntype of interrupt.  I\u0027ve put a WARN_ON in the code for executing\nsmp_call_function() with IPIs disabled.\n\nSigned-off-by: James Bottomley \u003cjejb@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\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"
    },
    {
      "commit": "4a59a810513d5f7aa76515908b8e3620fa1b9b69",
      "tree": "02bf53df48d9a9e6f7f7b4f690eb8b62227f8fa9",
      "parents": [
        "e7c8a41e817f381ac5c2a59ecc81b483bd68a7df"
      ],
      "author": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Nov 16 23:14:19 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Nov 16 23:14:19 2005 -0800"
      },
      "message": "[NETFILTER]: Fix nf_conntrack compilation with CONFIG_NETFILTER_DEBUG\n\nCC [M]  net/netfilter/nf_conntrack_core.o\nnet/netfilter/nf_conntrack_core.c: In function \u0027nf_ct_unlink_expect\u0027:\nnet/netfilter/nf_conntrack_core.c:390: error: \u0027exp_timeout\u0027 undeclared (first use in this function)\nnet/netfilter/nf_conntrack_core.c:390: error: (Each undeclared identifier is reported only once\nnet/netfilter/nf_conntrack_core.c:390: error: for each function it appears in.)\n\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "556c66db0794b9b85481cb5e3cb57688eabad982",
      "tree": "5bc225b790d855aa61ec06abae19e21f6e6b1a82",
      "parents": [
        "3be4bb06b53df2c0a760eeaa5f53448faddedfca",
        "8b200abdcf237528a3eb0fe8c680c711fc9824b5"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 20:45:51 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 20:45:51 2005 -0500"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027\n"
    },
    {
      "commit": "8b200abdcf237528a3eb0fe8c680c711fc9824b5",
      "tree": "d88ac91f037be98f35f216a2be7a263491286078",
      "parents": [
        "7bdd720869ff75700b48b132ee71852615b55808",
        "0db169f9703115bab09eda5d89a8f6937a7bf98e"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 20:45:40 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 20:45:40 2005 -0500"
      },
      "message": "Merge branch \u0027master\u0027\n"
    },
    {
      "commit": "e7c8a41e817f381ac5c2a59ecc81b483bd68a7df",
      "tree": "650b33c804a1a66c72acaef9595eb9fe6cc2c0e9",
      "parents": [
        "0db169f9703115bab09eda5d89a8f6937a7bf98e"
      ],
      "author": {
        "name": "Yasuyuki Kozakai",
        "email": "yasuyuki.kozakai@toshiba.co.jp",
        "time": "Wed Nov 16 12:55:37 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Nov 16 12:55:37 2005 -0800"
      },
      "message": "[IPV4,IPV6]: replace handmade list with hlist in IPv{4,6} reassembly\n\nBoth of ipq and frag_queue have *next and **prev, and they can be replaced\nwith hlist. Thanks Arnaldo Carvalho de Melo for the suggestion.\n\nSigned-off-by: Yasuyuki Kozakai \u003cyasuyuki.kozakai@toshiba.co.jp\u003e\nAcked-by: YOSHIFUJI Hideaki \u003cyoshfuji@linux-ipv6.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "3be4bb06b53df2c0a760eeaa5f53448faddedfca",
      "tree": "67dc02f39e48a8a37d8f3e4a38422d86f5164820",
      "parents": [
        "85d6162d6cea9220e483989817eac0cebc03070e",
        "7bdd720869ff75700b48b132ee71852615b55808"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 15:12:58 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 15:12:58 2005 -0500"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027\n"
    },
    {
      "commit": "5470dc656820fb67c0a2e352f0aaa48b86c19026",
      "tree": "4e2de34af202c628372bb9bbad878d060714687f",
      "parents": [
        "45e109d07275e0820745dc465302de0aa5a8703b"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 16 18:36:49 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 18:36:49 2005 +0000"
      },
      "message": "[ARM] No need to include asm/proc-fns.h into asm/system.h\n\nIn the old days when arm26/arm32 was combined into the same\narchitecture, proc-fns.h provided the xchg implementation for\narm26 CPUs.  Since we no longer combine these two, this include\nis no longer required.  Remove it.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "45e109d07275e0820745dc465302de0aa5a8703b",
      "tree": "31de40e5511c4d7c64431e5d793f3e63e8bf6dad",
      "parents": [
        "49ee57a3295a227b6a02785f75ccd521e493e983"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 16 18:29:51 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 18:29:51 2005 +0000"
      },
      "message": "[ARM] sa1111.c needs asm/sizes.h\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "49ee57a3295a227b6a02785f75ccd521e493e983",
      "tree": "3e1ab74e95d1599c6944f24fc32a30e601554827",
      "parents": [
        "1b12050f17460dc312cfd8cc59c79e181b23062b"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 16 18:03:10 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 18:03:10 2005 +0000"
      },
      "message": "[ARM] Use unsigned long not u32 in atomic_cmpxchg\n\nSince atomic.h does not include types.h, u32 may not be defined.\nSince atomics are supposed to work on unsigned long quantities,\nuse unsigned long instead.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "1b12050f17460dc312cfd8cc59c79e181b23062b",
      "tree": "5f21465d9eb11f9825d89c3ac225a291f279b1a1",
      "parents": [
        "8dc39b883e9497445b53c498be7493c3e43af006"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 16 17:38:40 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 17:38:40 2005 +0000"
      },
      "message": "[ARM] Move zone adjustment for SA1111 on SA11x0 platforms\n\nUnfortunately, using PAGE_SHIFT in asm/arch/memory.h is unsafe, and we\ncan\u0027t include asm/page.h into this file because then we have a circular\ndependency.  Move the offending code to arch/arm/common/sa1111.c\ninstead.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "8dc39b883e9497445b53c498be7493c3e43af006",
      "tree": "c2d14a82bcfd02687db8d27072bcd8fa7b02df75",
      "parents": [
        "994e12805336f899d0ec1cf38a99c7b6405d144a"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 16 17:23:57 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 17:23:57 2005 +0000"
      },
      "message": "[ARM] Add linux/compiler.h includes where required\n\natomic.h, bitops.h and mmu_context.h are using likely/unlikely.\nthread_info.h uses __attribute_const__.  Hence these files require\nlinux/compiler.h to be included.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "0db169f9703115bab09eda5d89a8f6937a7bf98e",
      "tree": "c7fb83d10394e33dffe4ae13d9878e8e500bb60a",
      "parents": [
        "d58a75ef75ad98f2d20ee6dccfc71f881aabffb0",
        "6e87abd0b8cbb23ed9ffe5cc9f790fb5cac45eae"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Nov 16 08:25:28 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Nov 16 08:25:28 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6\n"
    },
    {
      "commit": "7bdd720869ff75700b48b132ee71852615b55808",
      "tree": "5d42dddd1cda8462fe1b2739a40ab28df28c227d",
      "parents": [
        "c2cd76ff106b8bd9c0a754c6439c74e86fd2aba7"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 11:06:59 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 11:06:59 2005 -0500"
      },
      "message": "[libata] bump versions\n"
    },
    {
      "commit": "d58a75ef75ad98f2d20ee6dccfc71f881aabffb0",
      "tree": "fbfa28526e3e2695c61d83a1a4997a8c3d00b686",
      "parents": [
        "f6ff56cd56b83d8edf4b3cffc5c53c56b37a5081",
        "5d66da3d71e6aeca80ca08dbebd8a1cd72e6ee1f"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Nov 16 07:58:48 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Nov 16 07:58:48 2005 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge\n"
    },
    {
      "commit": "994e12805336f899d0ec1cf38a99c7b6405d144a",
      "tree": "24c2ffcb00f26b49f7cf943e1696de73a91be8fe",
      "parents": [
        "b526bf23fd4138456b1bb4f1305862695604c798"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Wed Nov 16 15:05:13 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 15:05:13 2005 +0000"
      },
      "message": "[ARM] 3162/1: S3C2410 - updated defconfig\n\nPatch from Ben Dooks\n\nMinor changes, including add SysRq, selecting the DM9000\nas a built-in driver, not as a module, and selecting the\nframebuffer.\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "b526bf23fd4138456b1bb4f1305862695604c798",
      "tree": "20ed1a434af1d8bf94a655650a539de7ff0f169a",
      "parents": [
        "a7d068336197945dc4af65c5973c996e526d51cb"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Wed Nov 16 15:05:12 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 15:05:12 2005 +0000"
      },
      "message": "[ARM] 3161/1: BAST - fix commas on end of structs\n\nPatch from Ben Dooks\n\nMake the use of , on the lsat entry structs consistenent\nthrough arch/arm/mach-s3c2410/mach-bast.c\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a7d068336197945dc4af65c5973c996e526d51cb",
      "tree": "cbe903bef21fce0d5923cc83071b7b66d00d94c4",
      "parents": [
        "224b5be6ddc12fa7587433878866cd39e7b935f5"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Wed Nov 16 15:05:11 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 15:05:11 2005 +0000"
      },
      "message": "[ARM] 3165/1: fix atomic_cmpxchg() implementation for ARMv6+\n\nPatch from Nicolas Pitre\n\nIf \u0027old\u0027 and \u0027oldval\u0027 are different then \u0027res\u0027 never gets set.  In that\ncase, if ever %0 happened to contain anything but zero (rather likely)\nthen the code will loop forever (or until another CPU just come along\nand change the atomic value to match \u0027old\u0027 which is rather unlikely).\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "224b5be6ddc12fa7587433878866cd39e7b935f5",
      "tree": "25e4a47d9c21a3b927f1ea793f0d14628afa86f7",
      "parents": [
        "0a5709b2dc84140082ea235130a05c05d51f94a2"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 16 14:59:51 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 14:59:51 2005 +0000"
      },
      "message": "[ARM] compressed/head.S debugging defaults to asm/arch/debug-macro.S\n\nSince we want new platforms to use debug-macro.S, make the decompressor\ndebugging method default to using this include file rather than having\nnew platforms add to an #if defined().\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "0a5709b2dc84140082ea235130a05c05d51f94a2",
      "tree": "096bdbc0a86fde503722611bba1feaca76e91d3a",
      "parents": [
        "ce07d90aa80a4c9a956eb2f662e4be5ea5c6baf8"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 16 14:51:20 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 14:51:20 2005 +0000"
      },
      "message": "[ARM] Include asm/hardware.h instead of asm/arch/hardware.h\n\nRationalise hardware.h include.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ce07d90aa80a4c9a956eb2f662e4be5ea5c6baf8",
      "tree": "7411f04f6136f52b840696bf791626ae218d7a05",
      "parents": [
        "f6ff56cd56b83d8edf4b3cffc5c53c56b37a5081"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 16 14:38:19 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 16 14:38:19 2005 +0000"
      },
      "message": "[ARM] Fix arch-realview/system.h to use __io_address()\n\nMove __io_address to arch-realview/hardware.h, drop core.h from platsmp.c\nand localtimer.c, and include asm/io.h where required.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "c2cd76ff106b8bd9c0a754c6439c74e86fd2aba7",
      "tree": "d3a7848336627da12c47c18cbbe42fc70fe8db71",
      "parents": [
        "75b1f2f865c6e6c6c04e2779750192b8d3d504e8"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 09:23:30 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 09:23:30 2005 -0500"
      },
      "message": "[libata ahci] tone down ATAPI errors\n\nATA devices don\u0027t generate many errors, so the preferred method is to\nprintk() when they occur.\n\nATAPI devices generate tons of exceptions during the normal course\nof operation, so this change skips logging the most common class of\nerrors.\n"
    },
    {
      "commit": "75b1f2f865c6e6c6c04e2779750192b8d3d504e8",
      "tree": "9e95f56cc033943f26c21c61377cb7e8ed0d8b4b",
      "parents": [
        "d10cb35a876c72b4b6711a366e341a1e4d8aa709"
      ],
      "author": {
        "name": "Albert Lee",
        "email": "albertcc@tw.ibm.com",
        "time": "Wed Nov 16 17:06:18 2005 +0800"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 07:59:22 2005 -0500"
      },
      "message": "[PATCH] libata: honor the transfer cycle time speficied by the EIDE device\n\n  The following code segment is not functional because the transfer cycle time speficied by\n  the EIDE device is later overwritten by ata_timing_quantize():\n\n\t/*\n\t * If the drive is an EIDE drive, it can tell us it needs extended\n\t * PIO/MW_DMA cycle timing.\n\t */\n\tif (adev-\u003eid[ATA_ID_FIELD_VALID] \u0026 2) {\t/* EIDE drive */\n\t\tmemset(\u0026p, 0, sizeof(p));\n\t\t(snip)\n\t\tata_timing_merge(\u0026p, t, t, ATA_TIMING_CYCLE | ATA_TIMING_CYC8B);\n               \u003c\u003d\u003d uninitialized \"t\" is used here\n\t}\n\n\t/*\n\t * Convert the timing to bus clock counts.\n\t */\n\tata_timing_quantize(s, t, T, UT);  \u003c\u003d\u003d t is overwritten by quantized s\n\n  The patch has been submitted for ide-timing.h before:\n  http://marc.theaimsgroup.com/?l\u003dlinux-ide\u0026m\u003d110820013425454\u0026w\u003d2\n  Resubmitted for libata.\n\nChanges:\n  - Minor fix to honor the following transfer cycle time speficied by the device\n    - id[65]: Minimum Multiword DMA transfer cycle time per word\n    - id[67]: Minimum PIO transfer cycle time without flow control\n    - id[68]: Minimum PIO transfer cycle time with IORDY\n\nSigned-off-by: Albert Lee \u003calbertcc@tw.ibm.com\u003e\n\n\u003d\u003d\u003d\u003d\u003d\u003d\u003d\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "d10cb35a876c72b4b6711a366e341a1e4d8aa709",
      "tree": "5e871ea2af668fd85f80bf369d6f057e24c4fd7f",
      "parents": [
        "f6ff56cd56b83d8edf4b3cffc5c53c56b37a5081"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Wed Nov 16 16:56:49 2005 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Nov 16 07:11:42 2005 -0500"
      },
      "message": "[PATCH] sil24: add constants\n\nAdds constants for ATAPI support to sata_sil24.  This patch is\noriginally from Jeff Garzik \u003cjgarzik@pobox.com\u003e.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "6e87abd0b8cbb23ed9ffe5cc9f790fb5cac45eae",
      "tree": "2469b23b6410153c7b25f03b6e5d3b846874a7d7",
      "parents": [
        "7b5603e056b8b5f3175f14badd895b9ac567f315"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Nov 16 00:52:57 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Nov 16 00:52:57 2005 -0800"
      },
      "message": "[DVB]: Add compat ioctl handling.\n\nBased upon a patch by Guido Guenther \u003cagx@sigxcpu.org\u003e.\n\nSome of these ioctls had embedded time_t objects\nor pointers, so needed translation.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "7b5603e056b8b5f3175f14badd895b9ac567f315",
      "tree": "202d8d9d05f02f9d287c4e4a69694c5136fa3077",
      "parents": [
        "574780d56fdafe2c8ea98660a932760dfea9bffc"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Nov 16 00:11:50 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Nov 16 00:11:50 2005 -0800"
      },
      "message": "[DVB] cinergyT2: cinergyt2_register_rc() should return 0 on success\n\nCurrently, the version when ENABLE_RC is defined, falls through\nto the end of the function without returning anything.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "574780d56fdafe2c8ea98660a932760dfea9bffc",
      "tree": "492e34919f14ffede70dae0ac6f0414fa701d564",
      "parents": [
        "f6ff56cd56b83d8edf4b3cffc5c53c56b37a5081"
      ],
      "author": {
        "name": "Guido Guenther",
        "email": "agx@sigxcpu.org",
        "time": "Wed Nov 16 00:08:44 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Nov 16 00:08:44 2005 -0800"
      },
      "message": "[SPARC64]: Oops in pci_alloc_consistent with cingergyT2\n\nFrom: Guido Guenther \u003cagx@sigxcpu.org\u003e\n\n- Use correct API for allocating and freeing DMA buffers.\n\nAcked-by: Johannes Stezenbach \u003cjs@linuxtv.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "5d66da3d71e6aeca80ca08dbebd8a1cd72e6ee1f",
      "tree": "1bdc54e617fc209925f33118f414ce0a4ebb62ac",
      "parents": [
        "d3ed65832029dcaf5fe086670a2f2c25600b51e9"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Wed Nov 16 13:54:32 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Nov 16 14:05:11 2005 +1100"
      },
      "message": "[PATCH] powerpc: Make the vDSO functions set error code (#2)\n\nThe vDSO functions should have the same calling convention as a syscall.\nUnfortunately, they currently don\u0027t set the cr0.so bit which is used to\nindicate an error. This patch makes them clear this bit unconditionally\nsince all functions currently succeed. The syscall fallback done by some\nof them will eventually override this if the syscall fails.\n\nThis also changes the symbol version of all vdso exports to make sure\nglibc can differenciate between old and fixed calls for existing ones\nlike __kernel_gettimeofday.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "d3ed65832029dcaf5fe086670a2f2c25600b51e9",
      "tree": "00b3ea25477868607b0aa47d55b0854118f73fb2",
      "parents": [
        "94b212c29f685ca54b5689a8e89ac7671c43d651"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Wed Nov 16 13:40:43 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Nov 16 14:05:07 2005 +1100"
      },
      "message": "[PATCH] ppc: Fix build with CONFIG_CHRP not set\n\nBuilding ARCH\u003dppc for multiplatforms with CONFIG_CHRP not set fails\ndue to some unshielded code in xmon\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    }
  ],
  "next": "94b212c29f685ca54b5689a8e89ac7671c43d651"
}
