)]}'
{
  "log": [
    {
      "commit": "635cf99a80f4ebee59d70eb64bb85ce829e4591f",
      "tree": "6c204f34a959d62852812a85faefec5e5bd81b1f",
      "parents": [
        "db753bdfc24c31228996799d508ce3bf7cbe3b99"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Thu Mar 23 02:59:48 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:05 2006 -0800"
      },
      "message": "[PATCH] i386: fix singlestep through an int80 syscall\n\nUsing PTRACE_SINGLESTEP on a child that does an int80 syscall misses the\nSIGTRAP that should be delivered upon syscall exit.  Fix that by setting\nTIF_SINGLESTEP when entering the kernel via int80 with TF set.\n\n/* Test whether singlestep through an int80 syscall works.\n */\n#define _GNU_SOURCE\n#include \u003cstdio.h\u003e\n#include \u003cunistd.h\u003e\n#include \u003cfcntl.h\u003e\n#include \u003csys/ptrace.h\u003e\n#include \u003csys/wait.h\u003e\n#include \u003csys/mman.h\u003e\n#include \u003casm/user.h\u003e\n\nstatic int child, status;\nstatic struct user_regs_struct regs;\n\nstatic void do_child()\n{\n\tptrace(PTRACE_TRACEME, 0, 0, 0);\n\tkill(getpid(), SIGUSR1);\n\tasm (\"int $0x80\" : : \"a\" (20)); /* getpid */\n}\n\nstatic void do_parent()\n{\n\tunsigned long eip, expected \u003d 0;\nagain:\n\twaitpid(child, \u0026status, 0);\n\tif (WIFEXITED(status) || WIFSIGNALED(status))\n\t\treturn;\n\n\tif (WIFSTOPPED(status)) {\n\t\tptrace(PTRACE_GETREGS, child, 0, \u0026regs);\n\t\teip \u003d regs.eip;\n\t\tif (expected)\n\t\t\tfprintf(stderr, \"child stop @ %08x, expected %08x %s\\n\",\n\t\t\t\t\teip, expected,\n\t\t\t\t\teip \u003d\u003d expected ? \"\" : \" \u003c\u003d\u003d ERROR\");\n\n\t\tif (*(unsigned short *)eip \u003d\u003d 0x80cd) {\n\t\t\tfprintf(stderr, \"int 0x80 at %08x\\n\", (unsigned int)eip);\n\t\t\texpected \u003d eip + 2;\n\t\t} else\n\t\t\texpected \u003d 0;\n\n\t\tptrace(PTRACE_SINGLESTEP, child, NULL, NULL);\n\t}\n\tgoto again;\n}\n\nint main(int argc, char * const argv[])\n{\n\tchild \u003d fork();\n\tif (child)\n\t\tdo_parent();\n\telse\n\t\tdo_child();\n\treturn 0;\n}\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "db753bdfc24c31228996799d508ce3bf7cbe3b99",
      "tree": "620f4154d7c297857fa9d9512ccaeb113342c078",
      "parents": [
        "101f12af16fb12f8da8100899a13ee1b1b576a0a"
      ],
      "author": {
        "name": "Jan Beulich",
        "email": "jbeulich@novell.com",
        "time": "Thu Mar 23 02:59:46 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:05 2006 -0800"
      },
      "message": "[PATCH] i386: fix uses of user_mode() vs. user_mode_vm()\n\n\u003ecommit 76381fee7e8feb4c22be636aa5d4765dbe4fbf9e\n\u003eAuthor: Vincent Hanquez \u003cvincent.hanquez@cl.cam.ac.uk\u003e\n\u003eDate:   Thu Jun 23 00:08:46 2005 -0700\n\u003e\n\u003e    [PATCH] xen: x86_64: use more usermode macro\n\u003e\n\u003e    Make use of the user_mode macro where it\u0027s possible.  This is useful for Xen\n\u003e    because it will need only to redefine only the macro to a hypervisor call.\n\nI am of the opinion that the above changeset is incomplete, i.e.  it missed\nconverting some previous uses of user_mode to user_mode_vm.  While most of\nthem could be considered just cosmetical, at least the one in die_nmi\ndoesn\u0027t appear to be.\n\nSigned-off-by: Jan Beulich \u003cjbeulich@novell.com\u003e\nCc: Vincent Hanquez \u003cvincent.hanquez@cl.cam.ac.uk\u003e\nCc: Zachary Amsden \u003czach@vmware.com\u003e\nCc: James Bottomley \u003cJames.Bottomley@steeleye.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "101f12af16fb12f8da8100899a13ee1b1b576a0a",
      "tree": "0bea73d2702ba438e8e82bc8000b498aa50aee6e",
      "parents": [
        "44fd22992cb76dc51c52cf4b8aff1bc7899bb23c"
      ],
      "author": {
        "name": "Jan Beulich",
        "email": "jbeulich@novell.com",
        "time": "Thu Mar 23 02:59:45 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:05 2006 -0800"
      },
      "message": "[PATCH] i386: actively synchronize vmalloc area when registering certain callbacks\n\nRegistering a callback handler through register_die_notifier() is obviously\nprimarily intended for use by modules.  However, the way these currently\nget called it is basically impossible for them to actually be used by\nmodules, as there is, on non-PAE configurationes, a good chance (the larger\nthe module, the better) for the system to crash as a result.\n\nThis is because the callback gets invoked\n\n(a) in the page fault path before the top level page table propagation\n    gets carried out (hence a fault to propagate the top level page table\n    entry/entries mapping to module\u0027s code/data would nest infinitly) and\n\n(b) in the NMI path, where nested faults must absolutely not happen,\n    since otherwise the IRET from the nested fault re-enables NMIs,\n    potentially resulting in nested NMI occurences.\n\nBesides the modular aspect, similar problems would even arise for in-\nkernel consumers of the API if they touched ioremap()ed or vmalloc()ed\nmemory inside their handlers.\n\nSigned-off-by: Jan Beulich \u003cjbeulich@novell.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ffa930ef55ae82c09e30b2a0c4ce5d7fdea041e2",
      "tree": "400b18f0eca74fb0728010c25f20166e8410b608",
      "parents": [
        "98e7d9b0529b6a348f2978a926806930a9902067"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Thu Mar 23 02:59:43 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:05 2006 -0800"
      },
      "message": "[PATCH] x86: early_printk(): remove MAX_YPOS and MAX_XPOS macros\n\nExpand out these fairly pointless macros.\n\nCc: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nCc: Stas Sergeev \u003cstsp@aknet.ru\u003e\nCc: Andi Kleen \u003cak@muc.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "98e7d9b0529b6a348f2978a926806930a9902067",
      "tree": "9e00dfe4775f88f2c9dc21aa25a081edb374a436",
      "parents": [
        "99b7de33477882b86d54ce8ecbf90147f9d106d7"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Thu Mar 23 02:59:42 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:05 2006 -0800"
      },
      "message": "[PATCH] x86: start early_printk at sensible screen row\n\nUse boot info to start early_printk() at the current row on VGA console, as\nleft by the boot loader.\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nCc: Stas Sergeev \u003cstsp@aknet.ru\u003e\nCc: Andi Kleen \u003cak@muc.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "99b7de33477882b86d54ce8ecbf90147f9d106d7",
      "tree": "1409719376eff18346aa6f15ad9d2f698d61302e",
      "parents": [
        "8bed51cd17464433a0c77afc8a5150e51d3da37d"
      ],
      "author": {
        "name": "Stas Sergeev",
        "email": "stsp@aknet.ru",
        "time": "Thu Mar 23 02:59:41 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:05 2006 -0800"
      },
      "message": "[PATCH] x86: early printk handling fixes\n\nThe history is that -mm kernels do not work for me for a few months\nalready.  The things started from crashing somewhere after starting init,\nand for the last month - no boot at all, just \"Uncompressing...  OK,\nbooting kernel\", and silence.  Early console didn\u0027t work too.  With the\nlatest releases this degraded into an infinite stream of the \"Unknown\ninterrupt or fault\" messages.  So today my patience ran out and I started\nto think how can I collect at least some info for the bug-report.  Attached\nis the patch that allows to gather some valueable debug info on the problem\nby making an early console more useable.  I can\u0027t properly test the patch,\nas the kernel still doesn\u0027t boot, so I\u0027ll explain it in details in a hope\nsomeone else can justify the intrusive changes.\n\narch_hooks.h: added prototypes for setup_early_printk() and early_printk().\n\nsetup.c: killed wrong setup_early_printk() prototype.  Moved\nsetup_early_printk() a bit earlier, as it was not \"early enough\" to cover\nthe bug I was fighting with.\n\nearly_printk.c: made it to start printing from the bottom of the screen,\notherwise the messages interfere with the ones of the boot-loader, so you\ncan\u0027t read them.\n\nSigned-off-by: Stas Sergeev \u003cstsp@aknet.ru\u003e\nCc: Andi Kleen \u003cak@muc.de\u003e\nCc: Zwane Mwaikambo \u003czwane@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": "8bed51cd17464433a0c77afc8a5150e51d3da37d",
      "tree": "7ffd751ba256f1f88e5888f624cb6e08c2a95bd7",
      "parents": [
        "3c36c6aa4aa1b3483c6a0370028608367426f58e"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Thu Mar 23 02:59:40 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:05 2006 -0800"
      },
      "message": "[PATCH] i386: let signal handlers set the resume flag\n\nAllow signal handlers to set the RF bit in EFLAGS.  This lets a simple\ndebugger using SIGTRAP skip one instruction after returning from a signal.\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3c36c6aa4aa1b3483c6a0370028608367426f58e",
      "tree": "2eaa033543eb67536f7da6ac1912f7a41e87ff7e",
      "parents": [
        "cc04ee9cc527e314e6906849ee931c33764f861e"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Thu Mar 23 02:59:39 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:04 2006 -0800"
      },
      "message": "[PATCH] i386: Don\u0027t let ptrace set the nested task bit\n\nThere\u0027s no good reason for allowing ptrace to set the NT bit in EFLAGS, so\nmask it off.\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "cc04ee9cc527e314e6906849ee931c33764f861e",
      "tree": "525858d30d3160a19a820c8286868330e6edc445",
      "parents": [
        "7c63ee5cf7d210b51c2a8243e29988edec2646ed"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Thu Mar 23 02:59:38 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:04 2006 -0800"
      },
      "message": "[PATCH] i386 traps: merge printk calls\n\nMerge a few printk calls in i386 traps.\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e5428ede94179ddccaa56308e0f194fa299edbb4",
      "tree": "baba6926b3176442d9bf8cdcc86a5ed30bac22ba",
      "parents": [
        "54a20f8c5d778ed3603130de4b92f64405228611"
      ],
      "author": {
        "name": "Natalie.Protasevich@unisys.com",
        "email": "Natalie.Protasevich@unisys.com",
        "time": "Thu Mar 23 02:59:36 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:04 2006 -0800"
      },
      "message": "[PATCH] Compilation fix for ES7000 when no ACPI is specified in config (i386)\n\nES7000 platform code clean up for compilation errors and a warning.\nIfdef\u0027d the ACPI related parts in the ES7000 platform code.  They were\ncausing compile errors in certain configuration (without ACPI defined).  I\nthink this approach would be best (as opposed to Kconfig changes) since it\nonly touches the subarch...\n\nSigned-off-by: \u003cNatalie.Protasevich@unisys.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "54a20f8c5d778ed3603130de4b92f64405228611",
      "tree": "ced7969ecc3348c0aadd700e93c74449fd76b5ca",
      "parents": [
        "30e931d4092713cecd6b8c2fd70f268efaa6e428"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Thu Mar 23 02:59:36 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:04 2006 -0800"
      },
      "message": "[PATCH] i386: fall back to sensible CPU model name\n\nWhen vendor-specific i386 initialization code is unavailable the kernel\nfalls back to a default CPU model name.  Make that model name reflect the\nCPU family instead of an internal vendor index.\n\nTested on Pentium II (family 6 model 5).\n\n/proc/cpuinfo before:\n        model name     : ff/05\n\nafter:\n        model name     : 06/05\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nAcked-by: \"Seth, Rohit\" \u003crohit.seth@intel.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4f88651125e2ca8b106b6f65b65ea45776517bf3",
      "tree": "a9865c268c57bd1752a66899615d8694d5ddaea8",
      "parents": [
        "3bc9b76bede9b3c72088258c7e72eb823f3351d4"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Thu Mar 23 02:59:34 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:04 2006 -0800"
      },
      "message": "[PATCH] i386: allow disabling X86_FEATURE_SEP at boot\n\nAllow the x86 \"sep\" feature to be disabled at bootup.  This forces use of the\nint80 vsyscall.  Mainly for testing or benchmarking the int80 vsyscall code.\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3bc9b76bede9b3c72088258c7e72eb823f3351d4",
      "tree": "9f1eed2e6ebc9e7a990178e62b55fb6ee3267d8f",
      "parents": [
        "9a0b5817ad97bb718ab85322759d19a238712b47"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Thu Mar 23 02:59:33 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:04 2006 -0800"
      },
      "message": "[PATCH] i386: __devinit should be __cpuinit\n\nSeveral places in arch/i386/kernel/cpu and kernel/cpu were using __devinit\nwhen they should have been __cpuinit.  Fixing that saves ~4K when\nCONFIG_HOTPLUG \u0026\u0026 !CONFIG_HOTPLUG_CPU.\n\nNoticed by Andrew Morton.\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9a0b5817ad97bb718ab85322759d19a238712b47",
      "tree": "39bd21eb69c4001b99096d96a76a2e5d37904108",
      "parents": [
        "4d7d8c82c181711d28c8336108330a9121f5ef07"
      ],
      "author": {
        "name": "Gerd Hoffmann",
        "email": "kraxel@suse.de",
        "time": "Thu Mar 23 02:59:32 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:04 2006 -0800"
      },
      "message": "[PATCH] x86: SMP alternatives\n\nImplement SMP alternatives, i.e.  switching at runtime between different\ncode versions for UP and SMP.  The code can patch both SMP-\u003eUP and UP-\u003eSMP.\nThe UP-\u003eSMP case is useful for CPU hotplug.\n\nWith CONFIG_CPU_HOTPLUG enabled the code switches to UP at boot time and\nwhen the number of CPUs goes down to 1, and switches to SMP when the number\nof CPUs goes up to 2.\n\nWithout CONFIG_CPU_HOTPLUG or on non-SMP-capable systems the code is\npatched once at boot time (if needed) and the tables are released\nafterwards.\n\nThe changes in detail:\n\n  * The current alternatives bits are moved to a separate file,\n    the SMP alternatives code is added there.\n\n  * The patch adds some new elf sections to the kernel:\n    .smp_altinstructions\n\tlike .altinstructions, also contains a list\n\tof alt_instr structs.\n    .smp_altinstr_replacement\n\tlike .altinstr_replacement, but also has some space to\n\tsave original instruction before replaving it.\n    .smp_locks\n\tlist of pointers to lock prefixes which can be nop\u0027ed\n\tout on UP.\n    The first two are used to replace more complex instruction\n    sequences such as spinlocks and semaphores.  It would be possible\n    to deal with the lock prefixes with that as well, but by handling\n    them as special case the table sizes become much smaller.\n\n * The sections are page-aligned and padded up to page size, so they\n   can be free if they are not needed.\n\n * Splitted the code to release init pages to a separate function and\n   use it to release the elf sections if they are unused.\n\nSigned-off-by: Gerd Hoffmann \u003ckraxel@suse.de\u003e\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4d7d8c82c181711d28c8336108330a9121f5ef07",
      "tree": "2e1537702c1e8447dfbe5b5917333f58f4416c1a",
      "parents": [
        "b824eb605ccba995fd32c6590aed365f93d48002"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Thu Mar 23 02:59:30 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:03 2006 -0800"
      },
      "message": "[PATCH] i386: multi-column stack backtraces\n\nPrint stack backtraces in multiple columns, saving screen space.  Number of\ncolumns is configurable and defaults to one so behavior is\nbackwards-compatible.\n\nAlso removes the brackets around addresses when printing more\nthat one entry per line so they print as:\n    \u003caddress\u003e\ninstead of:\n    [\u003caddress\u003e]\nThis helps multiple entries fit better on one line.\n\nOriginal idea by Dave Jones, taken from x86_64.\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b824eb605ccba995fd32c6590aed365f93d48002",
      "tree": "f5720240b044b46ac83e127e2c5586cd8ef2ed75",
      "parents": [
        "69ef4141e03fab1c6956d3c760584c72b548a26f"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Mar 23 02:59:29 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:03 2006 -0800"
      },
      "message": "[PATCH] Make CONFIG_REGPARM enabled by default\n\nMake CONFIG_REGPARM enabled by default.  It\u0027s a noticable win both for size\nand for performance, and gcc[34] handles it correctly.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "69ef4141e03fab1c6956d3c760584c72b548a26f",
      "tree": "09d34f7e57d0938b788ad59fedbd3b28d5e6cf87",
      "parents": [
        "6bb08da4773f584a7b4a838b6b770d7d18033af7"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Thu Mar 23 02:59:28 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:38:03 2006 -0800"
      },
      "message": "[PATCH] i386: let REGPARM no longer depend on EXPERIMENTAL\n\nREGPARM has already gotten much testing, what about removing the\ndependency on EXPERIMENTAL?\n\nAdditionally, this patch does:\n- remove the useless \"default n\"\n- remove note regarding binary only modules (nowadays, there are even\n  some binary only modules compiled with REGPARM\u003dy available)\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "fcab1e51796d8bcd1a7969ff52bd904d38748e00",
      "tree": "ed2429321d8d12e9ec93fa2c0aec31fdc3d7b267",
      "parents": [
        "2e6e33bab6e1996a5dec9108fb467b52b841e7a8"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Thu Mar 23 07:48:16 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Mar 23 07:15:21 2006 -0800"
      },
      "message": "[PATCH] sparc64: fix set_page_count merge clash\n\nMerge clash will have broken sparc64. Synch up its online_page\nimplementation with powerpc, which was identical until the\nset_page_count removal.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2e6e33bab6e1996a5dec9108fb467b52b841e7a8",
      "tree": "6b98b15c2fe7899cdeb2453589cdee00f7853492",
      "parents": [
        "b7ad6d75028d021362221d9b2db19fcff995c3f8",
        "b88a0b1d5560cf1959c1565617e460a45c688a08"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 22:20:46 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 22:20:46 2006 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc: (78 commits)\n  [PATCH] powerpc: Add FSL SEC node to documentation\n  [PATCH] macintosh: tidy-up driver_register() return values\n  [PATCH] powerpc: tidy-up of_register_driver()/driver_register() return values\n  [PATCH] powerpc: via-pmu warning fix\n  [PATCH] macintosh: cleanup the use of i2c headers\n  [PATCH] powerpc: dont allow old RTC to be selected\n  [PATCH] powerpc: make powerbook_sleep_grackle static\n  [PATCH] powerpc: Fix warning in add_memory\n  [PATCH] powerpc: update mailing list addresses\n  [PATCH] powerpc: Remove calculation of io hole\n  [PATCH] powerpc: iseries: Add bootargs to /chosen\n  [PATCH] powerpc: iseries: Add /system-id, /model and /compatible\n  [PATCH] powerpc: Add strne2a() to convert a string from EBCDIC to ASCII\n  [PATCH] powerpc: iseries: Make more stuff static in platforms/iseries/mf.c\n  [PATCH] powerpc: iseries: Remove pointless iSeries_(restart|power_off|halt)\n  [PATCH] powerpc: iseries: mf related cleanups\n  [PATCH] powerpc: Replace platform_is_lpar() with a firmware feature\n  [PATCH] powerpc: trivial: Cleanup whitespace in cputable.h\n  [PATCH] powerpc: Remove unused iommu_off logic from pSeries_init_early()\n  [PATCH] powerpc: Unconfuse htab_bolt_mapping() callers\n  ...\n"
    },
    {
      "commit": "6ea671a12f66b9d4d0f35fce957a71a6849295f2",
      "tree": "771e6b38ad68eae3d113db716fc9f3a2d217c780",
      "parents": [
        "57ae595f6bf8bde42de199ff9fe68b873080fde2"
      ],
      "author": {
        "name": "Bjorn Helgaas",
        "email": "bjorn.helgaas@hp.com",
        "time": "Tue Mar 21 23:20:27 2006 -0800"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Thu Mar 23 14:40:54 2006 +1100"
      },
      "message": "[PATCH] powerpc: tidy-up of_register_driver()/driver_register() return values\n\nRemove the assumption that driver_register() returns the number of devices\nbound to the driver.  In fact, it returns zero for success or a negative\nerror value.\n\nNobody uses the return value of of_register_driver() anyway.\n\nSigned-off-by: Bjorn Helgaas \u003cbjorn.helgaas@hp.com\u003e\nAcked-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "2d0eee14b23f20c501a6c2536edf68f93c56edcd",
      "tree": "5585524cee681ac9252582d2aa8f65680f71bc57",
      "parents": [
        "1d04981669df1f0586d4578ec4061c5585ec721b"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Mar 21 23:00:05 2006 -0800"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Thu Mar 23 14:39:51 2006 +1100"
      },
      "message": "[PATCH] powerpc: Fix warning in add_memory\n\narch/powerpc/mm/mem.c: In function `add_memory\u0027:\narch/powerpc/mm/mem.c:128: warning: assignment makes integer from pointer without a cast\n\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "591eb85ecd7e6eb8596c6129ae074e16636b99f4",
      "tree": "535fb7e9bc29113ff62fd70b0dcd8ad197ab51e2",
      "parents": [
        "4658f79bec0b51222e769e328c2923f39f3bda77",
        "3a2916aa289504d694072a98876d23ca31d6401e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 17:32:09 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 17:32:09 2006 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n\n* master.kernel.org:/home/rmk/linux-2.6-arm: (45 commits)\n  [ARM] 3389/1: typo and grammar fix\n  [ARM] 3386/1: AT91RM9200 Clock update\n  [ARM] 3384/1: AT91RM9200: Timer\n  [ARM] 3382/1: ixp2000: unify defconfigs\n  [ARM] 3381/1: ixp2000: fix slowport write timing control register fields\n  [ARM] 3380/1: ixp2000: simplify ixdp2x00_master_npu() check\n  [ARM] 3379/1: ixp2000: use generic 8250 debug macros\n  [ARM] 3378/1: ixp2000: fix gpio interrupt handling\n  [ARM] Quieten spurious IRQ detection\n  [ARM] Use kcalloc to allocate counter_config array rather than kmalloc\n  [ARM] Oprofile: dynamically allocate counter_config\n  [ARM] Oprofile: Convert semaphore to mutex\n  [ARM] 3376/2: S3C2410 - update defconfig\n  [ARM] 3375/1: S3C2440 - fix osiris machine build\n  [ARM] 3374/1: ep93xx: gpio interrupt support\n  [ARM] 3361/1: S3C24XX - add USB bus clock source\n  [ARM] 3360/1: S3C2440 - add set rate methods and camera clock\n  [ARM] 3359/1: S3C24XX - add support for clk_set_rate\n  [ARM] Convert kmalloc+memset to kzalloc\n  [ARM] 3373/1: move uengine loader to arch/arm/common\n  ...\n"
    },
    {
      "commit": "3a2916aa289504d694072a98876d23ca31d6401e",
      "tree": "cd22ef3df480d85920b3233286b4f125d5a73b8d",
      "parents": [
        "69b648a200b27a7c8ea92993bf5b4d40e83b5403"
      ],
      "author": {
        "name": "Erik Hovland",
        "email": "erik@hovland.org",
        "time": "Wed Mar 22 21:02:11 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Mar 22 21:02:11 2006 +0000"
      },
      "message": "[ARM] 3389/1: typo and grammar fix\n\nPatch from Erik Hovland\n\nI found a typo and what seems to be a run-on sentence in\narch/arm/common/dmabounce.c\n\nThis patch corrects both.\n\nSigned-off-by: Erik Hovland \u003cerik@hovland.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "69b648a200b27a7c8ea92993bf5b4d40e83b5403",
      "tree": "0ddc77b61b5f822424fe6dfa66a16785986d87b9",
      "parents": [
        "39806805de0314d5847bfd6d046ad7d4407ccd46"
      ],
      "author": {
        "name": "Andrew Victor",
        "email": "andrew@sanpeople.com",
        "time": "Wed Mar 22 20:14:14 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Mar 22 20:14:14 2006 +0000"
      },
      "message": "[ARM] 3386/1: AT91RM9200 Clock update\n\nPatch from Andrew Victor\n\nThis patch includes a few changes to the clock support on the\nAT91RM9200.\n\n1. Added definitions for Ethernet, MMC, TWI, USARTs, and SPI peripheral\nclocks.\n\n2. Replaced some hard-coded hex values with the text definitions in\nat91rm9200_sys.h.\n\n3. If the USB96M bit is set for PLLB, then the rate of PLLB is not\naffected but only the USB Host/Device clocks which are derived from it.\nIssue reported by Sergei Sharonov.\n\nSigned-off-by: Andrew Victor \u003candrew@sanpeople.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "39806805de0314d5847bfd6d046ad7d4407ccd46",
      "tree": "6a05969531953e3831650cde71a9143571472456",
      "parents": [
        "112d02e8d556ea0512afcfc3b0110c87ec9eb5f9"
      ],
      "author": {
        "name": "Andrew Victor",
        "email": "andrew@sanpeople.com",
        "time": "Wed Mar 22 20:14:13 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Mar 22 20:14:13 2006 +0000"
      },
      "message": "[ARM] 3384/1: AT91RM9200: Timer\n\nPatch from Andrew Victor\n\nIf the timer interrupt is ever significantly delayed (or after the\nsystem was suspended), the system could spin incrementing the time for\ntoo long.\nThe fix is to replace the \"do {} while\" with a \"while {}\".\n\nOrignal patch by Savin Zlobec and Peter Menzebach.\n\nSigned-off-by: Andrew Victor \u003candrew@sanpeople.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "112d02e8d556ea0512afcfc3b0110c87ec9eb5f9",
      "tree": "c83465c47ba162fdb8126b323c690c662a29a6c8",
      "parents": [
        "a04f2d9d3a08002a7712f18fcec43e2c4151d953"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Wed Mar 22 20:14:12 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Mar 22 20:14:12 2006 +0000"
      },
      "message": "[ARM] 3382/1: ixp2000: unify defconfigs\n\nPatch from Lennert Buytenhek\n\nUnify the five existing ixp2000 defconfigs into one defconfig.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "bd115ea007e671e96b8b53c2e0e885103d39fd40",
      "tree": "e33f6a612f0a4dcb447d2bd3ce4678f928d94838",
      "parents": [
        "bec1b8193651ea4394cc4d6e18152cb83e735f93"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Wed Mar 22 20:14:09 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Mar 22 20:14:09 2006 +0000"
      },
      "message": "[ARM] 3378/1: ixp2000: fix gpio interrupt handling\n\nPatch from Lennert Buytenhek\n\nixp2000 used to initially mark GPIO interrupts as invalid, and not\nmark them valid until set_irq_type() was called, but this doesn\u0027t\nwork if you want to use request_irq() with the SA_TRIGGER_* flags.\n\nSo, just mark the GPIO interrupts valid from the beginning.  We\nconfigure GPIOs as inputs when set_irq_type() is called anyway, so\nthis shouldn\u0027t be a problem.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "1c2e02750b992703a8a18634e08b04353face243",
      "tree": "5dc2d10bad329eeb73b9e219e237662a8383f971",
      "parents": [
        "8b4b6707ee32f929846d947d18b1b9bf42e988aa",
        "a3c44854a59f7e983c867060aa906bbf5befb1ef"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 10:59:20 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 10:59:20 2006 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/perex/alsa\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/perex/alsa: (124 commits)\n  [ALSA] version 1.0.11rc4\n  [PATCH] Intruduce DMA_28BIT_MASK\n  [ALSA] hda-codec - Add support for ASUS P4GPL-X\n  [ALSA] hda-codec - Add support for HP nx9420 laptop\n  [ALSA] Fix memory leaks in error path of control.c\n  [ALSA] AMD Au1x00: AC\u002797 controller is memory mapped\n  [ALSA] AMD Au1x00: fix DMA init/cleanup\n  [ALSA] hda-codec - Fix generic auto-configurator\n  [ALSA] hda-codec - Fix BIOS auto-configuration\n  [ALSA] Fixes typos in Audiophile-USB.txt\n  [ALSA] ice1712 - typo fixes for dxr_enable module option\n  [ALSA] AMD Au1x00: make driver build after cleanup\n  [ALSA] ice1712 - Fix wrong value types for enum items\n  [ALSA] fix resource leak in usbmixer\n  [ALSA] Fix gus_pcm dereference before NULL\n  [ALSA] Fix seq_clientmgr dereferences before NULL check\n  [ALSA] hda-codec - Fix for Samsung R65 and ASUS A6J\n  [ALSA] hda-codec - Add support for VAIO FE550G and SZ110\n  [ALSA] usb-audio: add Maya44 mixer control names\n  [ALSA] usb-audio: add Casio PL-40R support\n  ...\n"
    },
    {
      "commit": "d04ef3a795b3b7b376a02713ed5e211e9ae1f917",
      "tree": "837da034751a2fc1be0fc5a105c218d41a498eb6",
      "parents": [
        "36177ba655c238e33400cc2837a28720b62784bd",
        "dcc1e8dd88d4bc55e32a26dad7633d20ffe606d2"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 10:56:57 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 10:56:57 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6\n\n* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:\n  [SPARC64]: Add a secondary TSB for hugepage mappings.\n  [SPARC]: Respect vm_page_prot in io_remap_page_range().\n"
    },
    {
      "commit": "42b88befd6e0dae1a5fe04c03925037fa890e1f3",
      "tree": "c234584f797e65e1bcd0d4675d56d1eb004d6681",
      "parents": [
        "3915bcf38fe0b6d130b4bbde97804f29a0becf32"
      ],
      "author": {
        "name": "David Gibson",
        "email": "david@gibson.dropbear.id.au",
        "time": "Wed Mar 22 00:09:01 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:04 2006 -0800"
      },
      "message": "[PATCH] hugepage: is_aligned_hugepage_range() cleanup\n\nQuite a long time back, prepare_hugepage_range() replaced\nis_aligned_hugepage_range() as the callback from mm/mmap.c to arch code to\nverify if an address range is suitable for a hugepage mapping.\nis_aligned_hugepage_range() stuck around, but only to implement\nprepare_hugepage_range() on archs which didn\u0027t implement their own.\n\nMost archs (everything except ia64 and powerpc) used the same\nimplementation of is_aligned_hugepage_range().  On powerpc, which\nimplements its own prepare_hugepage_range(), the custom version was never\nused.\n\nIn addition, \"is_aligned_hugepage_range()\" was a bad name, because it\nsuggests it returns true iff the given range is a good hugepage range,\nwhereas in fact it returns 0-or-error (so the sense is reversed).\n\nThis patch cleans up by abolishing is_aligned_hugepage_range().  Instead\nprepare_hugepage_range() is defined directly.  Most archs use the default\nversion, which simply checks the given region is aligned to the size of a\nhugepage.  ia64 and powerpc define custom versions.  The ia64 one simply\nchecks that the range is in the correct address space region in addition to\nbeing suitably aligned.  The powerpc version (just as previously) checks\nfor suitable addresses, and if necessary performs low-level MMU frobbing to\nset up new areas for use by hugepages.\n\nNo libhugetlbfs testsuite regressions on ppc64 (POWER5 LPAR).\n\nSigned-off-by: David Gibson \u003cdavid@gibson.dropbear.id.au\u003e\nSigned-off-by: Zhang Yanmin \u003cyanmin.zhang@intel.com\u003e\nCc: \"David S. Miller\" \u003cdavem@davemloft.net\u003e\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nCc: William Lee Irwin III \u003cwli@holomorphy.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a7290ee08e434399660ace34427c17696e47c562",
      "tree": "ee7d16b2c946c90450cf22e8bcd91111ca66270f",
      "parents": [
        "617d2214ee06c209e5c375c280d50abace8058e1"
      ],
      "author": {
        "name": "Michael Buesch",
        "email": "mbuesch@freenet.de",
        "time": "Wed Mar 22 00:08:44 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:02 2006 -0800"
      },
      "message": "[PATCH] Uninline sys_mmap common code (reduce binary size)\n\nRemove the inlining of the new vs old mmap system call common code.  This\nreduces the size of the resulting vmlinux for defconfig as follows:\n\nmb@pc1:~/develop/git/linux-2.6$ size vmlinux.mmap*\n   text    data     bss     dec     hex filename\n3303749  521524  186564 4011837  3d373d vmlinux.mmapinline\n3303557  521524  186564 4011645  3d367d vmlinux.mmapnoinline\n\nThe new sys_mmap2() has also one function call overhead removed, now.\n(probably it was already optimized to a jmp before, but anyway...)\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7835e98b2e3c66dba79cb0ff8ebb90a2fe030c29",
      "tree": "405a96eade34845dabe2f125b6c5eb095846869d",
      "parents": [
        "70dc991d66cac40fdb07346dba2b5d862d732c34"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:40 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:02 2006 -0800"
      },
      "message": "[PATCH] remove set_page_count() outside mm/\n\nset_page_count usage outside mm/ is limited to setting the refcount to 1.\nRemove set_page_count from outside mm/, and replace those users with\ninit_page_count() and set_page_refcounted().\n\nThis allows more debug checking, and tighter control on how code is allowed\nto play around with page-\u003e_count.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "70dc991d66cac40fdb07346dba2b5d862d732c34",
      "tree": "53ba8de1ae2d49f7479391e82794e35f14c0f7f7",
      "parents": [
        "84097518d1ecd2330f9488e4c2d09953a3340e74"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:35 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:01 2006 -0800"
      },
      "message": "[PATCH] remove set_page_count(page, 0) users (outside mm)\n\nA couple of places set_page_count(page, 1) that don\u0027t need to.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nCc: Jeff Dike \u003cjdike@addtoit.com\u003e\nCc: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4fa4f53bf92139595cae6f1a3d972fc0a3451d29",
      "tree": "a564a675bed7f34b1a05fce4055ea97e509ecf62",
      "parents": [
        "20aaffd6a6492a5f7975dd7be967cdf0e4d978c4"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:33 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:01 2006 -0800"
      },
      "message": "[PATCH] x86_64: pageattr remove __put_page\n\nRemove page_count and __put_page from x86-64 pageattr\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nAcked-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "20aaffd6a6492a5f7975dd7be967cdf0e4d978c4",
      "tree": "b6202e19d2c42dfcc7bbb6c266034e695adac137",
      "parents": [
        "84d1c054b1c408c6c92676069fa678d55d5f0033"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:32 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:01 2006 -0800"
      },
      "message": "[PATCH] x86_64: pageattr use single list\n\nUse page-\u003elru.next to implement the singly linked list of pages rather than\nthe struct deferred_page which needs to be allocated and freed for each\npage.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nAcked-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "84d1c054b1c408c6c92676069fa678d55d5f0033",
      "tree": "bffcaae1cf80706fcb276a3a15654b03b50bb6ae",
      "parents": [
        "f9aed0e2537174b95908f48b6052ae37196c9390"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:31 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:54:01 2006 -0800"
      },
      "message": "[PATCH] i386: pageattr remove __put_page\n\nStop using __put_page and page_count in i386 pageattr.c\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "78eef01b0fae087c5fadbd85dd4fe2918c3a015f",
      "tree": "78057039596aa733ff904a36260cca3a51af6981",
      "parents": [
        "ac2b898ca6fb06196a26869c23b66afe7944e52e"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Wed Mar 22 00:08:16 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:53:59 2006 -0800"
      },
      "message": "[PATCH] on_each_cpu(): disable local interrupts\n\nWhen on_each_cpu() runs the callback on other CPUs, it runs with local\ninterrupts disabled.  So we should run the function with local interrupts\ndisabled on this CPU, too.\n\nAnd do the same for UP, so the callback is run in the same environment on both\nUP and SMP.  (strictly it should do preempt_disable() too, but I think\nlocal_irq_disable is sufficiently equivalent).\n\nAlso uninlines on_each_cpu().  softirq.c was the most appropriate file I could\nfind, but it doesn\u0027t seem to justify creating a new file.\n\nOh, and fix up that comment over (under?) x86\u0027s smp_call_function().  It\ndrives me nuts.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8dfcc9ba27e2ed257e5de9539f7f03e57c2c0e33",
      "tree": "aecaeb6a0b33c23f79dfcd2418e4a3881a29f2e2",
      "parents": [
        "8e7a9aae91101916b86de07fafe3272ea8dc1f10"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:05 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:53:57 2006 -0800"
      },
      "message": "[PATCH] mm: split highorder pages\n\nHave an explicit mm call to split higher order pages into individual pages.\n Should help to avoid bugs and be more explicit about the code\u0027s intention.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nCc: Russell King \u003crmk@arm.linux.org.uk\u003e\nCc: David Howells \u003cdhowells@redhat.com\u003e\nCc: Ralf Baechle \u003cralf@linux-mips.org\u003e\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nCc: Paul Mundt \u003clethal@linux-sh.org\u003e\nCc: \"David S. Miller\" \u003cdavem@davemloft.net\u003e\nCc: Chris Zankel \u003cchris@zankel.net\u003e\nSigned-off-by: Yoichi Yuasa \u003cyoichi_yuasa@tripeaks.co.jp\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8e7a9aae91101916b86de07fafe3272ea8dc1f10",
      "tree": "799beb54db0ec0b6c58c5d6cdc902fa570f8be90",
      "parents": [
        "8dc04efbfb3c08a08fb7a3b97348d5d561b26ae2"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "npiggin@suse.de",
        "time": "Wed Mar 22 00:08:04 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:53:57 2006 -0800"
      },
      "message": "[PATCH] xtensa: pgtable fixes\n\n- Don\u0027t return uninitialised stack values in case of allocation failure\n\n- Don\u0027t bother clearing PageCompound because __GFP_COMP wasn\u0027t specified\n  Increment over the pte page rather than one pte entry in\n  pte_alloc_one_kernel\n\n- Actually increment the page pointer in pte_alloc_one\n\n- Compile fixes, typos.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nAcked-by: Chris Zankel \u003cchris@zankel.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f4a641d66c6e135dcfc861521e8008faed2411e1",
      "tree": "0d8e93949c646479ac39760bd6c0e7afcb96e4a6",
      "parents": [
        "83485f826bea154a0ab41e9b8689105531dd7cb2"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Wed Mar 22 00:07:46 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:53:56 2006 -0800"
      },
      "message": "[PATCH] multiple exports of strpbrk\n\nSam\u0027s tree includes a new check, which found that we\u0027re exporting strpbrk()\nmultiple times.\n\nIt seems that the convention is that this is exported from the arch files, so\nreove the lib/string.c export.\n\nCc: Sam Ravnborg \u003csam@ravnborg.org\u003e\nCc: Yoshinori Sato \u003cysato@users.sourceforge.jp\u003e\nCc: David Howells \u003cdhowells@redhat.com\u003e\nCc: Greg Ungerer \u003cgerg@uclinux.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "68ed0040a8c9d06b73cda322a1f740749bd6e41a",
      "tree": "73fe9f14b93466716b4a79007a33839ee42aad33",
      "parents": [
        "5e7a99ac452d7a4ce43b8bacb3495475e1f9fd71"
      ],
      "author": {
        "name": "Ravikiran G Thirumalai",
        "email": "kiran@scalex86.org",
        "time": "Wed Mar 22 00:07:38 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:53:55 2006 -0800"
      },
      "message": "[PATCH] x86: mark cyc2ns_scale readmostly\n\nThis variable is rarely written to.  Mark the variable accordingly.\n\nSigned-off-by: Ravikiran Thirumalai \u003ckiran@scalex86.org\u003e\nSigned-off-by: Shai Fultheim \u003cshai@scalex86.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4078006568c142a909e7889cbdc28804cec25461",
      "tree": "27ebbad413223e626ceb7782fc4ac1242616a1c7",
      "parents": [
        "152475cb0a65ed73301cfbd7d7afab65536643f7"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Wed Mar 22 00:07:35 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Mar 22 07:53:55 2006 -0800"
      },
      "message": "[PATCH] efi_call_phys_epilog() warning fix\n\narch/i386/kernel/efi.c: In function `efi_call_phys_epilog\u0027:                     arch/i386/kernel/efi.c:118: warning: assignment makes integer from pointer without a cast\n\nCc: Matt Domsch \u003cMatt_Domsch@dell.com\u003e\nCc: \"Tolentino, Matthew E\" \u003cmatthew.e.tolentino@intel.com\u003e\nCc: Zachary Amsden \u003czach@vmware.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bec1b8193651ea4394cc4d6e18152cb83e735f93",
      "tree": "7df3c9603a745b9f390a9132837c6909c4b96db3",
      "parents": [
        "58e9ff56382bdce340d50b6ff22c422dc617106c"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Mar 22 10:22:58 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Mar 22 10:22:58 2006 +0000"
      },
      "message": "[ARM] Quieten spurious IRQ detection\n\nOnly issue a \"nobody cared\" warning after 99900 spurious interrupts.\nThis avoids the occasional spurious interrupt causing warnings, as\nper x86.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "5501972e0b5857bc8354770d900ceb9b40c7f6b7",
      "tree": "ff239422827c4cd54d2998f8851304255de31b38",
      "parents": [
        "9d2f928ddf64ca0361562e30faf584cd33055c60",
        "e952f31bce6e9f64db01f607abc46529ba57ac9e"
      ],
      "author": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Wed Mar 22 11:02:08 2006 +0100"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Wed Mar 22 11:02:08 2006 +0100"
      },
      "message": "Merge with rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git\n"
    },
    {
      "commit": "f7cbb7fcd3bae5264a079e06411b35366da9bd4d",
      "tree": "cc6c46c6e68f2c13da665ad30c9e1dd370dcb7cf",
      "parents": [
        "97c67b65cbdfd19887450ae1b80ddbb54de9559d"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Jan 13 18:48:06 2006 +0100"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Wed Mar 22 10:23:39 2006 +0100"
      },
      "message": "[ALSA] Fix snd_xxx_t typedefs\n\nModules: PXA Mainstone driver,CX88 driver,SAA7134 driver\n\nReplace snd_xxx_t typedefs with explicit structs.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "dcc1e8dd88d4bc55e32a26dad7633d20ffe606d2",
      "tree": "a47592213d94f918867d3dd81bb91dac3e727dea",
      "parents": [
        "14778d9072e53d2171f66ffd9657daff41acfaed"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Mar 22 00:49:59 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Mar 22 01:15:14 2006 -0800"
      },
      "message": "[SPARC64]: Add a secondary TSB for hugepage mappings.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "14778d9072e53d2171f66ffd9657daff41acfaed",
      "tree": "3b60565ec1e957800fc3bf4743497202a24f8279",
      "parents": [
        "e952f31bce6e9f64db01f607abc46529ba57ac9e"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Tue Mar 21 02:29:39 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Mar 22 01:15:13 2006 -0800"
      },
      "message": "[SPARC]: Respect vm_page_prot in io_remap_page_range().\n\nMake sure the callers do a pgprot_noncached() on\nvma-\u003evm_page_prot.\n\nPointed out by Hugh Dickens.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f8642ebee8e46d054d83828a4048fba4ebcd8f68",
      "tree": "98dba337c34de68e2b319d03f8c41c7c47807ae8",
      "parents": [
        "6c600ad8da189aebe65b765fd0349ef6c9dd8c1f"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:46:11 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:30 2006 +1100"
      },
      "message": "[PATCH] powerpc: Remove calculation of io hole\n\nIn mm_init_ppc64() we calculate the location of the \"IO hole\", but then\nno one ever looks at the value. So don\u0027t bother.\n\nThat\u0027s actually all mm_init_ppc64() does, so get rid of it too.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "6c600ad8da189aebe65b765fd0349ef6c9dd8c1f",
      "tree": "b478facc7e679fcef36e23dd777670c7881284cc",
      "parents": [
        "289f1c74a9b527a816f63092e79a5412cc0352a2"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:46:10 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:27 2006 +1100"
      },
      "message": "[PATCH] powerpc: iseries: Add bootargs to /chosen\n\nAdd the command line args to the device tree as /chosen/bootargs.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "289f1c74a9b527a816f63092e79a5412cc0352a2",
      "tree": "13ea8968f704cd8a69ee720c1565ac432512e4a7",
      "parents": [
        "584fc6d111c34a9a2512f6c7652dff29232bf70d"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:46:09 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:26 2006 +1100"
      },
      "message": "[PATCH] powerpc: iseries: Add /system-id, /model and /compatible\n\nAdd /system-id, /model and /compatible to the iSeries device tree.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "584fc6d111c34a9a2512f6c7652dff29232bf70d",
      "tree": "80d67b3c6902eff8309106be6291dd84a14d8ab7",
      "parents": [
        "00611c5cfc8dea0914c65134f62948a484780a30"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:46:08 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:25 2006 +1100"
      },
      "message": "[PATCH] powerpc: Add strne2a() to convert a string from EBCDIC to ASCII\n\nAdd strne2a() which converts a string from EBCDIC to ASCII.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "00611c5cfc8dea0914c65134f62948a484780a30",
      "tree": "ae22a9077002d4f19ef7264546e11de04a96b678",
      "parents": [
        "a9ea2101aaa7fe73cb352cea4145853efdabaa0d"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:46:05 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:23 2006 +1100"
      },
      "message": "[PATCH] powerpc: iseries: Make more stuff static in platforms/iseries/mf.c\n\nMake mf_get_rtc(), mf_get_boot_rtc() and mf_set_rtc() static, cause they can\nbe. We need to move mf_set_rtc() to avoid a forward declaration.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "a9ea2101aaa7fe73cb352cea4145853efdabaa0d",
      "tree": "4dbeaec2e3ac65869d3e13e48ec91cf8eb853d05",
      "parents": [
        "260de22faac4d336ca122ebd0f1e59279d0b1dfd"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:46:04 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:22 2006 +1100"
      },
      "message": "[PATCH] powerpc: iseries: Remove pointless iSeries_(restart|power_off|halt)\n\nThese routines just call through to the mf routines, so point ppc_md straight\nat the mf routines. We need to pass the cmd through to mf_reboot to make it\nwork, but that seems reasonable.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "260de22faac4d336ca122ebd0f1e59279d0b1dfd",
      "tree": "be1c202f2bba96546ae2430d9433f7bd7d2a4783",
      "parents": [
        "57cfb814f698d30894bc28e22125550193ebe549"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:46:02 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:20 2006 +1100"
      },
      "message": "[PATCH] powerpc: iseries: mf related cleanups\n\nSome cleanups in the iSeries code.\n - Make mf_display_progress() check mf_initialized rather than the caller.\n - Set mf_initialized in mf_init() rather than in setup.c\n - Then move mf_initialized into mf.c, the only place it\u0027s used.\n - Move the mf related logic from iSeries_progress() to mf_display_progress()\n - Use a #define to size the pending_event_prealloc array\n - Use that define in the initialsation loop rather than sizeof jiggery pokery\n - Remove stupid comment(s)\n - Mark stuff static and/or __init\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "57cfb814f698d30894bc28e22125550193ebe549",
      "tree": "755fd11b1a528f8de7913119b457f866734cb81a",
      "parents": [
        "3d15910bfbeb02286ce4b5009c53754e88066ccb"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:45:59 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:17 2006 +1100"
      },
      "message": "[PATCH] powerpc: Replace platform_is_lpar() with a firmware feature\n\nIt has been decreed that platform numbers are evil, so as a step in that\ndirection, replace platform_is_lpar() with a FW_FEATURE_LPAR bit.\n\nCurrently FW_FEATURE_LPAR really means i/pSeries LPAR, in the future we might\nhave to clean that up if we need to be more specific about what LPAR actually\nmeans. But that\u0027s another patch ...\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "415202447d31d0f458cca256ad7e0ed777d993d9",
      "tree": "3f12c25557a7f631852e2bda9831dc7fc9b5b5fc",
      "parents": [
        "caf80e579b5fc0048681a47c5a55487116e56a88"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:45:58 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:12 2006 +1100"
      },
      "message": "[PATCH] powerpc: Remove unused iommu_off logic from pSeries_init_early()\n\nWhen iommu_init_early_pSeries() was added, ages ago, we forgot to remove\nthe code that checks /chosen/linux,iommu-off in pSeries_init_early(). We\ndo it now in iommu_init_early_pSeries().\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nAcked-by: Olof Johansson \u003colof@lixom.net\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "caf80e579b5fc0048681a47c5a55487116e56a88",
      "tree": "a5da9d218c0f98a7881cfc601f67cd619579d441",
      "parents": [
        "2b2612272c77288b2bd53d5831df737cd669cd93"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Tue Mar 21 20:45:51 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:09 2006 +1100"
      },
      "message": "[PATCH] powerpc: Unconfuse htab_bolt_mapping() callers\n\nhtab_bolt_mapping() takes a vstart and pstart parameter, but all but one of\nits callers actually pass it vstart and vstart. Luckily before it passes\npaddr (calculated from paddr) to the hpte_insert routines it calls\nvirt_to_abs() (aka. __pa()) on the address, so there isn\u0027t actually a bug.\n\nmap_io_page() however does pass pstart properly, so currently it\u0027s broken\nAFAICT because we\u0027re calling __pa(paddr) which will get us something very\nlarge. Presumably no one\u0027s calling map_io_page() in the right context.\n\nAnyway, change htab_bolt_mapping() callers to properly pass pstart, and then\nuse it properly in htab_bolt_mapping(), ie. don\u0027t call __pa() on it again.\n\nBooted on p5 LPAR, iSeries and Power3.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "2b2612272c77288b2bd53d5831df737cd669cd93",
      "tree": "551588d4f4709c39e5e0176b81ed5138722e3458",
      "parents": [
        "482ec7c403d239bb4f1732faf9a14988094ce08b"
      ],
      "author": {
        "name": "Nathan Lynch",
        "email": "nathanl@austin.ibm.com",
        "time": "Mon Mar 20 18:37:15 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:03 2006 +1100"
      },
      "message": "[PATCH] powerpc numa: Consolidate assignment of cpus to nodes\n\nWe can plug the boot cpu into its node independently of whether numa\ntopology is detected.  And numa_setup_cpu does the right thing for all\ncases now, so remove special-casing for non-numa from the cpu hotplug\ncallback.\n\nSigned-off-by: Nathan Lynch \u003cnathanl@austin.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "482ec7c403d239bb4f1732faf9a14988094ce08b",
      "tree": "9abc78e92b304e5ee09428db0cb8922cc86aa213",
      "parents": [
        "bc16a75926941094db6b42d76014abb5e8d3a910"
      ],
      "author": {
        "name": "Nathan Lynch",
        "email": "nathanl@austin.ibm.com",
        "time": "Mon Mar 20 18:36:45 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:04:01 2006 +1100"
      },
      "message": "[PATCH] powerpc numa: Support sparse online node map\n\nThe powerpc numa code unconditionally onlines all nodes from 0 to the\nhighest node id found, regardless of whether cpus or memory are\npresent in the nodes.  This wastes 8K per node and complicates some\ncpu and memory hotplug situations, such as adding a resource that\ndoesn\u0027t map to one of the nodes discovered at boot.\n\nSet nodes online as resources are scanned.  Fall back to node 0 only\nwhen we\u0027re sure this isn\u0027t a NUMA machine.\n\nInstead of defaulting to node 0 for cases of hot-adding a resource\nwhich doesn\u0027t belong to any initialized node, assign it to the first\nonline node.\n\nSigned-off-by: Nathan Lynch \u003cnathanl@austin.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "bc16a75926941094db6b42d76014abb5e8d3a910",
      "tree": "b6eced8416d521711a80f23e79cc58d7dc361cb4",
      "parents": [
        "cf950b7af0e51935e559c54262214423e2b6c88a"
      ],
      "author": {
        "name": "Nathan Lynch",
        "email": "nathanl@austin.ibm.com",
        "time": "Mon Mar 20 18:36:15 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:03:57 2006 +1100"
      },
      "message": "[PATCH] powerpc numa: Consolidate handling of Power4 special case\n\nCode to handle Power4\u0027s invalid node id (0xffff) is duplicated for cpu\nand memory.  Better to handle this case in one place --\nof_node_to_nid.  Overall behavior should be unchanged.\n\nSigned-off-by: Nathan Lynch \u003cnathanl@austin.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "cf950b7af0e51935e559c54262214423e2b6c88a",
      "tree": "125dfacbbc12c4f5cc5d5ad83c13d463208fa045",
      "parents": [
        "2e5ce39d6703836b583c43131c365201a76285a5"
      ],
      "author": {
        "name": "Nathan Lynch",
        "email": "nathanl@austin.ibm.com",
        "time": "Mon Mar 20 18:35:45 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:03:52 2006 +1100"
      },
      "message": "[PATCH] powerpc numa: Get rid of \"numa domain\" terminology\n\nSince we effectively treat the domain ids given to us by firmare as\nlogical node ids, make this explicit (basically s/numa_domain/nid/).\n\nNo functional changes, only variable and function names are modified.\n\nSigned-off-by: Nathan Lynch \u003cnathanl@austin.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "2e5ce39d6703836b583c43131c365201a76285a5",
      "tree": "f45152d260b8ad49dc4dcb2ada905eaa24ffdc26",
      "parents": [
        "bf4b85b0e4bab42b3e8d8b0acc6851bb85e2050b"
      ],
      "author": {
        "name": "Nathan Lynch",
        "email": "nathanl@austin.ibm.com",
        "time": "Mon Mar 20 18:35:15 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:03:48 2006 +1100"
      },
      "message": "[PATCH] powerpc numa: Minor cpu hotplug-related cleanups\n\nmap_cpu_to_node does not need to be inline, it is never called in a\nhot path.\n\nmap_cpu_to_node, numa_setup_cpu, and find_cpu_node can be marked\n__cpuinit, as they are never used after boot if CONFIG_HOTPLUG_CPU\u003dn.\n\nSigned-off-by: Nathan Lynch \u003cnathanl@austin.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "bf4b85b0e4bab42b3e8d8b0acc6851bb85e2050b",
      "tree": "aca0083d6b128beea7e4cf048eaff7bab64d6318",
      "parents": [
        "c08888cf3c80fe07bfd176113c390ca31d3ba5c2"
      ],
      "author": {
        "name": "Nathan Lynch",
        "email": "nathanl@austin.ibm.com",
        "time": "Mon Mar 20 18:34:45 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:03:45 2006 +1100"
      },
      "message": "[PATCH] powerpc numa: Minor debugging code changes\n\nAdd debug statement for map_cpu_to_node; it\u0027s useful for cpu hotplug.\n\nClarify debug statement about not finding the numa reference points\nproperty.\n\nDon\u0027t print a meaningless associativity depth (-1) on non-numa systems.\n\nSigned-off-by: Nathan Lynch \u003cnathanl@austin.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "c08888cf3c80fe07bfd176113c390ca31d3ba5c2",
      "tree": "37d6ef3a46dca009c997e337874a194551bd4fcd",
      "parents": [
        "1d7aac5b3bce34c8b5fcec8ca577a4d3af880fd3"
      ],
      "author": {
        "name": "Nathan Lynch",
        "email": "nathanl@austin.ibm.com",
        "time": "Mon Mar 20 18:34:15 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 15:03:40 2006 +1100"
      },
      "message": "[PATCH] powerpc numa: fix boot_cpuid always assigned to node 0\n\nAt boot, the numa code is assigning boot_cpuid to node 0\nunconditionally.  Basically, numa_setup_cpu is being stupid about it,\nbut this is the minimal fix -- just call numa_setup_cpu(boot_cpuid)\nlater, after all nodes have been set online.\n\nSigned-off-by: Nathan Lynch \u003cnathanl@austin.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "1d7aac5b3bce34c8b5fcec8ca577a4d3af880fd3",
      "tree": "edf6371a92255a348662dd17dda659012d5a4169",
      "parents": [
        "1a02e59a2970f9ed28ab51d3b08624b79e54d848",
        "61c5504a0ed66c8b460f9a006eedaea2ee587e33"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 13:46:53 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Mar 22 13:46:53 2006 +1100"
      },
      "message": "Merge branch \u002785xx\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc\n"
    },
    {
      "commit": "e952f31bce6e9f64db01f607abc46529ba57ac9e",
      "tree": "b746bcd315d4f86c9ed7617939f29339fc692852",
      "parents": [
        "e0f4ab8a1741193891f096aa63df9ac8672af54c",
        "133a58c1fd97022690d53dd58df56579193cbc1d"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Mar 21 15:58:17 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Mar 21 15:58:17 2006 -0800"
      },
      "message": "Merge branch \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6\n\n* \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6:\n  [IA64-SGI] SN2-XP reduce kmalloc wrapper inlining\n  [IA64] MCA: remove obsolete ifdef\n  [IA64] MCA: update MCA comm field for user space tasks\n  [IA64] MCA: print messages in MCA handler\n  [IA64-SGI] - Eliminate SN pio_phys_xxx macros. Move to assembly\n  [IA64] use icc defined constant\n  [IA64] add __builtin_trap definition for icc build\n  [IA64] clean up asm/intel_intrin.h\n  [IA64] map ia64_hint definition to intel compiler intrinsic\n  [IA64] hooks to wait for mmio writes to drain when migrating processes\n  [IA64-SGI] driver bugfixes and hardware workarounds for CE1.0 asic\n  [IA64-SGI] Handle SC env. powerdown events\n  [IA64] Delete MCA/INIT sigdelayed code\n  [IA64-SGI] sem2mutex ioc4.c\n  [IA64] implement ia64 specific mutex primitives\n  [IA64] Fix UP build with BSP removal support.\n  [IA64] support for cpu0 removal\n"
    },
    {
      "commit": "58e9ff56382bdce340d50b6ff22c422dc617106c",
      "tree": "5cbe14561fe6be5d5a867ef860daf36f938dbdc0",
      "parents": [
        "ae92dc9f7bc9018f1d043f102747a1f1e4dd96fb"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Mon Mar 20 16:52:32 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 23:30:02 2006 +0000"
      },
      "message": "[ARM] Use kcalloc to allocate counter_config array rather than kmalloc\n\nWe need this to be zero initialised.  Since this is an array, use kcalloc\nrather than kzalloc or kmalloc.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ae92dc9f7bc9018f1d043f102747a1f1e4dd96fb",
      "tree": "badf1461067e30a7ee39100ca23b7ce1772773b3",
      "parents": [
        "93ad79496c8831552d5f8ca7c182f149cc3cf19a"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Mar 16 11:32:51 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 23:30:02 2006 +0000"
      },
      "message": "[ARM] Oprofile: dynamically allocate counter_config\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "93ad79496c8831552d5f8ca7c182f149cc3cf19a",
      "tree": "c8a052a2419081a7d930b1844dec0e0bd1747211",
      "parents": [
        "c3d5395fd7ac5b338c701deaaddec090d3c25af9"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Mar 16 11:38:16 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 23:30:00 2006 +0000"
      },
      "message": "[ARM] Oprofile: Convert semaphore to mutex\n\nop_arm_sem is being used as a mutex, so convert it to use\nreal mutexes.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "c3d5395fd7ac5b338c701deaaddec090d3c25af9",
      "tree": "f8d344cb9672a5a3c7816ea7cc6b00f2db665350",
      "parents": [
        "da956fd6b84f61bc98a18a63cdbd8190ec7b8cd0"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 21:28:04 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:23 2006 +0000"
      },
      "message": "[ARM] 3376/2: S3C2410 - update defconfig\n\nPatch from Ben Dooks\n\nAdd Simtec Osiris to the default build, and enable the\nUSB-OHCI section by default.\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": "da956fd6b84f61bc98a18a63cdbd8190ec7b8cd0",
      "tree": "9d4728d936017ad37a69aa811f1aa453ac9e7f54",
      "parents": [
        "bd20ff5793b4ece4fa3e9e0fcf8e6bbd93526215"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 21:02:39 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:22 2006 +0000"
      },
      "message": "[ARM] 3375/1: S3C2440 - fix osiris machine build\n\nPatch from Ben Dooks\n\nFix the build of arch/arm/mach-s3c2410/mach-osiris.c\nand fix the warnings from sparse.\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": "bd20ff5793b4ece4fa3e9e0fcf8e6bbd93526215",
      "tree": "3241a5ab8b8ff5e00107f80417d5dc75e57e8acb",
      "parents": [
        "36c64af4e013ddf44c44298f50ff138ef1e2e7b7"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Mon Mar 20 21:02:37 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:21 2006 +0000"
      },
      "message": "[ARM] 3374/1: ep93xx: gpio interrupt support\n\nPatch from Lennert Buytenhek\n\nAdd GPIO interrupt support for the first 16 GPIO lines (port A\nand B.)\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "36c64af4e013ddf44c44298f50ff138ef1e2e7b7",
      "tree": "9ece82d6a2ed67fb3efa1e422435864f09c22d96",
      "parents": [
        "e44c03960f232e0f9bd2f6bcffccf83770757a8e"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben@trinity.fluff.org",
        "time": "Mon Mar 20 21:00:48 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:20 2006 +0000"
      },
      "message": "[ARM] 3361/1: S3C24XX - add USB bus clock source\n\nPatch from Ben Dooks\n\nAdd USB bus clock definition for 48MHz fed to OHCI and gadget cores\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": "e44c03960f232e0f9bd2f6bcffccf83770757a8e",
      "tree": "f14012b8224dd45dc7f0c4c9abeea05287b6feec",
      "parents": [
        "6e8908edd5a140f4f0cc4338fa0420b0bb0f8efa"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 21:00:12 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:19 2006 +0000"
      },
      "message": "[ARM] 3360/1: S3C2440 - add set rate methods and camera clock\n\nPatch from Ben Dooks\n\nAdd set_rate methods for the extra clocks on the S3C2440\nand add the camera UPLL clock source\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": "6e8908edd5a140f4f0cc4338fa0420b0bb0f8efa",
      "tree": "f428e1725b3ee7fd295077b90d3fd491c2c61b30",
      "parents": [
        "d2a02b93cf78205dd23226efb66481569900976e"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 21:00:08 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:18 2006 +0000"
      },
      "message": "[ARM] 3359/1: S3C24XX - add support for clk_set_rate\n\nPatch from Ben Dooks\n\nAdd support for clk_set_rate and clk_round_rate to the\ns3c2410 clock implementation\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": "d2a02b93cf78205dd23226efb66481569900976e",
      "tree": "94760abdafe5cb72a41d3edd405a26d0c8e2e0d3",
      "parents": [
        "18ec5c731271939acb414614e964c15c8ef52156"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Mon Mar 20 19:46:41 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:17 2006 +0000"
      },
      "message": "[ARM] Convert kmalloc+memset to kzalloc\n\nConvert all uses of kmalloc followed by memset to use kzalloc instead.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "18ec5c731271939acb414614e964c15c8ef52156",
      "tree": "e00ad5d5519623aea279da11bac381dd220ce40b",
      "parents": [
        "dd18c34eac6686d04aed9e51e7b98842c0cef3d5"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Mon Mar 20 17:10:17 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:16 2006 +0000"
      },
      "message": "[ARM] 3373/1: move uengine loader to arch/arm/common\n\nPatch from Lennert Buytenhek\n\nMove the uengine loader from arch/arm/mach-ixp2000 to arch/arm/common\nso that ixp23xx can use it too.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "dd18c34eac6686d04aed9e51e7b98842c0cef3d5",
      "tree": "c2df68f3dd17bb1a7ffee4dff86df103501687dd",
      "parents": [
        "a8e19667a42d752f3eca6eaa17aa5d6f93066dfe"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Mon Mar 20 17:10:15 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:13 2006 +0000"
      },
      "message": "[ARM] 3372/1: ep93xx: add defconfig\n\nPatch from Lennert Buytenhek\n\nAdd ep93xx defconfig.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a8e19667a42d752f3eca6eaa17aa5d6f93066dfe",
      "tree": "7bf3b7eb8ac3fb6c18b3a8c33a88d6d2158f45e4",
      "parents": [
        "e7736d47a11a771ba87314be563b2cb6b8d11d14"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Mon Mar 20 17:10:14 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:12 2006 +0000"
      },
      "message": "[ARM] 3371/1: ep93xx: gpio support\n\nPatch from Lennert Buytenhek\n\nAdd support for setting the direction of and getting/setting the\nvalue of the 64 GPIO lines.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "e7736d47a11a771ba87314be563b2cb6b8d11d14",
      "tree": "21f27b7311a5298b9295b1e4b229eec190bfd23c",
      "parents": [
        "73deb7dc05b4cf968e506e7b18345bc65bcbc0f3"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Mon Mar 20 17:10:13 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:11 2006 +0000"
      },
      "message": "[ARM] 3369/1: ep93xx: add core cirrus ep93xx support\n\nPatch from Lennert Buytenhek\n\nThis patch adds support for the Cirrus ep93xx series of CPUs.  The\nep93xx is an ARM920T based CPU with two VICs, PL010 based UARTs,\nIrDA, MaverickCrunch floating point coprocessor, between 24 and 64\nGPIOs, ethernet, OHCI USB and, depending on the model, pcmcia, raster\nengine, graphics accelerator, IDE controller and a bunch of other\nstuff.\n\nThis patch adds the core ep93xx support code, and support for the\nGlomation GESBC-9312-sx and the Technologic Systems TS-72xx SBCs.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "73deb7dc05b4cf968e506e7b18345bc65bcbc0f3",
      "tree": "82c657f89548aaa0d6e62e889e0dafef427fd8d8",
      "parents": [
        "03bd14c4b7fa535c78f17751172dbe8937729f05"
      ],
      "author": {
        "name": "Alessandro Zummo",
        "email": "a.zummo@towertech.it",
        "time": "Mon Mar 20 17:10:12 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:09 2006 +0000"
      },
      "message": "[ARM] 3368/1: ixp4xx: set gpio direction in ixp4xx_config_irq\n\nPatch from Alessandro Zummo\n\nixp4xx_config_irq did not configure the gpio line\nas an input.\n\nAs an added bonus, the irq2gpio array has been converted\nfrom int to char.\n\nSigned-off-by: Alessandro Zummo \u003ca.zummo@towertech.it\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "6d4518d76f9612d580f9423cc0c3364a06b69588",
      "tree": "27e2287ecc9b858089a667def26b7d9555212337",
      "parents": [
        "0328ad23cfd8a0501f44a1b83e49d5b0e47e2b3c"
      ],
      "author": {
        "name": "Peter Teichmann",
        "email": "mail@peter-teichmann.de",
        "time": "Mon Mar 20 17:10:09 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:07 2006 +0000"
      },
      "message": "[ARM] 3346/1: Fix udelay() for HZ values different from 100\n\nPatch from Peter Teichmann\n\nCurrently, if the kernels HZ value is greater than 100, delays with the udelay function are too short. This can cause trouble for instance with the zd1201 usb wlan driver.\n\nThis patch suggests a solution that keeps the overhead small and maintains (hopefully) sufficient resolution.\n\nSigned-off-by: Peter Teichmann\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "0328ad23cfd8a0501f44a1b83e49d5b0e47e2b3c",
      "tree": "6cf4b72c6a243a1848c26bd548370ed794bfe065",
      "parents": [
        "3fc3e1c0640887f883c28330e9d35145d23b2696"
      ],
      "author": {
        "name": "Deepak Saxena",
        "email": "dsaxena@plexity.net",
        "time": "Mon Mar 20 17:10:08 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:06 2006 +0000"
      },
      "message": "[ARM] 3334/1: Add support for IXDP28x5 platforms\n\nPatch from Deepak Saxena\n\nThis patch adds support for Intel\u0027s IXDP28x5 platform. This\nis just and IXDP2801 with a new CPU rev but the bootloader\nhas been updated to reflect a new machine ID so we just build\nsupport for it by default when we build IXDP2801.\n\nSigned-off-by: Deepak Saxena \u003cdsaxena@plexity.net\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "3fc3e1c0640887f883c28330e9d35145d23b2696",
      "tree": "94a98fb93f5f742d0d984a84934bf9cb90315119",
      "parents": [
        "a08ceff2a98e09cb14afefdd9276714b85c945f7"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 17:10:07 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:05 2006 +0000"
      },
      "message": "[ARM] 3333/1: S3C2XX - add dclk and clkout clock support\n\nPatch from Ben Dooks\n\nAdd enable and set_parent calls for the dclk\nand clkout clocks.\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": "d3468daab82d5195fe85322235896797d5581720",
      "tree": "f4980daea0e4654a3e72cbfa61c82294036588f5",
      "parents": [
        "8e40a2f91c6e73726a75381e4438478eb5964cb7"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 17:10:04 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:03 2006 +0000"
      },
      "message": "[ARM] 3331/1: S3C24XX - add clk_set_parent() to clock code\n\nPatch from Ben Dooks\n\nAdd clk_set_parent() call to clock code\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": "8e40a2f91c6e73726a75381e4438478eb5964cb7",
      "tree": "b0b66666c84151a2c382e189e2fbcc619d1edfb0",
      "parents": [
        "766636cc3630ae3b9827e7b4b1f566572963f1ef"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 17:10:04 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:02 2006 +0000"
      },
      "message": "[ARM] 3330/1: S3C24XX - move UPLL to main clock\n\nPatch from Ben Dooks\n\nMove the UPLL clock registration to the central\nclock file, and add an enable method\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": "766636cc3630ae3b9827e7b4b1f566572963f1ef",
      "tree": "6405563d6daeff302e1501329a2917d83accfc36",
      "parents": [
        "110d322b29c08d8cf1dba599fd45ad2b9752a4bb"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 17:10:03 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:01 2006 +0000"
      },
      "message": "[ARM] 3329/1: S3C24XX - fix time for osiris machine\n\nPatch from Ben Dooks\n\nAdd selection for timer code for the Simtec Osiris\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": "110d322b29c08d8cf1dba599fd45ad2b9752a4bb",
      "tree": "5175c4f762db0146aa2c01d3916f0f5ab113bf2c",
      "parents": [
        "a61ea9326d9ba94bcdc21f36bb74aa203657c58f"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Mar 20 17:10:02 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:06:00 2006 +0000"
      },
      "message": "[ARM] 3327/1: S3C2410 - add osiris machine support\n\nPatch from Ben Dooks\n\nSupport for Simtec IM2440D20 CPU modules (Osiris)\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": "a61ea9326d9ba94bcdc21f36bb74aa203657c58f",
      "tree": "775d8582e5a89f224059de24a0ade885530a4e06",
      "parents": [
        "71dccd0f158a8077c92d51f213b55991b7a0e47e"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Mon Mar 20 17:10:01 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:58 2006 +0000"
      },
      "message": "[ARM] 3261/2: remove phys_ram from struct machine_desc (part 3)\n\nPatch from Nicolas Pitre\n\nThis field is redundent since it must be equal to PHYS_OFFSET anyway.\n\nThere is no reference to it anymore so remove it at last.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "97d654f8eb4b8fbb6e1afef076429a4235a3a3ad",
      "tree": "2d289d4e07f15254254a873a15ccb443acebe7d9",
      "parents": [
        "824b5b5e59472c89bc508afa5c453547c91ed53b"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Mar 15 15:54:37 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:53 2006 +0000"
      },
      "message": "[ARM] Convert SA1111 to use clock architecture\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "824b5b5e59472c89bc508afa5c453547c91ed53b",
      "tree": "a3bdb4feb4bad9ba4fea55c6801d70bfe50e3926",
      "parents": [
        "548153663bbf33ca7c244a6bbddd82c26a17c331"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Mar 15 15:44:29 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:52 2006 +0000"
      },
      "message": "[ARM] Adapt vic.c to allow for multiple VICs in a system.\n\nSome SoCs have multiple VIC devices.  Adapt the generic vic code\nto allow multiple implementations to be handled.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "548153663bbf33ca7c244a6bbddd82c26a17c331",
      "tree": "a524672721340c2c937deb7db25955230f478d96",
      "parents": [
        "5d25ac038a317d454a4321cba955f756400835a5"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Mar 15 15:43:04 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:51 2006 +0000"
      },
      "message": "[ARM] Rename chipdata to \u0027base\u0027 and make it an iomem pointer\n\nIn all current use cases, \"chipdata\" is used to store an iomem address.\nMark it with __iomem, and rename it to \u0027base\u0027.  Leave the accessor macros\nalone.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "5d25ac038a317d454a4321cba955f756400835a5",
      "tree": "ec536b7e1aba8c0775f72e924743524e4688d5d7",
      "parents": [
        "f78f10436806660f39440a729acbaf03e3a01023"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Mar 15 12:33:43 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:50 2006 +0000"
      },
      "message": "[ARM] Move IRQ enable after coprocessor number decode\n\nAllow the individual coprocessor handlers to decide when to enable\ninterrupts, rather than unconditionally enabling them.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "f78f10436806660f39440a729acbaf03e3a01023",
      "tree": "3cef9023d54d12bc029893b35945f7bec69a22d3",
      "parents": [
        "bfe65704812f82751470106ea50aeb7e7d37cc3f"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Mar 04 11:04:12 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:50 2006 +0000"
      },
      "message": "[ARM] Remove unnecessary asm/hardware.h includes\n\nasm/hardware.h is not required for the majority of processor support\nfiles, ioremap support, mm initialisation, acorn IO support, nor\nthe debug code (which picks up its machine specific includes via\ndebug-macros.S)\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "bfe65704812f82751470106ea50aeb7e7d37cc3f",
      "tree": "7c84c0f14d5e4a1ee749a69a5e73ab7c37be8227",
      "parents": [
        "411ef7f4cf1684ca7977c7917fd841ea091c5b26"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Mar 04 11:01:53 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:47 2006 +0000"
      },
      "message": "[ARM] Fix HZ definition for OMAP without 32K timer\n\nUnfortunately, OMAP platforms without the 32K timer left HZ set to\nan empty value.  Fix this by making the dependency on OMAP_32K_TIMER\nrather than OMAP_32K_TIMER_HZ.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "411ef7f4cf1684ca7977c7917fd841ea091c5b26",
      "tree": "2f8fe585de8c7e5f3e220d09a512d52711918351",
      "parents": [
        "f80658137fc8b789a71953adeca194a5a4747427"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Mar 04 10:37:07 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:46 2006 +0000"
      },
      "message": "[ARM] Remove asm/arch/irq.h\n\nasm/arch/irq.h used to be included from asm/irq.h, but was removed\nfrom the ARM kernel a long time ago.  Consequently, the contents\nof asm/arch/irq.h (which mostly contain a definition for fixup_irq())\nhave not been used.  Hence, remove asm/arch/irq.h.\n\nSome machine support files incorrectly included this file, making\nlittle or no use of the contents.  Move the contents to a local\ninclude file, and remove those include statements as well.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "f80658137fc8b789a71953adeca194a5a4747427",
      "tree": "55a634d2720412f2d70546576f7bc5e035e8b1b3",
      "parents": [
        "ec1248e70edc5cf7b485efcc7b41e44e10f422e5"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Mar 02 22:41:59 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Mar 21 22:05:45 2006 +0000"
      },
      "message": "[ARM] Move HZ definition into Kconfig\n\nMove the HZ definition into Kconfig, and set appropriate defaults\nfor platforms.  Remove mostly empty asm/arch/param.h include file.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ec1248e70edc5cf7b485efcc7b41e44e10f422e5",
      "tree": "80ca10a1ad9dc572e131a56a93fcf0c63c14d168",
      "parents": [
        "3d1f337b3e7378923c89f37afb573a918ef40be5",
        "55e9dce37ddf3ab358ba1d1e9eef4ee4bd8174a6"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Mar 21 09:33:19 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Mar 21 09:33:19 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6\n\n* master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6:\n  [CRYPTO] aes: Fixed array boundary violation\n  [CRYPTO] tcrypt: Fix key alignment\n  [CRYPTO] all: Add missing cra_alignmask\n  [CRYPTO] all: Use kzalloc where possible\n  [CRYPTO] api: Align tfm context as wide as possible\n  [CRYPTO] twofish: Use rol32/ror32 where appropriate\n"
    },
    {
      "commit": "2bf2154c6bb5599e3ec3f73c34861a0b12aa839e",
      "tree": "62691bd915e2e3c2e6648306d3fb893f7a1dc57e",
      "parents": [
        "08a4ecee986dd98e86090ff5faac4782b6765aed",
        "71a8924bee63d891f6256d560e32416a458440b3"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Mar 21 09:25:47 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Mar 21 09:25:47 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6\n\n* master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6: (81 commits)\n  [PATCH] USB: omninet: fix up debugging comments\n  [PATCH] USB serial: add navman driver\n  [PATCH] USB: Fix irda-usb use after use\n  [PATCH] USB: rtl8150 small fix\n  [PATCH] USB: ftdi_sio: add Icom ID1 USB product and vendor ids\n  [PATCH] USB: cp2101: add new device IDs\n  [PATCH] USB: fix check_ctrlrecip to allow control transfers in state ADDRESS\n  [PATCH] USB: vicam.c: fix a NULL pointer dereference\n  [PATCH] USB: ZC0301 driver bugfix\n  [PATCH] USB: add support for Creativelabs Silvercrest USB keyboard\n  [PATCH] USB: storage: new unusual_devs.h entry: Mitsumi 7in1 Card Reader\n  [PATCH] USB: storage: unusual_devs.h entry 0420:0001\n  [PATCH] USB: storage: another unusual_devs.h entry\n  [PATCH] USB: storage: sandisk unusual_devices entry\n  [PATCH] USB: fix initdata issue in isp116x-hcd\n  [PATCH] USB: usbcore: usb_set_configuration oops (NULL ptr dereference)\n  [PATCH] USB: usbcore: Don\u0027t assume a USB configuration includes any interfaces\n  [PATCH] USB: ub 03 drop stall clearing\n  [PATCH] USB: ub 02 remove diag\n  [PATCH] USB: ub 01 remove first_open\n  ...\n"
    },
    {
      "commit": "08a4ecee986dd98e86090ff5faac4782b6765aed",
      "tree": "74df5de49f38c432a6a18303b0c6d834fd09028f",
      "parents": [
        "ba93c6297b9cfad5a70b5e5ed13c9dbead6601d3",
        "b3229087c5e08589cea4f5040dab56f7dc11332a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Mar 21 09:25:15 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Mar 21 09:25:15 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6\n\n* master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6: (23 commits)\n  [PATCH] sysfs: fix a kobject leak in sysfs_add_link on the error path\n  [PATCH] sysfs: don\u0027t export dir symbols\n  [PATCH] get_cpu_sysdev() signedness fix\n  [PATCH] kobject_add_dir\n  [PATCH] debugfs: Add debugfs_create_blob() helper for exporting binary data\n  [PATCH] sysfs: fix problem with duplicate sysfs directories and files\n  [PATCH] Kobject: kobject.h: fix a typo\n  [PATCH] Kobject: provide better warning messages when people do stupid things\n  [PATCH] Driver core: add macros notice(), dev_notice()\n  [PATCH] firmware: fix BUG: in fw_realloc_buffer\n  [PATCH] sysfs: kzalloc conversion\n  [PATCH] fix module sysfs files reference counting\n  [PATCH] add EXPORT_SYMBOL_GPL_FUTURE() to USB subsystem\n  [PATCH] add EXPORT_SYMBOL_GPL_FUTURE() to RCU subsystem\n  [PATCH] add EXPORT_SYMBOL_GPL_FUTURE()\n  [PATCH] Clean up module.c symbol searching logic\n  [PATCH] kobj_map semaphore to mutex conversion\n  [PATCH] kref: avoid an atomic operation in kref_put()\n  [PATCH] handle errors returned by platform_get_irq*()\n  [PATCH] driver core: platform_get_irq*(): return -ENXIO on error\n  ...\n"
    }
  ],
  "next": "ba93c6297b9cfad5a70b5e5ed13c9dbead6601d3"
}
