)]}'
{
  "log": [
    {
      "commit": "f037360f2ed111fe89a8f5cb6ba351f4e9934e53",
      "tree": "5978627d4252a7faf6d4fb9577fe8aa55e5db648",
      "parents": [
        "10ebffde3d3916026974352b7900e44afe2b243f"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@parcelfarce.linux.theplanet.co.uk",
        "time": "Sun Nov 13 16:06:57 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] m68k: thread_info header cleanup\n\na) in smp_lock.h #include of sched.h and spinlock.h moved under #ifdef\n   CONFIG_LOCK_KERNEL.\n\nb) interrupt.h now explicitly pulls sched.h (not via smp_lock.h from\n   hardirq.h as it used to)\n\nc) in three more places we need changes to compensate for (a) - one place\n   in arch/sparc needs string.h now, hardirq.h needs forward declaration of\n   task_struct and preempt.h needs direct include of thread_info.h.\n\nd) thread_info-related helpers in sched.h and thread_info.h put under\n   ifndef __HAVE_THREAD_FUNCTIONS.  Obviously safe.\n\nSigned-off-by: Al Viro \u003cviro@parcelfarce.linux.theplanet.co.uk\u003e\nSigned-off-by: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "10ebffde3d3916026974352b7900e44afe2b243f",
      "tree": "ac88fa33694f5bea1b6958e1e56bcd4c9b95b002",
      "parents": [
        "a1261f54611ec4ad6a7ab7080f86747e3ac3685b"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@parcelfarce.linux.theplanet.co.uk",
        "time": "Sun Nov 13 16:06:56 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] m68k: introduce setup_thread_stack() and end_of_stack()\n\nencapsulates the rest of arch-dependent operations with thread_info access.\nTwo new helpers - setup_thread_stack() and end_of_stack().  For normal case\nthe former consists of copying thread_info of parent to new thread_info and\nthe latter returns pointer immediately past the end of thread_info.\n\nSigned-off-by: Al Viro \u003cviro@parcelfarce.linux.theplanet.co.uk\u003e\nSigned-off-by: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a1261f54611ec4ad6a7ab7080f86747e3ac3685b",
      "tree": "8a65c419da590e3712543f69284fb5f8cd613a37",
      "parents": [
        "7feacd53347c04aee789ba5d632eda0c3fc421c4"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@parcelfarce.linux.theplanet.co.uk",
        "time": "Sun Nov 13 16:06:55 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] m68k: introduce task_thread_info\n\nnew helper - task_thread_info(task).  On platforms that have thread_info\nallocated separately (i.e.  in default case) it simply returns\ntask-\u003ethread_info.  m68k wants (and for good reasons) to embed its thread_info\ninto task_struct.  So it will (in later patch) have task_thread_info() of its\nown.  For now we just add a macro for generic case and convert existing\ninstances of its body in core kernel to uses of new macro.  Obviously safe -\nall normal architectures get the same preprocessor output they used to get.\n\nSigned-off-by: Al Viro \u003cviro@parcelfarce.linux.theplanet.co.uk\u003e\nSigned-off-by: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7feacd53347c04aee789ba5d632eda0c3fc421c4",
      "tree": "87050958ebdacb288dac2c1939e08149a0623b23",
      "parents": [
        "e27182088e607880713d9c286a3d92d861c280e4"
      ],
      "author": {
        "name": "Tim Mann",
        "email": "mann@vmware.com",
        "time": "Sun Nov 13 16:06:54 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] x86: fix cpu_khz with clock\u003dpit\n\nFix http://bugzilla.kernel.org/show_bug.cgi?id\u003d5546\n\nThe cpu_khz global is not initialized and remains 0 if you boot with\nclock\u003dpit, even if the processor does have a TSC.  This may have bad\nramifications since the variable is used in various places scattered around\nthe kernel, though I didn\u0027t check them all to see if they can tolerate cpu_khz\n\u003d 0.  You can observe the problem by doing \"cat /proc/cpuinfo\"; the cpu MHz\nline says 0.000.\n\nThe fix is trivial; call init_cpu_khz() from init_pit(), just as it\u0027s called\nfrom the timers/timer_foo.c:init_foo() for other values of foo.\n\nCc: john stultz \u003cjohnstul@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e27182088e607880713d9c286a3d92d861c280e4",
      "tree": "2d2f43b45e377c3bfe093c2c0ca037d930f20176",
      "parents": [
        "27d99f7ead8cd6d2231798bff0d4c38814afea22"
      ],
      "author": {
        "name": "Jan Beulich",
        "email": "JBeulich@novell.com",
        "time": "Sun Nov 13 16:06:52 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] i386: NMI pointer comparison fix\n\nInstruction pointer comparisons for the NMI on debug stack check/fixup\nwere incorrect.\n\nFrom: Jan Beulich \u003cjbeulich@novell.com\u003e\nCc: \"Eric W. Biederman\" \u003cebiederm@xmission.com\u003e\nCc: Zwane Mwaikambo \u003czwane@holomorphy.com\u003e\nAcked-by: \"Seth, Rohit\" \u003crohit.seth@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": "27d99f7ead8cd6d2231798bff0d4c38814afea22",
      "tree": "877a80b0183dc5eab275163f120cd18bb3d222c2",
      "parents": [
        "4694ca02d19f42f5fd0b62cc2d0c7d3e5a0eef47"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Sun Nov 13 16:06:51 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] arch/i386/mm/init.c: small cleanups\n\nThis patch contains the following cleanups:\n- make a needlessly global function static\n- every file should include the headers containing the prototypes for\n  it\u0027s global functions\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4694ca02d19f42f5fd0b62cc2d0c7d3e5a0eef47",
      "tree": "7277e5a8f66c0816b353a833fad097950736103f",
      "parents": [
        "647422868e48c9abd8ab85ad2a7de9161170ec89"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Sun Nov 13 16:06:50 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] powerpc-xmon-build-fix\n\narch/powerpc/xmon/xmon.c:525: error: syntax error before \"xmon_irq\"\narch/powerpc/xmon/xmon.c:526: warning: return type defaults to `int\u0027\narch/powerpc/xmon/xmon.c: In function `xmon_irq\u0027:\narch/powerpc/xmon/xmon.c:532: error: `IRQ_HANDLED\u0027 undeclared (first use in this function)\narch/powerpc/xmon/xmon.c:532: error: (Each undeclared identifier is reported only once\narch/powerpc/xmon/xmon.c:532: error: for each function it appears in.)\n\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "647422868e48c9abd8ab85ad2a7de9161170ec89",
      "tree": "8792808d399cf186e7906f04277b964b4e31ef2e",
      "parents": [
        "7fce260a6bf75080ef61408504add5618f90e41b"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Sun Nov 13 16:06:49 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] ppc32: Add support for handling PCI interrupts on MPC834x PCI expansion card\n\nThe MPC8349 PIBs system has a expansion board with 6 PCI slots.  We needed\nto update the IDSEL interrupt mapping for it to work properly.  However,\nonly PCI1 is supported as the first revision of this expansion board\ndoesn\u0027t function properly for PCI2.  For the time being we have zero\u0027d out\nthe entries for the IDSELs related to PCI2.  When a functioning expansion\nboard exists we can fix the table.\n\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7fce260a6bf75080ef61408504add5618f90e41b",
      "tree": "358032ca46888df92641bd32d0b88d5d2a1213d2",
      "parents": [
        "50c85a19e7b3928b5b5188524c44ffcbacdd4e35"
      ],
      "author": {
        "name": "Olof Johansson",
        "email": "olof@lixom.net",
        "time": "Sun Nov 13 16:06:48 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:13 2005 -0800"
      },
      "message": "[PATCH] ppc: add support for new powerbooks\n\nEnablement patch for the new PowerBooks (late 2005 edition).\n\nThis enables the ATA controller, Gigabit ethernet and basic AGP setup.\nBluetooth works out-of-the box after running hid2hci.\n\nStill remaining is to get the touchpad to work, the simple change of just\nadding the new USB ids isn\u0027t enough.\n\nSigned-off-by: Olof Johansson \u003colof@lixom.net\u003e\nAcked-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "50c85a19e7b3928b5b5188524c44ffcbacdd4e35",
      "tree": "a886792eba2e11615c3846bc6b1c77c41ce6dda0",
      "parents": [
        "065d41cb269e9debb18c6d5052e4de1088ae3d8f"
      ],
      "author": {
        "name": "Christoph Lameter",
        "email": "clameter@engr.sgi.com",
        "time": "Sun Nov 13 16:06:47 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:12 2005 -0800"
      },
      "message": "[PATCH] slab: remove alloc_pages() calls\n\nThe slab allocator never uses alloc_pages since kmem_getpages() is always\ncalled with a valid nodeid.  Remove the branch and the code from\nkmem_getpages()\n\nSigned-off-by: Christoph Lameter \u003cclameter@sgi.com\u003e\nCc: Manfred Spraul \u003cmanfred@colorfullife.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "065d41cb269e9debb18c6d5052e4de1088ae3d8f",
      "tree": "db3fbad420fc3dec144c76ecc51cc1d72e31aef9",
      "parents": [
        "669ed17521b9b78cdbeac8a53c30599aca9527ce"
      ],
      "author": {
        "name": "Pekka Enberg",
        "email": "penberg@cs.helsinki.fi",
        "time": "Sun Nov 13 16:06:46 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:12 2005 -0800"
      },
      "message": "[PATCH] slab: convert cache to page mapping macros\n\nThis patch converts object cache \u003c-\u003e page mapping macros to static inline\nfunctions to make the more explicit and readable.\n\nSigned-off-by: Pekka Enberg \u003cpenberg@cs.helsinki.fi\u003e\nCc: Manfred Spraul \u003cmanfred@colorfullife.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "669ed17521b9b78cdbeac8a53c30599aca9527ce",
      "tree": "9a4c037120b7a85943c37115be9f4a6eacb28874",
      "parents": [
        "2d6c666e8704cf06267f29a4fa3d2cf823469c38"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "nickpiggin@yahoo.com.au",
        "time": "Sun Nov 13 16:06:45 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:12 2005 -0800"
      },
      "message": "[PATCH] mm: highmem watermarks\n\nThe pages_high - pages_low and pages_low - pages_min deltas are the asynch\nreclaim watermarks.  As such, the should be in the same ratios as any other\nzone for highmem zones.  It is the pages_min - 0 delta which is the\nPF_MEMALLOC reserve, and this is the region that isn\u0027t very useful for\nhighmem.\n\nThis patch ensures highmem systems have similar characteristics as non highmem\nones with the same amount of memory, and also that highmem zones get similar\nreclaim pressures to other zones.\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": "2d6c666e8704cf06267f29a4fa3d2cf823469c38",
      "tree": "c53db43c6e936ae44f232ab5f04dfc6900230190",
      "parents": [
        "7fb1d9fca5c6e3b06773b69165a73f3fb786b8ee"
      ],
      "author": {
        "name": "Paul Jackson",
        "email": "pj@sgi.com",
        "time": "Sun Nov 13 16:06:44 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:12 2005 -0800"
      },
      "message": "[PATCH] mm: gfp_noreclaim cleanup\n\nRemove last remnant of the defunct early reclaim page logic, the no longer\nused __GFP_NORECLAIM flag bit.\n\nSigned-off-by: Paul Jackson \u003cpj@sgi.com\u003e\nAcked-by: Martin Hicks \u003cmort@bork.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7fb1d9fca5c6e3b06773b69165a73f3fb786b8ee",
      "tree": "21f8b7deeb8a7e1197edfccc610365a12d60322e",
      "parents": [
        "51c6f666fceb3184eeff045dad4432b602cd648e"
      ],
      "author": {
        "name": "Rohit Seth",
        "email": "rohit.seth@intel.com",
        "time": "Sun Nov 13 16:06:43 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:12 2005 -0800"
      },
      "message": "[PATCH] mm: __alloc_pages cleanup\n\nClean up of __alloc_pages.\n\nRestoration of previous behaviour, plus further cleanups by introducing an\n\u0027alloc_flags\u0027, removing the last of should_reclaim_zone.\n\nSigned-off-by: Rohit Seth \u003crohit.seth@intel.com\u003e\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": "51c6f666fceb3184eeff045dad4432b602cd648e",
      "tree": "33e29916e0fea872ba6f29eba698219a740b078f",
      "parents": [
        "885036d32f5d3c427c3e2b385b5a5503805e3e52"
      ],
      "author": {
        "name": "Robin Holt",
        "email": "holt@sgi.com",
        "time": "Sun Nov 13 16:06:42 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:12 2005 -0800"
      },
      "message": "[PATCH] mm: ZAP_BLOCK causes redundant work\n\nThe address based work estimate for unmapping (for lockbreak) is and always\nwas horribly inefficient for sparse mappings.  The problem is most simply\nexplained with an example:\n\nIf we find a pgd is clear, we still have to call into unmap_page_range\nPGDIR_SIZE / ZAP_BLOCK_SIZE times, each time checking the clear pgd, in\norder to progress the working address to the next pgd.\n\nThe fundamental way to solve the problem is to keep track of the end\naddress we\u0027ve processed and pass it back to the higher layers.\n\nFrom: Nick Piggin \u003cnpiggin@suse.de\u003e\n\n  Modification to completely get away from address based work estimate\n  and instead use an abstract count, with a very small cost for empty\n  entries as opposed to present pages.\n\n  On 2.6.14-git2, ppc64, and CONFIG_PREEMPT\u003dy, mapping and unmapping 1TB\n  of virtual address space takes 1.69s; with the following patch applied,\n  this operation can be done 1000 times in less than 0.01s\n\nFrom: Andrew Morton \u003cakpm@osdl.org\u003e\n\nWith CONFIG_HUTETLB_PAGE\u003dn:\n\nmm/memory.c: In function `unmap_vmas\u0027:\nmm/memory.c:779: warning: division by zero\n\nDue to\n\n\t\t\tzap_work -\u003d (end - start) /\n\t\t\t\t\t(HPAGE_SIZE / PAGE_SIZE);\n\nSo make the dummy HPAGE_SIZE non-zero\n\nSigned-off-by: Robin Holt \u003cholt@sgi.com\u003e\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nCc: Hugh Dickins \u003chugh@veritas.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "885036d32f5d3c427c3e2b385b5a5503805e3e52",
      "tree": "7f442b309a749d8cbe0f2ac5c38531eeff8bfcd8",
      "parents": [
        "d4d28dd4b12649d02a89d19e6bd12ab92a6fcd4e"
      ],
      "author": {
        "name": "Kirill Korotaev",
        "email": "dev@sw.ru",
        "time": "Sun Nov 13 16:06:41 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:12 2005 -0800"
      },
      "message": "[PATCH] mm: __GFP_NOFAIL fix\n\nIn __alloc_pages():\n\nif ((p-\u003eflags \u0026 (PF_MEMALLOC | PF_MEMDIE)) \u0026\u0026 !in_interrupt()) {\n         /* go through the zonelist yet again, ignoring mins */\n         for (i \u003d 0; zones[i] !\u003d NULL; i++) {\n                 struct zone *z \u003d zones[i];\n\n                 page \u003d buffered_rmqueue(z, order, gfp_mask);\n                 if (page) {\n                         zone_statistics(zonelist, z);\n                         goto got_pg;\n                 }\n         }\n         goto nopage;                \u003c\u003c\u003c\u003c HERE!!! FAIL...\n}\n\nkswapd (which has PF_MEMALLOC flag) can fail to allocate memory even when\nit allocates it with __GFP_NOFAIL flag.\n\nSigned-Off-By: Pavel Emelianov \u003cxemul@sw.ru\u003e\nSigned-Off-By: Denis Lunev \u003cden@sw.ru\u003e\nSigned-Off-By: Kirill Korotaev \u003cdev@sw.ru\u003e\nCc: Nick Piggin \u003cnickpiggin@yahoo.com.au\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d4d28dd4b12649d02a89d19e6bd12ab92a6fcd4e",
      "tree": "36701174ef8a7b17b28800d20b9eb05e183ea6af",
      "parents": [
        "5d1b8c9ef6edbe5feea1439c428b9388b8dec6f8"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Sun Nov 13 16:06:40 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:12 2005 -0800"
      },
      "message": "[PATCH] shpchp_hpc build fix\n\nMissing include.\n\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5d1b8c9ef6edbe5feea1439c428b9388b8dec6f8",
      "tree": "da1c89491451ccde135b489f3803ed9080425e06",
      "parents": [
        "afdd3b3c8ee63c662bafc9194c182610b254c59b"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Sun Nov 13 16:06:39 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:11 2005 -0800"
      },
      "message": "[PATCH] pciehp_hpc build fix\n\ndrivers/pci/hotplug/pciehp_hpc.c:221: parse error before \"pcie_isr\"\ndrivers/pci/hotplug/pciehp_hpc.c:221: warning: type defaults to `int\u0027 in declaration of `pcie_isr\u0027\ndrivers/pci/hotplug/pciehp_hpc.c:221: warning: data definition has no type or storage class\ndrivers/pci/hotplug/pciehp_hpc.c: In function `hpc_release_ctlr\u0027:\ndrivers/pci/hotplug/pciehp_hpc.c:715: implicit declaration of function `free_irq\u0027\ndrivers/pci/hotplug/pciehp_hpc.c: At top level:\ndrivers/pci/hotplug/pciehp_hpc.c:839: parse error before \"pcie_isr\"\ndrivers/pci/hotplug/pciehp_hpc.c:840: warning: return type defaults to `int\u0027\ndrivers/pci/hotplug/pciehp_hpc.c: In function `pcie_isr\u0027:\ndrivers/pci/hotplug/pciehp_hpc.c:850: `IRQ_NONE\u0027 undeclared (first use in this function)\ndrivers/pci/hotplug/pciehp_hpc.c:850: (Each undeclared identifier is reported only once\ndrivers/pci/hotplug/pciehp_hpc.c:850: for each function it appears in.)\ndrivers/pci/hotplug/pciehp_hpc.c:979: `IRQ_HANDLED\u0027 undeclared (first use in this function)\ndrivers/pci/hotplug/pciehp_hpc.c: In function `pcie_init\u0027:\ndrivers/pci/hotplug/pciehp_hpc.c:1362: implicit declaration of function `request_irq\u0027\n\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "afdd3b3c8ee63c662bafc9194c182610b254c59b",
      "tree": "727bdffb6e06ac0af28219d78c6f5e0a020962e9",
      "parents": [
        "ae7642bb05623988d8ca82b332dad1ed7bdb8ceb"
      ],
      "author": {
        "name": "Richard Purdie",
        "email": "rpurdie@rpsys.net",
        "time": "Sun Nov 13 16:06:38 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:11 2005 -0800"
      },
      "message": "[PATCH] w100fb: platform device conversion fixup\n\nFix an error in w100fb after the platform device conversion.\n\nSigned-off-by: Richard Purdie \u003crpurdie@rpsys.net\u003e\nCc: \"Antonino A. Daplas\" \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ae7642bb05623988d8ca82b332dad1ed7bdb8ceb",
      "tree": "43c1c2f9c8144f8c8ac2974f878fdc448693c4f5",
      "parents": [
        "5563e77078d85c4f107a0a673500c43ce57cf702"
      ],
      "author": {
        "name": "Peter Osterlund",
        "email": "petero2@telia.com",
        "time": "Sun Nov 13 16:06:36 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:11 2005 -0800"
      },
      "message": "[PATCH] packet writing oops fix\n\nThere is an old bug in the pkt_count_states() function that causes stack\ncorruption.  When compiling with gcc 3.x or 2.x it is harmless, but gcc 4\nallocates local variables differently, which makes the bug visible.\n\nSigned-off-by: Peter Osterlund \u003cpetero2@telia.com\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5563e77078d85c4f107a0a673500c43ce57cf702",
      "tree": "b9cacaa2f6ad595d6ade9e69f8a84d7c9b063048",
      "parents": [
        "3c8d61bcf2d762fb84dbf741df400c833cada18a"
      ],
      "author": {
        "name": "Bob Picco",
        "email": "bob.picco@hp.com",
        "time": "Sun Nov 13 16:06:35 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:11 2005 -0800"
      },
      "message": "[PATCH] cpuset: fix return without releasing semaphore\n\nIt is wrong to acquire the semaphore and then return from\ncpuset_zone_allowed without releasing it.\n\nSigned-off-by: Bob Picco \u003cbob.picco@hp.com\u003e\nAcked-by: Paul Jackson \u003cpj@sgi.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3c8d61bcf2d762fb84dbf741df400c833cada18a",
      "tree": "f09533e1da3af9d06cae0b2358d52f20a0e8b5e6",
      "parents": [
        "89a071b80767c3a7ed56e13ae5e810f751b19eeb"
      ],
      "author": {
        "name": "Antonino A. Daplas",
        "email": "adaplas@gmail.com",
        "time": "Sun Nov 13 16:06:34 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:11 2005 -0800"
      },
      "message": "[PATCH] nvidiafb: Fix bug in nvidiafb_pan_display\n\nnvidiafb_pan_display() is incorrectly using the fields in info-\u003evar instead\nof var passed to the function.\n\nSigned-off-by: Antonino Daplas \u003cadaplas@pol.net\u003e\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "89a071b80767c3a7ed56e13ae5e810f751b19eeb",
      "tree": "22fb64641f13926ac2b66bc7078b3a280b6dca03",
      "parents": [
        "005f18dfd0ed86c39716277b61dfb4bd2af91059"
      ],
      "author": {
        "name": "akpm@osdl.org",
        "email": "akpm@osdl.org",
        "time": "Sun Nov 13 16:06:33 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:11 2005 -0800"
      },
      "message": "[PATCH] rpaphp_pci build fix\n\n(akpm: _machine is some ppc64 thing - this is a powerpc-only driver)\n\nSigned-off-by: Serge Hallyn \u003cserue@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "005f18dfd0ed86c39716277b61dfb4bd2af91059",
      "tree": "8425228dc52bb38a5fe85d52afaecacca2f3a6fd",
      "parents": [
        "ab767201881fec073157986c314485ab26caa4a0"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@lst.de",
        "time": "Sun Nov 13 16:06:33 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:11 2005 -0800"
      },
      "message": "[PATCH] fix task_struct leak in ptrace\n\nWhen ptrace_attach fails we need to drop the task_struct reference.\n\nSigned-off-by: Christoph Hellwig \u003chch@lst.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ab767201881fec073157986c314485ab26caa4a0",
      "tree": "55620e21ee2f04193ed7f4a0da3a8a9e1fd6697a",
      "parents": [
        "c53ca784dc3e72a17dc210bee0361e13ad83d4cd"
      ],
      "author": {
        "name": "Antonino A. Daplas",
        "email": "adaplas@gmail.com",
        "time": "Sun Nov 13 16:06:32 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] fbdev: fix module dependency loop\n\nExporting struct fb_display produces this warning error on depmod:\n\nWARNING: Module\n/lib/modules/2.6.14-mm2/kernel/drivers/video/console/fbcon_ud.ko\nignored, due to loop\nWARNING: Module\n/lib/modules/2.6.14-mm2/kernel/drivers/video/console/fbcon_rotate.ko\nignored, due to loop\nWARNING: Module\n/lib/modules/2.6.14-mm2/kernel/drivers/video/console/fbcon_cw.ko\nignored, due to loop\nWARNING: Module\n/lib/modules/2.6.14-mm2/kernel/drivers/video/console/fbcon_ccw.ko\nignored, due to loop\nWARNING: Module\n/lib/modules/2.6.14-mm2/kernel/drivers/video/console/fbcon.ko ignored,\ndue to loop\nWARNING: Loop detected:\n/lib/modules/2.6.14-mm2/kernel/drivers/video/console/bitblit.ko needs\n\nSigned-off-by: Antonino Daplas \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c53ca784dc3e72a17dc210bee0361e13ad83d4cd",
      "tree": "287609492338e589c0abd584ed6b6488ef65c0ed",
      "parents": [
        "4c8d3d997ef3c0594350fba716529905b314287e"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Sun Nov 13 16:06:31 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] nv_of.c build fix\n\ndrivers/video/nvidia/nv_of.c:33: error: redefinition of `nvidia_probe_of_connector\u0027\ndrivers/video/nvidia/nv_proto.h:51: error: `nvidia_probe_of_connector\u0027 previously defined here\n\nBecause the inline version depends on !CONFIG_FB_OF and the out-of-line\nversion depends on CONFIG_PPC_OF.\n\nBen said: \"Yes, CONFIG_PPC_OF is the right one, must be a typo.\"\n\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nC: \"Antonino A. Daplas\" \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4c8d3d997ef3c0594350fba716529905b314287e",
      "tree": "8439efcf2aa645a0e9bebd9e40d138c95d279671",
      "parents": [
        "c1986ee9bea3d880bcf0d3f1a31e055778f306c7"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Sun Nov 13 16:06:30 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] Update email address for Kumar\n\nChanged jobs and the Freescale address is no longer valid.\n\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c1986ee9bea3d880bcf0d3f1a31e055778f306c7",
      "tree": "3263955bb33dd3efa0a34aaae5f160c2598a4706",
      "parents": [
        "77c44ab1d8e9da31bf927223e1579b44f772b579"
      ],
      "author": {
        "name": "Harald Welte",
        "email": "laforge@gnumonks.org",
        "time": "Sun Nov 13 16:06:29 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] New Omnikey Cardman 4000 driver\n\nAdd new Omnikey Cardman 4000 smartcard reader driver\n\nSigned-off-by: Harald Welte \u003claforge@gnumonks.org\u003e\nCc: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "77c44ab1d8e9da31bf927223e1579b44f772b579",
      "tree": "41d3ca7805c13e8f7b1c0f4d9f2c6e4e5f8b09c5",
      "parents": [
        "bca73e4bf8563d83f7856164caa44d5f42e44cca"
      ],
      "author": {
        "name": "Harald Welte",
        "email": "laforge@gnumonks.org",
        "time": "Sun Nov 13 16:06:26 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] New Omnikey Cardman 4040 driver\n\nAdd new Omnikey Cardman 4040 smartcard reader driver\n\nSigned-off-by: Harald Welte \u003claforge@gnumonks.org\u003e\nCc: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bca73e4bf8563d83f7856164caa44d5f42e44cca",
      "tree": "ea8c50adca509c8012aed715d578b6c927f9e284",
      "parents": [
        "95e861db3eaba7bc99f8605db70103ec3d078203"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Nov 13 16:06:25 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] move pm_register/etc. to CONFIG_PM_LEGACY, pm_legacy.h\n\nSince few people need the support anymore, this moves the legacy\npm_xxx functions to CONFIG_PM_LEGACY, and include/linux/pm_legacy.h.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "95e861db3eaba7bc99f8605db70103ec3d078203",
      "tree": "70f86b1acf1c8b1fb49f8bd11aaf5d81c39d0e97",
      "parents": [
        "d6c7ac081bf6cafcf780b919ee97978f1d01a0d7"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "dada1@cosmosbay.com",
        "time": "Sun Nov 13 16:06:24 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] reorder struct files_struct\n\nThe file_lock spinlock sits close to mostly read fields of \u0027struct\nfiles_struct\u0027\n\nIn SMP (and NUMA) environments, each time a thread wants to open or close\na file, it has to acquire the spinlock, thus invalidating the cache line\ncontaining this spinlock on other CPUS.  So other threads doing\nread()/write()/...  calls that use RCU to access the file table are going\nto ask further memory (possibly NUMA) transactions to read again this\nmemory line.\n\nMove the spinlock to another cache line, so that concurrent threads can\nshare the cache line containing \u0027count\u0027 and \u0027fdt\u0027 fields.\n\nIt\u0027s worth up to 9% on a microbenchmark using a 4-thread 2-package x86\nmachine.  See\nhttp://marc.theaimsgroup.com/?l\u003dlinux-kernel\u0026m\u003d112680448713342\u0026w\u003d2\n\nSigned-off-by: Eric Dumazet \u003cdada1@cosmosbay.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d6c7ac081bf6cafcf780b919ee97978f1d01a0d7",
      "tree": "ad8fb06018e2f89ae81e6bdc4b38f75aa546d379",
      "parents": [
        "47936357c0d14809c3c9547e532511f6625654b2"
      ],
      "author": {
        "name": "Karsten Wiese",
        "email": "annabellesgarden@yahoo.de",
        "time": "Sun Nov 13 16:06:22 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] x86_64 two timer entries in /sys\n\nattached patch renames one instance of\n\t/sys/devices/system/timer\nto\n\t/sys/devices/system/timer_pit\nto avoid a name clash with another instance created in time.c.\n\nAcked-by: Andi Kleen \u003cak@muc.de\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "47936357c0d14809c3c9547e532511f6625654b2",
      "tree": "a0b05cdc13fa9192ed9d167b5597eafab998ffaf",
      "parents": [
        "4ba529a8a39e15688b6a3d31b11930d1f8a1edad"
      ],
      "author": {
        "name": "Siddha, Suresh B",
        "email": "suresh.b.siddha@intel.com",
        "time": "Sun Nov 13 16:06:21 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:09 2005 -0800"
      },
      "message": "[PATCH] x86_64: fix tss limit\n\nFix the x86_64 TSS limit in TSS descriptor.\n\nSigned-off-by: Suresh Siddha \u003csuresh.b.siddha@intel.com\u003e\nAcked-by: 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": "4ba529a8a39e15688b6a3d31b11930d1f8a1edad",
      "tree": "4a57f09fd8b96f1eb5f87f52fd0862db49f29e31",
      "parents": [
        "41866a56cc4e676240b94ed8eaeca375aaef7496",
        "dcc2d1e7f0acf7d3f7ae632a73cd5f828ef9de20"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 13:45:00 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 13:45:00 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev\n"
    },
    {
      "commit": "dcc2d1e7f0acf7d3f7ae632a73cd5f828ef9de20",
      "tree": "f1c557e34750a76b0e6489c6a0638709d8ff48a7",
      "parents": [
        "e12a1be6e8fa47ae6cdc4127a1b4640e19c288eb"
      ],
      "author": {
        "name": "Mark Lord",
        "email": "mlord@pobox.com",
        "time": "Sun Nov 13 16:22:06 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Nov 13 16:22:06 2005 -0500"
      },
      "message": "[libata passthru] address slave devices correctly\n"
    },
    {
      "commit": "e12a1be6e8fa47ae6cdc4127a1b4640e19c288eb",
      "tree": "a92513a9fe7c3023961e537888a620cf7525c68d",
      "parents": [
        "e9c05afa80ba9368ec5f78d493b17a8f836ef508"
      ],
      "author": {
        "name": "Mark Lord",
        "email": "liml@rtr.ca",
        "time": "Sat Nov 12 18:55:45 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Nov 13 16:19:26 2005 -0500"
      },
      "message": "[PATCH] libata: fix comments on ata_tf_from_fis()\n\nFix description on comments for ata_tf_from_fis().\n\nSigned-off-by: Mark Lord \u003cmlord@pobox.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "41866a56cc4e676240b94ed8eaeca375aaef7496",
      "tree": "c389af72c041d4f105654ed28aacc6e582cb79e5",
      "parents": [
        "f3a9388e4ebea57583272007311fffa26ebbb305",
        "5b9d1f19a7d6f13a97ac3eea9a1caea011ebd0ae"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 12:30:14 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 12:30:14 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/tglx/mtd-2.6\n"
    },
    {
      "commit": "5b9d1f19a7d6f13a97ac3eea9a1caea011ebd0ae",
      "tree": "8cb9166cee468317077382318de2ca8d43eab369",
      "parents": [
        "ef63d0049a28008c133e83743681c66e8b0872be"
      ],
      "author": {
        "name": "Thomas Gleixner",
        "email": "tglx@mtd.linutronix.de",
        "time": "Sun Nov 13 19:33:24 2005 +0100"
      },
      "committer": {
        "name": "Thomas Gleixner",
        "email": "tglx@mtd.linutronix.de",
        "time": "Sun Nov 13 19:33:24 2005 +0100"
      },
      "message": "[JFFS2] Remove broken and useless debug code\n\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "ef63d0049a28008c133e83743681c66e8b0872be",
      "tree": "fc8aedc24d043e8e71c81fda615fbd1ab7457ace",
      "parents": [
        "9e6c67fd2716720d9029d38ea25884efcfdedeb6"
      ],
      "author": {
        "name": "Sean Young",
        "email": "sean@mess.org",
        "time": "Wed Nov 09 00:12:50 2005 +0000"
      },
      "committer": {
        "name": "Thomas Gleixner",
        "email": "tglx@mtd.linutronix.de",
        "time": "Sun Nov 13 19:30:44 2005 +0100"
      },
      "message": "[MTD] maps: Replace dependency on non existing config option\n\nCONFIG_ELAN doesn\u0027t exist any more; CONFIG_X86_ELAN is too specific\nso make ts-5500 memory map dependant on CONFIG_X86.\n\nSigned-off-by: Sean Young \u003csean@mess.org\u003e\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n"
    },
    {
      "commit": "f3a9388e4ebea57583272007311fffa26ebbb305",
      "tree": "c37a25e923505c9a62855b1e0ef822f7231e1a5a",
      "parents": [
        "dc15ae14e97ee9d5ed740cbb0b94996076d8b37e"
      ],
      "author": {
        "name": "Chris Wright",
        "email": "chrisw@osdl.org",
        "time": "Fri Nov 11 17:20:14 2005 -0800"
      },
      "committer": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Sun Nov 13 12:29:58 2005 -0500"
      },
      "message": "[PATCH] VFS: local denial-of-service with file leases\n\n Remove time_out_leases() printk that\u0027s easily triggered by users.\n\n Signed-off-by: Chris Wright \u003cchrisw@osdl.org\u003e\n Signed-off-by: Trond Myklebust \u003cTrond.Myklebust@netapp.com\u003e\n"
    },
    {
      "commit": "dc15ae14e97ee9d5ed740cbb0b94996076d8b37e",
      "tree": "a159edc76dedf81d73f17d844fbf965d5ded9f39",
      "parents": [
        "9e6c67fd2716720d9029d38ea25884efcfdedeb6"
      ],
      "author": {
        "name": "J. Bruce Fields",
        "email": "bfields@fieldses.org",
        "time": "Thu Nov 10 19:08:00 2005 -0500"
      },
      "committer": {
        "name": "Trond Myklebust",
        "email": "Trond.Myklebust@netapp.com",
        "time": "Sun Nov 13 12:29:54 2005 -0500"
      },
      "message": "[PATCH] VFS: Fix memory leak with file leases\n\n The patch\n http://linux.bkbits.net:8080/linux-2.6/diffs/fs/locks.c@1.70??nav\u003dindex.html\n introduced a pretty nasty memory leak in the lease code. When freeing\n the lease, the code in locks_delete_lock() will correctly clean up\n the fasync queue, but when we return to fcntl_setlease(), the freed\n fasync entry will be reinstated.\n\n This patch ensures that we skip the call to fasync_helper() when we\u0027re\n freeing up the lease.\n\n Signed-off-by: J. Bruce Fields \u003cbfields@fieldses.org\u003e\n Signed-off-by: Trond Myklebust \u003cTrond.Myklebust@netapp.com\u003e\n"
    },
    {
      "commit": "e9c05afa80ba9368ec5f78d493b17a8f836ef508",
      "tree": "294ea4be14e6ad608d5e354d81605514858ca600",
      "parents": [
        "9e6c67fd2716720d9029d38ea25884efcfdedeb6"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Mon Nov 14 00:24:18 2005 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Nov 13 10:31:43 2005 -0500"
      },
      "message": "[PATCH] sil24: add missing ata_pad_free()\n\nsil24_port_stop() is missing call to ata_pad_free() thus leaking pad\nbuffer when a port is stopped.  This patch adds it.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "9e6c67fd2716720d9029d38ea25884efcfdedeb6",
      "tree": "590d07900b52f148036fd99e1313a222b52cca51",
      "parents": [
        "8225ccbaf01b459cf1e462047a51b2851e756bc1",
        "9ffb83bcc5c5337f980dc0576bf13ac9bd4fd33d"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 12 12:23:25 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 12 12:23:25 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6\n"
    },
    {
      "commit": "8225ccbaf01b459cf1e462047a51b2851e756bc1",
      "tree": "a8949f6a3596a77370b5a698ff927674b830b511",
      "parents": [
        "a2d7222f0f5861ce13b9308c30bd18f28ebeb583"
      ],
      "author": {
        "name": "Thomas Graf",
        "email": "tgraf@suug.ch",
        "time": "Sat Nov 12 12:15:16 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Nov 12 12:15:16 2005 -0800"
      },
      "message": "[IPV6]: Fix unnecessary GFP_ATOMIC allocation in fib6 dump\n\nSigned-off-by: Thomas Graf \u003ctgraf@suug.ch\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "a2d7222f0f5861ce13b9308c30bd18f28ebeb583",
      "tree": "09d4dafe35b9cd4de344c4a8a63ef7d922466c2a",
      "parents": [
        "efacfbcb6c88677809f44a574fbcd9824835dccb"
      ],
      "author": {
        "name": "Vlad Drukker",
        "email": "vlad@storewiz.com",
        "time": "Sat Nov 12 12:13:14 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Nov 12 12:13:14 2005 -0800"
      },
      "message": "[NETFILTER] {ip,nf}_conntrack TCP: Accept SYN+PUSH like SYN\n\nSome devices (e.g. Qlogic iSCSI HBA hardware like QLA4010 up to firmware\n3.0.0.4) initiates TCP with SYN and PUSH flags set.\n\nThe Linux TCP/IP stack deals fine with that, but the connection tracking\ncode doesn\u0027t.\n\nThis patch alters TCP connection tracking to accept SYN+PUSH as a valid\nflag combination.\n\nSigned-off-by: Vlad Drukker \u003cvlad@storewiz.com\u003e\nSigned-off-by: Harald Welte \u003claforge@netfilter.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "efacfbcb6c88677809f44a574fbcd9824835dccb",
      "tree": "6fea7fcaf7c979a0be6c370c3bb99736753e4ada",
      "parents": [
        "4f005551a8fac21b6fec8d10d57cd12d373d79e1"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Sat Nov 12 12:12:05 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Nov 12 12:12:05 2005 -0800"
      },
      "message": "[IPV6]: Fix rtnetlink dump infinite loop\n\nThe recent change to netlink dump \"done\" callback handling broke IPv6\nwhich played dirty tricks with the \"done\" callback.  This causes an\ninfinite loop during a dump.\n\nThe following patch fixes it.\n\nThis bug was reported by Jeff Garzik.\n\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "9ffb83bcc5c5337f980dc0576bf13ac9bd4fd33d",
      "tree": "51d71d16b65077943284408cd80b290f8c6596df",
      "parents": [
        "535f8d65d808421a6e1730990e39d41885b1f951"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@lst.de",
        "time": "Sat Nov 12 12:11:12 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Nov 12 12:11:12 2005 -0800"
      },
      "message": "[SBUSFB]: implement -\u003ecompat_ioctl\n\nThis patch adds a new function, sbusfb_compat_ioctl() to\ndrivers/video/sbuslib.c and uses it as compat_ioctl in all sbus fb\ndrivers\n\nThis remove the last per-arch compat ioctl bits in\narch/sparc64/kernel/ioctl32.c so it would be nice if people could test\nif this actually copiles and works and if yes apply it :)\n\nSigned-off-by: Christoph Hellwig \u003chch@lst.de\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "535f8d65d808421a6e1730990e39d41885b1f951",
      "tree": "abfa0474dc3442e0584a8173cc6a5b1969556cb1",
      "parents": [
        "4f005551a8fac21b6fec8d10d57cd12d373d79e1"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@lst.de",
        "time": "Sat Nov 12 12:10:54 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Nov 12 12:10:54 2005 -0800"
      },
      "message": "[SPARC]: Fix RTC compat ioctl kernel log spam.\n\nOn Fri, Nov 11, 2005 at 12:58:40PM -0800, David S. Miller wrote:\n\u003e \n\u003e This change:\n\u003e \n\u003e diff-tree 8ca2bdc7a98b9584ac5f640761501405154171c7 (from feee207e44d3643d19e648aAuthor: Christoph Hellwig \u003chch@lst.de\u003e\n\u003e Date:   Wed Nov 9 12:07:18 2005 -0800\n\u003e \n\u003e     [SPARC] sbus rtc: implement -\u003ecompat_ioctl\n\u003e     \n\u003e     Signed-off-by: Christoph Hellwig \u003chch@lst.de\u003e\n\u003e     Signed-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n\u003e \n\u003e results in the console now getting spewed on sparc64 systems\n\u003e with messages like:\n\u003e \n\u003e [   11.968298] ioctl32(hwclock:464): Unknown cmd fd(3) cmd(401c7014){00} arg(efc\n\u003e What\u0027s happening is hwclock tries first the SBUS rtc device ioctls\n\u003e then the normal rtc driver ones.\n\u003e \n\u003e So things actually worked better when we had the SBUS rtc compat ioctl\n\u003e directly handled via the generic compat ioctl code.\n\u003e \n\u003e There are _so_ many rtc drivers in the kernel implementing the\n\u003e generic rtc ioctls that I don\u0027t think putting a -\u003ecompat_ioctl\n\u003e into all of them to fix this problem is feasible.  Unless we\n\u003e write a single rtc_compat_ioctl(), export it to modules, and hook\n\u003e it into all of those somehow.\n\u003e \n\u003e But even that doesn\u0027t appear to have any pretty implementation.\n\u003e \n\u003e Any better ideas?\n\nWe had similar problems with other ioctls where userspace did things\nlike that.  What we did there was to put the compat handler to generic\ncode.  The patch below does that, adding a big comment about what\u0027s\ngoing on and removing the COMPAT_IOCTL entires for these on powerpc\nthat not only weren\u0027t ever useful but are duplicated now aswell.\n\nSigned-off-by: Christoph Hellwig \u003chch@lst.de\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "4f005551a8fac21b6fec8d10d57cd12d373d79e1",
      "tree": "da64987344a6d30a80a3bb8fe559ba42951d43b4",
      "parents": [
        "44e6f84e3597905816a0440e7218d2ed072120da"
      ],
      "author": {
        "name": "Dmitry Torokhov",
        "email": "dtor_core@ameritech.net",
        "time": "Sat Nov 12 00:55:15 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 12 11:42:32 2005 -0800"
      },
      "message": "[PATCH] I8K: fix /proc reporting of blank service tags\n\nMake /proc/i8k display \u0027?\u0027 when service tag is blank in BIOS.\nThis fixes segfault in i8k gkrellm plugin.\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "44e6f84e3597905816a0440e7218d2ed072120da",
      "tree": "cc39924c84f2b2fb4412af5786c304d93ace2824",
      "parents": [
        "ae5684ceb478bfbb7c3c5a49970e20f4701dbdf7"
      ],
      "author": {
        "name": "Prakash Punnoor",
        "email": "prakash@punnoor.de",
        "time": "Sat Nov 12 09:17:38 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 12 10:52:30 2005 -0800"
      },
      "message": "[PATCH] fix b2c2 dvb undefined symbol\n\nThis fixes\n\n  drivers/built-in.o: In function `flexcop_frontend_init\u0027:\n  : undefined reference to `lgdt330x_attach\u0027\n\n[ Side note: I really dislike that dvb people want to include every\n  possible frontend into the kernel - I only need the mt312 one for my\n  Skystar2 card.  I\u0027d highly appreciate it this would be made selectable\n  again... ]\n\nSigned-off-by: Prakash Punnoor \u003cprakash@punnoor.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ae5684ceb478bfbb7c3c5a49970e20f4701dbdf7",
      "tree": "75a3fb196cc0c6d345fefcd49d304eb13d77a4ac",
      "parents": [
        "0fde7f591860e48dd210144ff24c061da03bfa39",
        "02eaa66629a29cd5712fe81a360c3ab5b1fc9531"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 12 10:39:03 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 12 10:39:03 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev\n"
    },
    {
      "commit": "0fde7f591860e48dd210144ff24c061da03bfa39",
      "tree": "b91c008b335a8fb252c636fd9ebc95f948556174",
      "parents": [
        "3beb2077125d8457118140653e75efc998ac6630"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 12 10:14:02 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 12 10:14:02 2005 -0800"
      },
      "message": "Revert \"[PATCH] fbcon: Add rl (Roman Large) font\"\n\nThis reverts 998e6d51162707685336ff99c029c8911b270d32 commit.\n"
    },
    {
      "commit": "3beb2077125d8457118140653e75efc998ac6630",
      "tree": "130dd33c810471790554d21eab32f5f859715fd7",
      "parents": [
        "5a7c47eefb31f6b4982add7473ef3e551b058ea4"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Thu Nov 10 18:22:36 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:57:05 2005 +0100"
      },
      "message": "[BLOCK] elevator: elv_latter/former_request update\n\nWith generic dispatch queue update, implicit former/latter request\nhandling using rq-\u003equeuelist.prev/next doesn\u0027t work as expected\nanymore.  Also, the only iosched dependent on this feature was\nnoop-iosched and it has been reimplemented to have its own\nlatter/former methods.  This patch removes implicit former/latter\nhandling.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "5a7c47eefb31f6b4982add7473ef3e551b058ea4",
      "tree": "6bff2f1ab58080d759c8788680e05359ba0d5f69",
      "parents": [
        "b740d98f5614e34b4cff2e1e67826f007c8d4f30"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Thu Nov 10 18:21:30 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:56:52 2005 +0100"
      },
      "message": "[BLOCK] noop-iosched: reimplementation of request dispatching\n\nThe original implementation directly used dispatch queue.  As new\ngeneric dispatch queue imposes stricter rules over ioscheds and\ndispatch queue usage, this direct use becomes somewhat problematic.\nThis patch reimplements noop-iosched such that it complies to generic\niosched model better.  Request merging with q-\u003elast_merge and\nrq-\u003equeuelist.prev/next work again now.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\n"
    },
    {
      "commit": "b740d98f5614e34b4cff2e1e67826f007c8d4f30",
      "tree": "50ff24c84b2ecfc2e8e518b1d9aecf3be2bc8ec5",
      "parents": [
        "be56123568072d223263a6a70a087d1e7faabb83"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Thu Nov 10 18:20:16 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:56:36 2005 +0100"
      },
      "message": "[BLOCK] cfq-iosched: fix slice_left calculation\n\nWhen cfq slice expires, remainder of slice is calculated and stored in\ncfqq-\u003eslice_left.  Current code calculates the opposite of remainder -\nhow many jiffies the cfqq has used past slice end.  This patch fixes\nthe bug.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "be56123568072d223263a6a70a087d1e7faabb83",
      "tree": "e6044bff3c9dba3392dfe1a4b172d87081d55334",
      "parents": [
        "15853af9f07673680439b224519c692f1352b959"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Thu Nov 10 08:55:01 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:56:21 2005 +0100"
      },
      "message": "[BLOCK] fix string handling in elv_iosched_store\n\nelv_iosched_store doesn\u0027t terminate string passed from userspace if\nit\u0027s too long.  Also, if the written length is zero (probably not\npossible), it accesses elevator_name[-1].  This patch fixes both bugs.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "15853af9f07673680439b224519c692f1352b959",
      "tree": "e6a8fc1cd34dec568883cd62102e1e626d9241d9",
      "parents": [
        "1b5ed5e1f1315e37380e55102f58bcae3344d2a7"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Thu Nov 10 08:52:05 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:56:06 2005 +0100"
      },
      "message": "[BLOCK] Implement elv_drain_elevator for improved switch error detection\n\nThis patch adds request_queue-\u003enr_sorted which keeps the number of\nrequests in the iosched and implement elv_drain_elevator which\nperforms forced dispatching.  elv_drain_elevator checks whether\niosched actually dispatches all requests it has and prints error\nmessage if it doesn\u0027t.  As buggy forced dispatching can result in\nwrong barrier operations, I think this extra check is worthwhile.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "1b5ed5e1f1315e37380e55102f58bcae3344d2a7",
      "tree": "785dc9675e2f22b60017030063ba103740c72f16",
      "parents": [
        "407df2aa29a33fe16f6ee4bac8cdfa414783b9f1"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Thu Nov 10 08:49:19 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:55:51 2005 +0100"
      },
      "message": "[BLOCK] cfq-iosched: cfq forced dispatching fix\n\ncfq forced dispatching might not return all requests on the queue.\nThis bug can hang elevator switchinig and corrupt request ordering\nduring flush sequence.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "407df2aa29a33fe16f6ee4bac8cdfa414783b9f1",
      "tree": "137e536d79e9fc777adc8c5bde842fea8b53d88a",
      "parents": [
        "47a004103d663bbba8c7c433a710a86f44351cf3"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Thu Nov 10 08:48:21 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:55:37 2005 +0100"
      },
      "message": "[BLOCK] elevator: run queue in elevator_switch\n\nelevator_dispatch needs to run queue after forced dispatching;\notherwise, the queue might stall.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "47a004103d663bbba8c7c433a710a86f44351cf3",
      "tree": "91bf9479fa43e7a13b02b2f6b957373b5b28b5ef",
      "parents": [
        "cff3ba2204a0797b05150a4b2b7f40a55023d952"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "axboe@suse.de",
        "time": "Wed Nov 09 13:38:47 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:55:21 2005 +0100"
      },
      "message": "[BLOCK] Document the READ/WRITE splitup of the disk stats\n\nUse the symbolic name where appropriate and add a comment to the\ndisk_stats structure.\n\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "cff3ba2204a0797b05150a4b2b7f40a55023d952",
      "tree": "56d3527958ec1aee1f2c0b185134883095175012",
      "parents": [
        "b8ea2cb5120a92fe63053a2896be42abbb919a76"
      ],
      "author": {
        "name": "Zachary Amsden",
        "email": "zach@vmware.com",
        "time": "Wed Nov 09 13:24:20 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:55:05 2005 +0100"
      },
      "message": "[BLOCK] elevator init fixes #2\n\nIn addition to the first patch, which is probably goodness, I found the\ncause of my panic - applying this patch fixes it and now I am booting.\nIf the chosen_elevator[] is not found, fall back to noop.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "b8ea2cb5120a92fe63053a2896be42abbb919a76",
      "tree": "edbe103c6c5c2fe971ee270d8b0e3ae7dab8af83",
      "parents": [
        "cd52d1ee9a92587b242d946a2300a3245d3b885a"
      ],
      "author": {
        "name": "Zachary Amsden",
        "email": "zach@vmware.com",
        "time": "Wed Nov 09 13:23:01 2005 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@nelson.home.kernel.dk",
        "time": "Sat Nov 12 10:54:48 2005 +0100"
      },
      "message": "[BLOCK] elevator init fixes\n\nI got a panic in the elevator code, backtrace :\n\nUnable to handle kernel NULL pointer dereference at virtual address 00000060\n..\nEIP is at elevator_put+0x0/0x30 (null elevator_type passed)\n..\nelevator_init+0x38\nblk_init_queu_node+0xc9\nfloppy_init+0xdb\ndo_initcalls+0x23\ninit+0x10a\ninit+0x0\n\nClearly if the kmalloc here fails, e-\u003eelevator_type is not yet set; this\nappears to be the correct fix, but I think I probably hit the second case\ndue to a race condition.  Someone more familiar with the elevator code\nshould look at this more closely until I can determine if I can reproduce.\n\nSigned-off-by: Zachary Amsden \u003czach@vmware.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "02eaa66629a29cd5712fe81a360c3ab5b1fc9531",
      "tree": "3223957cc38c553155b80435d946f828ecb38f6b",
      "parents": [
        "828d09de4a6c922517f533093583b9fe8cbf5808"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Nov 12 01:32:19 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Nov 12 01:32:19 2005 -0500"
      },
      "message": "[libata ahci] set port ATAPI bit correctly\n\nAlthough according to the documentation this largely only affects\ndesktop LED control, let\u0027s make sure we set the ATAPI bit when we\nhave an ATAPI device attached to the port.\n"
    },
    {
      "commit": "828d09de4a6c922517f533093583b9fe8cbf5808",
      "tree": "44ceae8c3ead9f534a0c31b03038dc253658ad9c",
      "parents": [
        "cd52d1ee9a92587b242d946a2300a3245d3b885a"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Nov 12 01:27:07 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Nov 12 01:27:07 2005 -0500"
      },
      "message": "[libata ahci, qstor] fix miscount of scatter/gather entries\n\nDon\u0027t directly reference qc-\u003en_elem, as that might cause an off-by-one\nerror for misaligned (padded) ATAPI transfers.\n"
    },
    {
      "commit": "cd52d1ee9a92587b242d946a2300a3245d3b885a",
      "tree": "2327eb4ca9f4884e8e3817060e8128063a1b9c35",
      "parents": [
        "508862e493f1107d17fa5a0015084b1773ffc41e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 17:43:36 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 17:43:36 2005 -0800"
      },
      "message": "Linux v2.6.15-rc1\n\nAs per the new release rules: two weeks of merging, and then an -rc1 and\ncalming down for the next release.\n"
    },
    {
      "commit": "508862e493f1107d17fa5a0015084b1773ffc41e",
      "tree": "a7c619335bb2f852b1b7c3b8760552eb6f4890bc",
      "parents": [
        "9cf93d7b2f4516271ccf5b48f958bd474cf9dd67",
        "049b3ff5a86d0187184a189d2e31b8654d58fe22"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 17:00:17 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 17:00:17 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6\n"
    },
    {
      "commit": "9cf93d7b2f4516271ccf5b48f958bd474cf9dd67",
      "tree": "e743282bdf6b808cc7739c614fc7158609470ace",
      "parents": [
        "401221501af4b87b502eca36ece97b4191380082",
        "c6bd2328434a3a6f8f6bc6f77f49c12ec966448a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 16:30:35 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 16:30:35 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n"
    },
    {
      "commit": "401221501af4b87b502eca36ece97b4191380082",
      "tree": "d67687b4ceb8c78213296039cafe8602514e4cd3",
      "parents": [
        "63f45b80947cb0819673860f6970f483e2cab21d",
        "ff51224cab12845c8bd539ca1f2dc18cc851b445"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 16:29:47 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 16:29:47 2005 -0800"
      },
      "message": "Merge branch \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6\n"
    },
    {
      "commit": "63f45b80947cb0819673860f6970f483e2cab21d",
      "tree": "6b0d46c7da70786c15ee893d8a48aa866ae3742c",
      "parents": [
        "85837ebdd7bb3e96a60e9b4c6af6c60d1273bc67",
        "b2d1a8adc9cf3bde32a18a1a1856641638a9c729"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 16:29:22 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 16:29:22 2005 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial\n"
    },
    {
      "commit": "049b3ff5a86d0187184a189d2e31b8654d58fe22",
      "tree": "aed83ae799e444c57d76597bad6e3b41957a828e",
      "parents": [
        "19c7e9eef503dc1ae926f3d26c56f88bee568d7b"
      ],
      "author": {
        "name": "Neil Horman",
        "email": "nhorman@tuxdriver.com",
        "time": "Fri Nov 11 16:08:24 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Nov 11 16:08:24 2005 -0800"
      },
      "message": "[SCTP]: Include ulpevents in socket receive buffer accounting.\n\nAlso introduces a sysctl option to configure the receive buffer\naccounting policy to be either at socket or association level.\nDefault is all the associations on the same socket share the\nreceive buffer.\n\nSigned-off-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\nSigned-off-by: Sridhar Samudrala \u003csri@us.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "19c7e9eef503dc1ae926f3d26c56f88bee568d7b",
      "tree": "a1e79285a2ab740280435fb11d79e74a3c4afbe2",
      "parents": [
        "1e7d3d90c95b32374057e454417b2f50440be20e"
      ],
      "author": {
        "name": "Vladislav Yasevich",
        "email": "vladislav.yasevich@hp.com",
        "time": "Fri Nov 11 16:07:40 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Nov 11 16:07:40 2005 -0800"
      },
      "message": "[SCTP]: Fix ia64 NaT consumption fault with sctp_sideffect commands.\n\nOn ia64, it is possible to get NaT Consumption Fault and a kernel panic\nwhen initializing sctp sideeffect commands arguments.  The union\nsctp_arg_t contains different sized elements and when loading a smaller\nsized element (32 or 16 bits), it is possible for a speculative load to\nfail and result in a NaT bit set which causes a kernel crash.  The easy\nway to get around it is to load the largerst member of the union.\n\nSigned-off-by: Vladislav Yasevich \u003cvladislav.yasevich@hp.com\u003e\nSigned-off-by: Sridhar Samudrala \u003csri@us.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1e7d3d90c95b32374057e454417b2f50440be20e",
      "tree": "cd12fac53642654beb67924a6bf37b86b4b54b07",
      "parents": [
        "23ec47a0889dabf4b9e7f8d52e848194734159ee"
      ],
      "author": {
        "name": "Vladislav Yasevich",
        "email": "vladislav.yasevich@hp.com",
        "time": "Fri Nov 11 16:06:16 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Nov 11 16:06:16 2005 -0800"
      },
      "message": "[SCTP]: Remove timeouts[] array from sctp_endpoint.\n\nThe socket level timeout values are maintained in sctp_sock and\nassociation level timeouts are in sctp_association. So there is\nno need for ep-\u003etimeouts.\n\nSigned-off-by: Vladislav Yasevich \u003cvladislav.yasevich@hp.com\u003e\nSigned-off-by: Sridhar Samudrala \u003csri@us.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "23ec47a0889dabf4b9e7f8d52e848194734159ee",
      "tree": "1b8afadde8b3a60405163b60436897e1746084a2",
      "parents": [
        "8eb55910521f3449a8125a38dd32fb676703395d"
      ],
      "author": {
        "name": "Vladislav Yasevich",
        "email": "vladislav.yasevich@hp.com",
        "time": "Fri Nov 11 16:05:55 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Nov 11 16:05:55 2005 -0800"
      },
      "message": "[SCTP]: Fix potential NULL pointer dereference in sctp_v4_get_saddr\n\nIt is possible to get to sctp_v4_get_saddr() without a valid\nassociation.  This happens when processing OOTB packets and\nthe cached route entry is no longer valid.\nHowever, when responding to OOTB packets we already properly\nset the source address based on the information in the OOTB\npacket.  So, if we we get to sctp_v4_get_saddr() without an\nassociation we can simply return.\n\nSigned-off-by: Vladislav Yasevich \u003cvladislav.yasevich@hp.com\u003e\nSigned-off-by: Sridhar Samudrala \u003csri@us.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "8eb55910521f3449a8125a38dd32fb676703395d",
      "tree": "46ccf4bf582b5d7d1d240736608e33100ec02607",
      "parents": [
        "85837ebdd7bb3e96a60e9b4c6af6c60d1273bc67"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Nov 11 15:05:47 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Nov 11 15:05:47 2005 -0800"
      },
      "message": "[IPV6]: Fix inet6_init missing unregister.\n\nBased mostly upon a patch from Olaf Kirch \u003cokir@suse.de\u003e\n\nWhen initialization fails in inet6_init(), we should\nunregister the PF_INET6 socket ops.\n\nAlso, check sock_register()\u0027s return value for errors.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "85837ebdd7bb3e96a60e9b4c6af6c60d1273bc67",
      "tree": "3d2fd2178c3649a82cdb129b042595b071da9b89",
      "parents": [
        "39990b5eb93c624abc345f81c30f1a9c7f2ec3f3"
      ],
      "author": {
        "name": "Mike Christie",
        "email": "michaelc@cs.wisc.edu",
        "time": "Fri Nov 11 16:38:53 2005 -0600"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 14:57:05 2005 -0800"
      },
      "message": "[PATCH] kill libata scsi_wait_req usage (make libata compile with scsi-misc changes)\n\nscsi_wait_req does not exist any more in the SCSI layer.  This patch\nmakes it so libata can compile again.\n\nSigned-off-by: Mike Christie \u003cmichaelc@cs.wisc.edu\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "39990b5eb93c624abc345f81c30f1a9c7f2ec3f3",
      "tree": "7b8eda9a6c26e2f0dc3dbca5ea20417c920bf598",
      "parents": [
        "d72d6f1b5647258e83819b51f72fe37e2b7d7965"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 14:27:32 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 14:27:32 2005 -0800"
      },
      "message": "ppc64: default build as the merged \u0027powerpc\u0027 architecture\n\nAfter the last merge of the new unified \u0027powerpc\u0027 architecture, ppc64 no\nlonger compiles cleanly as a standalone architecture.  Some bits and\npieces still exist as files under the old ppc64 hierarchy, but the old\n\"ARCH\u003dppc64\" is dead.\n\nSo if \"uname\" says ppc64, that now implies that the default architecture\nshould be \"powerpc\".\n\nAcked-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d72d6f1b5647258e83819b51f72fe37e2b7d7965",
      "tree": "d3a08af50624d9b3e2287367b7e9f5fcc93bdce5",
      "parents": [
        "33ddcbbfb1d9f1bf1259531ae0ba8400ea3c8ba1",
        "8a87a0b6313109d2fea87b1271d497c954ce2ca8"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 14:04:37 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 14:04:37 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-for-linus-2.6\n"
    },
    {
      "commit": "33ddcbbfb1d9f1bf1259531ae0ba8400ea3c8ba1",
      "tree": "c56e090e4984c84d1cee247e48856f8d82ab813e",
      "parents": [
        "4d45cbacb8488ae3172065e4fca608079492231b",
        "9eb5c94ef217d61d974f384b29b7298490b0a4d9"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 14:03:49 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 14:03:49 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6\n"
    },
    {
      "commit": "c6bd2328434a3a6f8f6bc6f77f49c12ec966448a",
      "tree": "2244407a91c58fb0486f36662e4f72e31f651774",
      "parents": [
        "60cef2988af29299f0cc01fc8f0a5dcf55baf776"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Fri Nov 11 21:56:33 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Nov 11 21:56:33 2005 +0000"
      },
      "message": "[ARM] Update mach-types\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "60cef2988af29299f0cc01fc8f0a5dcf55baf776",
      "tree": "c3a5cdb40ac68b44b9afe1d4dfc6221b18744736",
      "parents": [
        "8adbb3718d6cead304f84f7dd60ad65274df0b15"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Fri Nov 11 21:53:30 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Nov 11 21:53:30 2005 +0000"
      },
      "message": "[ARM] 3147/1: update ixp2000 defconfigs to 2.6.14-git13\n\nPatch from Lennert Buytenhek\n\nUpdate the ixp2000 defconfigs to 2.6.14-git13.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "8adbb3718d6cead304f84f7dd60ad65274df0b15",
      "tree": "5d39d25a7d2a6e6606c6b2ec4ce23d45cb6b4a2a",
      "parents": [
        "a9c4814d8db200052c07d8b68e76c134682c4569"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Fri Nov 11 21:51:49 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Nov 11 21:51:49 2005 +0000"
      },
      "message": "[ARM] 3152/1: make various assembly local labels actually local (the rest)\n\nPatch from Nicolas Pitre\n\nFor assembly labels to actually be local they must start with \".L\" and\nnot only \".\" otherwise they still remain visible in the final link and\nclutter kallsyms needlessly, and possibly make for unclear symbolic\nbacktrace. This patch simply inserts a\"L\" where appropriate. The code\nitself is unchanged.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a9c4814d8db200052c07d8b68e76c134682c4569",
      "tree": "6e25edd9ef8f5dff48b718630410fe2679892a2b",
      "parents": [
        "7ba11a9c1598ced7d719648a5998a2a81ba06dc9"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Fri Nov 11 21:51:48 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Nov 11 21:51:48 2005 +0000"
      },
      "message": "[ARM] 3151/1: make various assembly local labels actually local (io-*.S)\n\nPatch from Nicolas Pitre\n\nFor assembly labels to actually be local they must start with \".L\" and\nnot only \".\" otherwise they still remain visible in the final link and\nclutter kallsyms needlessly, and possibly make for unclear symbolic\nbacktrace. This patch simply inserts a\"L\" where appropriate. The code\nitself is unchanged.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "7ba11a9c1598ced7d719648a5998a2a81ba06dc9",
      "tree": "c8f24e6a12366bdb8874db03ef213ebf78590d43",
      "parents": [
        "388f7ef720a982f49925e7b4e96f216f208f8c03"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Fri Nov 11 21:51:47 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Nov 11 21:51:47 2005 +0000"
      },
      "message": "[ARM] 3150/1: make various assembly local labels actually local (uaccess.S)\n\nPatch from Nicolas Pitre\n\nFor assembly labels to actually be local they must start with \".L\" and\nnot only \".\" otherwise they still remain visible in the final link and\nclutter kallsyms needlessly, and possibly make for unclear symbolic\nbacktrace. This patch simply inserts a\"L\" where appropriate. The code\nitself is unchanged.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "4d45cbacb8488ae3172065e4fca608079492231b",
      "tree": "db8c485e2837185487aecbd46d27205dbc9e7536",
      "parents": [
        "388f7ef720a982f49925e7b4e96f216f208f8c03"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Fri Nov 11 12:48:56 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Fri Nov 11 12:48:56 2005 -0800"
      },
      "message": "[SPARC64]: Restore 2.4.x /proc/cpuinfo behavior for \"ncpus probed\" field.\n\nNoticed by Tom \u0027spot\u0027 Callaway.\n\nEven on uniprocessor we always reported the number of physical\ncpus in the system via /proc/cpuinfo.  But when this got changed\nto use num_possible_cpus() it always reads as \"1\" on uniprocessor.\nThis change was unintentional.\n\nSo scan the firmware device tree and count the number of cpu\nnodes, and report that, as we always did.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "9eb5c94ef217d61d974f384b29b7298490b0a4d9",
      "tree": "3ebe183f50a90c64834f1f836e541e509979e856",
      "parents": [
        "388f7ef720a982f49925e7b4e96f216f208f8c03"
      ],
      "author": {
        "name": "Patrick Caulfield",
        "email": "patrick@tykepenguin.com",
        "time": "Fri Nov 11 12:04:28 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Nov 11 12:04:28 2005 -0800"
      },
      "message": "[DECNET]: fix SIGPIPE\n\nCurrently recvmsg generates SIGPIPE whereas sendmsg does not; for the\nother stacks it seems to be the other way round!\n\nIt also fixes the bug where reading from a socket whose peer has shutdown\nreturned -EINVAL rather than 0.\n\nSigned-off-by: Patrick Caulfield \u003cpatrick@tykepenguin.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ff51224cab12845c8bd539ca1f2dc18cc851b445",
      "tree": "cb8a49dd0db6626dc135eb126b0950dc3c3c63e6",
      "parents": [
        "837cd0bdf54dd954cd6aa43d250f75ab5db79617"
      ],
      "author": {
        "name": "Mark Maule",
        "email": "maule@sgi.com",
        "time": "Fri Nov 11 11:52:43 2005 -0600"
      },
      "committer": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Fri Nov 11 11:24:26 2005 -0800"
      },
      "message": "[IA64-SGI] set altix preferred console\n\nFix default VGA console on SN platforms.  Since SN firmware does not pass\nenough ACPI information to identify VGA cards and the associated legacy IO/MEM\naddresses, we rely on the EFI PCDP table.  Since the linux pcdp driver is\noptional (and overridden if console\u003d directives are used) SN duplicates a\nportion of the pcdp scan code to identify if there is a usable console VGA\nadapter.  Additionally, dup necessary pcdp related structs to avoid dragging\ndrivers/pcdp.h into a more public location.\n\nSigned-off-by: Mark Maule \u003cmaule@sgi.com\u003e\nSigned-off-by: Tony Luck \u003ctony.luck@intel.com\u003e\n"
    },
    {
      "commit": "837cd0bdf54dd954cd6aa43d250f75ab5db79617",
      "tree": "ef28b91f1ac8c1c9f4244da9be1f994306ef4070",
      "parents": [
        "d12eb7e11cf30c30f639b2093735af2ac177830b"
      ],
      "author": {
        "name": "Robin Holt",
        "email": "holt@sgi.com",
        "time": "Fri Nov 11 09:35:43 2005 -0600"
      },
      "committer": {
        "name": "Tony Luck",
        "email": "tony.luck@intel.com",
        "time": "Fri Nov 11 09:37:29 2005 -0800"
      },
      "message": "[IA64] 4-level page tables\n\nThis patch introduces 4-level page tables to ia64.  I have run\nsome benchmarks and found nothing interesting.  Performance has\nconsistently fallen within the noise range.\n\nIt also introduces a config option (setting the default to 3\nlevels).  The config option prevents having 4 level page\ntables with 64k base page size.\n\nSigned-off-by: Robin Holt \u003cholt@sgi.com\u003e\nSigned-off-by: Tony Luck \u003ctony.luck@intel.com\u003e\n"
    },
    {
      "commit": "388f7ef720a982f49925e7b4e96f216f208f8c03",
      "tree": "75bfe3290db6d99232f56eadaf41a51197c5ba7c",
      "parents": [
        "d5eebf428ac91ad12d316a391b734670d61480d8",
        "560c22fe1fc8b3523ef422da4f1cf04aa22d1471"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:26:39 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:26:39 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-linus\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6\n"
    },
    {
      "commit": "d5eebf428ac91ad12d316a391b734670d61480d8",
      "tree": "2cf868d1e29714250697f03f5da1ac3a5934178c",
      "parents": [
        "5643f000c1e10ab991182478b76550e1364c3570",
        "e99f8b5efe78110e4af10f35ebf11feeef8f43b6"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:25:54 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:25:54 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-linus\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev\n"
    },
    {
      "commit": "5643f000c1e10ab991182478b76550e1364c3570",
      "tree": "950b2f61a5dd742de1c668ba968a9c8a99f1eab6",
      "parents": [
        "177294d19174cf92de22434bb1fc9a8ecdbbe658",
        "3ae5eaec1d2d9c0cf53745352e7d4b152810ba24"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:24:26 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:24:26 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-drvmodel\n"
    },
    {
      "commit": "177294d19174cf92de22434bb1fc9a8ecdbbe658",
      "tree": "0d85b7d96db3f6ca48972f4e4667aca0dec707f3",
      "parents": [
        "9b80b11c3faa460cf42904a1e368bf2cd075aff6"
      ],
      "author": {
        "name": "Hironobu Ishii",
        "email": "hishii@soft.fujitsu.com",
        "time": "Fri Nov 11 08:12:21 2005 -0600"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:23:31 2005 -0800"
      },
      "message": "[PATCH] ipmi: fix inconsistent spinlock usage\n\nPart of a patch was accidentally reverted, this corrects an\ninconsistent spinlock use in the IPMI message handler.\n\nSigned-off-by: Hironobu Ishii \u003chishii@soft.fujitsu.com\u003e\nSigned-off-by: Corey Minyard \u003cminyard@acm.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9b80b11c3faa460cf42904a1e368bf2cd075aff6",
      "tree": "ecc349bbb90856c97be1b93cc9595ceea82fe2c5",
      "parents": [
        "b0b7b8eac33dc0f58ce9e7b7a61cf6529ee0b38c",
        "271c3f35bd36613513e2c2cc90dc914a84df116e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:22:27 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:22:27 2005 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge\n"
    },
    {
      "commit": "b0b7b8eac33dc0f58ce9e7b7a61cf6529ee0b38c",
      "tree": "e5e30cc6516e0dc65181184f27b77bf71d055a18",
      "parents": [
        "c050970a257a4060e927e497a12323e961fcbadc",
        "402771c786b71765c39d9a91f31b8c7b91faaa0a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:22:08 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:22:08 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-mmc\n"
    },
    {
      "commit": "c050970a257a4060e927e497a12323e961fcbadc",
      "tree": "863e119dcd600226330e0112fe413649a2088d12",
      "parents": [
        "d12eb7e11cf30c30f639b2093735af2ac177830b"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Nov 11 04:43:47 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 09:21:28 2005 -0800"
      },
      "message": "[PATCH] TCP: fix vegas build\n\nRecent TCP changes broke the build.\n\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d12eb7e11cf30c30f639b2093735af2ac177830b",
      "tree": "bffb0a9d3670cde15c9e9456e427f8bff10de937",
      "parents": [
        "5e04e7fe774794b837e1d3897e6b96ae2d06679a"
      ],
      "author": {
        "name": "Dmitry Torokhov",
        "email": "dtor_core@ameritech.net",
        "time": "Thu Nov 10 22:10:55 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 11 08:25:07 2005 -0800"
      },
      "message": "[PATCH] Input: convert hdaps to dynamic input_dev allocation.\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "560c22fe1fc8b3523ef422da4f1cf04aa22d1471",
      "tree": "5be5e00b81e7793ebe5210c6b8ed5d33f3818677",
      "parents": [
        "557934554655ac119d96a1bdb6ed75319bb9d1b1"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 08 22:02:35 2005 +0000"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Nov 11 08:32:47 2005 -0500"
      },
      "message": "[PATCH] gt96100eth.c: Don\u0027t concatenate __FUNCTION__ with strings.\n\nAs part of the ISO C9x conversion gcc deprecates concatenation with\n__FUNCTION__ because __FUNCTION__ is not a preprocessor macro.\n\nSigned-off-by: Clemens Buchacher \u003cdrizzd@aon.at\u003e\nSigned-off-by: Maximilian Attems \u003cjanitor@sternwelten.at\u003e\nSigned-off-by: Domen Puncer \u003cdomen@coderock.org\u003e\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "557934554655ac119d96a1bdb6ed75319bb9d1b1",
      "tree": "be50370f30729f13e5488162369861c8bad4f9aa",
      "parents": [
        "05d9c84dfbbb654f60d98d465b58d4c68222ef1c"
      ],
      "author": {
        "name": "Pete Popov",
        "email": "ppopov@embeddedalley.com",
        "time": "Wed Nov 09 22:46:05 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Nov 11 08:32:47 2005 -0500"
      },
      "message": "[PATCH] smc91x: DB1200 support.\n\nThe following patch support the SMC9111 present on DB1200 boards.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "05d9c84dfbbb654f60d98d465b58d4c68222ef1c",
      "tree": "721025a8eab0b818f4e5eba19001cba521560220",
      "parents": [
        "62ff0d0a0769f08806d3f50449a78f17420971e8"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Nov 09 17:10:05 2005 +0000"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Nov 11 08:31:35 2005 -0500"
      },
      "message": "[PATCH] SAA9730: Driver overhaul\n\n o Try to work around some of the undocumented \"features\" of the SAA9730\n o Use netdev_priv() instead of the previous broken mechanism to allocate\n   the private data structure.\n o Try to make sure we don\u0027t leak resources on exit.\n o No more need to call SET_MODULE_OWNER in 2.6.\n o Use pci_free_consistent instead of homegrown architecture-specific\n   allocation.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n\n drivers/net/saa9730.c |  531 +++++++++++++++++++++++---------------------------\n 1 files changed, 249 insertions(+), 282 deletions(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "62ff0d0a0769f08806d3f50449a78f17420971e8",
      "tree": "7a4908b104b68ffaf602d0659f73f1c315aa4b00",
      "parents": [
        "7a33e45a2498460d6daa20a1740d3185798d6026"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Nov 09 16:44:02 2005 +0000"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Nov 11 08:31:35 2005 -0500"
      },
      "message": "[PATCH] SAA9730: Whitespace cleanup.\n\nKill trailing whitespace, replace leading whitespace with tabs.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n\n drivers/net/saa9730.c |   98 +++++++++++++++++++++++++-------------------------\n 1 files changed, 49 insertions(+), 49 deletions(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "7a33e45a2498460d6daa20a1740d3185798d6026",
      "tree": "b86ff3a2f435b98e125610a1b66b6d69026d35f1",
      "parents": [
        "a971c32488569b5443c48168756e8ccfb0862c50"
      ],
      "author": {
        "name": "Ayaz Abdulla",
        "email": "aabdulla@nvidia.com",
        "time": "Fri Nov 11 08:31:11 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Nov 11 08:31:11 2005 -0500"
      },
      "message": "[netdrvr forcedeth] phy address scan range\n\nAdded phy address 0 to the phy scan.\n\nSigned-off-by: Ayaz Abdulla \u003caabdulla@nvidia.com\u003e\n"
    }
  ],
  "next": "a971c32488569b5443c48168756e8ccfb0862c50"
}
