)]}'
{
  "log": [
    {
      "commit": "599a6e8ca4ff7f453f847217ecc2718d68e3b0f6",
      "tree": "89961a1030bbdd1e3c9c49bcc451921206bfae9f",
      "parents": [
        "fef2b580eb50281ae1d2413ab340f677f6722281"
      ],
      "author": {
        "name": "Domen Puncer",
        "email": "domen@coderock.org",
        "time": "Fri Jan 06 00:11:46 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:33 2006 -0800"
      },
      "message": "[PATCH] mips: remove include/asm-mips/riscos-syscall.h\n\nRemove nowhere referenced file (\"grep riscos -r .\" didn\u0027t find anything).\n\nSigned-off-by: Domen Puncer \u003cdomen@coderock.org\u003e\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nAcked-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d3cb487149bd706aa6aeb02042332a450978dc1c",
      "tree": "69051e0f9853314cf275e4e800faad950e3053c3",
      "parents": [
        "070f80326a215d8e6c4fd6f175e28eb446c492bc"
      ],
      "author": {
        "name": "Christoph Lameter",
        "email": "clameter@engr.sgi.com",
        "time": "Fri Jan 06 00:11:20 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:29 2006 -0800"
      },
      "message": "[PATCH] atomic_long_t \u0026 include/asm-generic/atomic.h V2\n\nSeveral counters already have the need to use 64 atomic variables on 64 bit\nplatforms (see mm_counter_t in sched.h).  We have to do ugly ifdefs to fall\nback to 32 bit atomic on 32 bit platforms.\n\nThe VM statistics patch that I am working on will also make more extensive\nuse of atomic64.\n\nThis patch introduces a new type atomic_long_t by providing definitions in\nasm-generic/atomic.h that works similar to the c \"long\" type.  Its 32 bits\non 32 bit platforms and 64 bits on 64 bit platforms.\n\nAlso cleans up the determination of the mm_counter_t in sched.h.\n\nSigned-off-by: Christoph Lameter \u003cclameter@sgi.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f6b3ec238d12c8cc6cc71490c6e3127988460349",
      "tree": "b395c1054802760b0e938199231a9de9ac2f358a",
      "parents": [
        "d7339071f6a8b50101d7ba327926b770f22d5d8b"
      ],
      "author": {
        "name": "Badari Pulavarty",
        "email": "pbadari@us.ibm.com",
        "time": "Fri Jan 06 00:10:38 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:22 2006 -0800"
      },
      "message": "[PATCH] madvise(MADV_REMOVE): remove pages from tmpfs shm backing store\n\nHere is the patch to implement madvise(MADV_REMOVE) - which frees up a\ngiven range of pages \u0026 its associated backing store.  Current\nimplementation supports only shmfs/tmpfs and other filesystems return\n-ENOSYS.\n\n\"Some app allocates large tmpfs files, then when some task quits and some\nclient disconnect, some memory can be released.  However the only way to\nrelease tmpfs-swap is to MADV_REMOVE\". - Andrea Arcangeli\n\nDatabases want to use this feature to drop a section of their bufferpool\n(shared memory segments) - without writing back to disk/swap space.\n\nThis feature is also useful for supporting hot-plug memory on UML.\n\nConcerns raised by Andrew Morton:\n\n- \"We have no plan for holepunching!  If we _do_ have such a plan (or\n  might in the future) then what would the API look like?  I think\n  sys_holepunch(fd, start, len), so we should start out with that.\"\n\n- Using madvise is very weird, because people will ask \"why do I need to\n  mmap my file before I can stick a hole in it?\"\n\n- None of the other madvise operations call into the filesystem in this\n  manner.  A broad question is: is this capability an MM operation or a\n  filesytem operation?  truncate, for example, is a filesystem operation\n  which sometimes has MM side-effects.  madvise is an mm operation and with\n  this patch, it gains FS side-effects, only they\u0027re really, really\n  significant ones.\"\n\nComments:\n\n- Andrea suggested the fs operation too but then it\u0027s more efficient to\n  have it as a mm operation with fs side effects, because they don\u0027t\n  immediatly know fd and physical offset of the range.  It\u0027s possible to\n  fixup in userland and to use the fs operation but it\u0027s more expensive,\n  the vmas are already in the kernel and we can use them.\n\nShort term plan \u0026  Future Direction:\n\n- We seem to need this interface only for shmfs/tmpfs files in the short\n  term.  We have to add hooks into the filesystem for correctness and\n  completeness.  This is what this patch does.\n\n- In the future, plan is to support both fs and mmap apis also.  This\n  also involves (other) filesystem specific functions to be implemented.\n\n- Current patch doesn\u0027t support VM_NONLINEAR - which can be addressed in\n  the future.\n\nSigned-off-by: Badari Pulavarty \u003cpbadari@us.ibm.com\u003e\nCc: Hugh Dickins \u003chugh@veritas.com\u003e\nCc: Andrea Arcangeli \u003candrea@suse.de\u003e\nCc: Michael Kerrisk \u003cmtk-manpages@gmx.net\u003e\nCc: Ulrich Drepper \u003cdrepper@redhat.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "25c862cc9ea9b312c25a9f577f91b973131f1261",
      "tree": "8e8f56531144370ced50fa98db2973f4e93e38b0",
      "parents": [
        "52347f4e810ba323d02cd2c26b5d738f4a2c3d5e",
        "8ded4ac018ea706bf7ee926601a27184665c9c28"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 04 16:36:52 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Jan 04 16:36:52 2006 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild\n"
    },
    {
      "commit": "3821af2fe13700cab6fd67367128fa180e43f8b8",
      "tree": "a70f63c24bd7d2ac8b25e3e4ee0ef6a50847aa67",
      "parents": [
        "c865e5d99e25a171e8262fc0f7ba608568633c64"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Wed Dec 21 19:30:53 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Tue Jan 03 13:11:06 2006 -0800"
      },
      "message": "[FLS64]: generic version\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "42f122c8f7e7134c824907358a5df94cfa38946d",
      "tree": "1323e75c25490fc23526382f7e68d0b572a07a98",
      "parents": [
        "752625cff3eba81cbc886988d5b420064c033948"
      ],
      "author": {
        "name": "Brian Gerst",
        "email": "bgerst@didntduck.org",
        "time": "Tue Dec 27 23:19:04 2005 -0500"
      },
      "committer": {
        "name": "",
        "email": "sam@mars.ravnborg.org",
        "time": "Sun Jan 01 22:21:50 2006 +0100"
      },
      "message": "gitignore: asm-offsets.h\n\nIgnore asm-offsets.h for all arches.\n\nSigned-off-by: Brian Gerst \u003cbgerst@didntduck.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "8f29e650bffc1e22ed6b2d0b321bc77627f3bb7a",
      "tree": "d6b785c09c57a8f742e9a81162ee0d176677dc21",
      "parents": [
        "65e5f2e3b457b6b20a5c4481312189d141a33d24"
      ],
      "author": {
        "name": "Jordan Crouse",
        "email": "jordan.crouse@amd.com",
        "time": "Thu Dec 15 02:17:46 2005 +0100"
      },
      "committer": {
        "name": "Bartlomiej Zolnierkiewicz",
        "email": "bzolnier@gmail.com",
        "time": "Thu Dec 15 02:17:46 2005 +0100"
      },
      "message": "[PATCH] ide: AU1200 IDE update\n\nChanges here include removing all of CONFIG_PM while it is being repeatedly\nsmacked with a lead pipe, moving the BURSTMODE param to a #define (it should\nbe defined almost always anyway), fixing the rqsize stuff, pulling ide_ioreg_t,\nand general cleanups and whatnot.\n\nSigned-off-by: Jordan Crouse \u003cjordan.crouse@amd.com\u003e\nSigned-off-by: Bartlomiej Zolnierkiewicz \u003cbzolnier@gmail.com\u003e"
    },
    {
      "commit": "65e5f2e3b457b6b20a5c4481312189d141a33d24",
      "tree": "cce866efd8eea1815cb054a274e165bdbba16180",
      "parents": [
        "38f9d412be1ed29ee3b41782f22fd85b1c95fbed"
      ],
      "author": {
        "name": "Jordan Crouse",
        "email": "jordan.crouse@amd.com",
        "time": "Thu Dec 15 02:16:18 2005 +0100"
      },
      "committer": {
        "name": "Bartlomiej Zolnierkiewicz",
        "email": "bzolnier@gmail.com",
        "time": "Thu Dec 15 02:16:18 2005 +0100"
      },
      "message": "[PATCH] ide: core modifications for AU1200\n\nbart: slightly modified by me\n\nSigned-off-by: Jordan Crouse \u003cjordan.crouse@amd.com\u003e\nSigned-off-by: Bartlomiej Zolnierkiewicz \u003cbzolnier@gmail.com\u003e"
    },
    {
      "commit": "e76beeebff09b6a5eb338f306349ddc451a7804d",
      "tree": "abea0748975eba97973ae7e423640a1b51c6e389",
      "parents": [
        "56ebd51bae72c2e47c83f6eacf258479d5658ec8"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 28 13:12:51 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Dec 01 11:05:15 2005 +0000"
      },
      "message": "[MIPS] Qemu: Qemu is emulating a 1193.182kHz i8254 PIC.\n    \nFrom Daniel Jacobowitz \u003cdan@debian.org\u003e.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "1a6ea3ec6784cf3dedc338e1980dc0b4cf28a805",
      "tree": "91870e1281226e7ac1fac450c58e26d01f4028c5",
      "parents": [
        "09b696efd93560609f25821208dae18027187425"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 16:10:01 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:57 2005 +0000"
      },
      "message": "[MIPS] SEAD: More build fixes.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "561a0792405bea8ead78990d755dd1f95b8e95b8",
      "tree": "a9efc705f30fe603a64b33d21bffd28373ea55fa",
      "parents": [
        "3d5d44017601c927f5e14c43b0efee34e7e50a66"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 13:25:59 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:55 2005 +0000"
      },
      "message": "[MIPS] SEAD: Delete seadint_init() prototype.\n    \nThere is no definition for seadint_init() and the unprotected prototype\nbreaks compilation of assembler files.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "c183f1224bbae052b5fbb971d6eafc5cbdc6be4f",
      "tree": "b9ff7a60bf519d27ce89ad440bbef520b4ecd7dd",
      "parents": [
        "c32cf78c0289c4d8f5973c985dda18f2b3a03e2b"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 15 13:05:26 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:54 2005 +0000"
      },
      "message": "[MIPS] JMR3927: Fix include wrapper symbol.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "f10d14ddec8daf11a298f05ab3d644887df39830",
      "tree": "cb720c4553760ac37937eb56ef2255ae8aec70dd",
      "parents": [
        "99289a4e8a9cb3fa6caa8fc4ebf57a33db497340"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:49 2005 +0000"
      },
      "message": "[MIPS] Fix documentation typos.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "99289a4e8a9cb3fa6caa8fc4ebf57a33db497340",
      "tree": "53a149795f88ea1da576b4cec0d218cc998670a3",
      "parents": [
        "59f145d28ce853b13dafdfab438c48f3ead0b38e"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:49 2005 +0000"
      },
      "message": "[MIPS] Add const qualifier to writes##bwlq.\n    \nAdd const qualifier to parameter addr of writes##bwlq.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "59f145d28ce853b13dafdfab438c48f3ead0b38e",
      "tree": "e758652a96e8d63ac2b413bcba4266743af09d78",
      "parents": [
        "84c493d8e143360cfba3efede97e5a93d62c4d3d"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:48 2005 +0000"
      },
      "message": "[MIPS] IP32: Fix sparse warnings.\n    \nAdd __iomem qualifier to crime and mace pointers.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "84c493d8e143360cfba3efede97e5a93d62c4d3d",
      "tree": "1530db463632b6cdb279aa0078d2249452d815aa",
      "parents": [
        "19ce1cfb2d53e5b9f70d0199d551789db2718e6f"
      ],
      "author": {
        "name": "Arnaud Giersch",
        "email": "arnaud.giersch@free.fr",
        "time": "Sun Nov 13 00:38:18 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:47 2005 +0000"
      },
      "message": "[MIPS] IP32 Fix and complete IP32 parport definitions\n    \nFix, complete, and indent IP32 parport definitions.\nDefinition were wrong for CTXINUSE and DMACTIVE (1-bit shift).\nAdd macros DATA_BOUND, DATALEN_SHIFT, and CTRSHIFT.\n    \nSigned-off-by: Arnaud Giersch \u003carnaud.giersch@free.fr\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "efd9412d850397fc129c17eb33c84f74abb0d3ee",
      "tree": "49d832872141ed2982312e705b863be35a61c489",
      "parents": [
        "d93efab838ee399b45379bd97b2812ecee84471b"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Nov 11 11:46:25 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:45 2005 +0000"
      },
      "message": "[MIPS] JMR3927: Undo accidental rename.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "16212017a54afdb702ecc796aaa0448b795de03b",
      "tree": "3ee7edf2f92d531689bcb0db0be91a5d9e8d2a61",
      "parents": [
        "cd017fbdd33f2d8294b0e0324faa1dc7750b4af0"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:44 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:44 2005 +0000"
      },
      "message": "[MIPS] IP32: No need to include \u003casm/io.h\u003e.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "bdc3c3c7cbc3e1244c03640b4b372d097a1dacf3",
      "tree": "513f7beb915ef2adae11f9222879a6eab911ef02",
      "parents": [
        "6f17ce33fef3fd84e3e45850c9388d118adfad96"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:42 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:42 2005 +0000"
      },
      "message": "[MIPS] Add missing arch defines for the Alchemy MTD driver.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "db7f6861822c80f17a23647b4d0042dcc56e2024",
      "tree": "45f030d4feb1146e09c95d96d108797564c3558a",
      "parents": [
        "0db169f9703115bab09eda5d89a8f6937a7bf98e"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Nov 08 22:23:13 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Nov 17 16:23:38 2005 +0000"
      },
      "message": "[MIPS] Delete duplicate definitions of break codes.\n   \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "8426e1f6af0fd7f44d040af7263750c5a52f3cc3",
      "tree": "827bd2588c2b73d11cea6869de8ff42dba134375",
      "parents": [
        "4a6dae6d382e9edf3ff440b819e554ed706359bc"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "nickpiggin@yahoo.com.au",
        "time": "Sun Nov 13 16:07:25 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:16 2005 -0800"
      },
      "message": "[PATCH] atomic: inc_not_zero\n\nIntroduce an atomic_inc_not_zero operation.  Make this a special case of\natomic_add_unless because lockless pagecache actually wants\natomic_inc_not_negativeone due to its offset refcount.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nCc: \"Paul E. McKenney\" \u003cpaulmck@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4a6dae6d382e9edf3ff440b819e554ed706359bc",
      "tree": "2945a5095973e2ecf05b503d6deb859083045b8e",
      "parents": [
        "53e86b91b7ae66d4c2757195cbd42e00d9199cf2"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "nickpiggin@yahoo.com.au",
        "time": "Sun Nov 13 16:07:24 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:16 2005 -0800"
      },
      "message": "[PATCH] atomic: cmpxchg\n\nIntroduce an atomic_cmpxchg operation.\n\nSigned-off-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nCc: \"Paul E. McKenney\" \u003cpaulmck@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3f00d3e8fb963968a922d821a9a53b503b687e81",
      "tree": "dfac1c73ae63f8d48340f3bbb77ee53b322c59e9",
      "parents": [
        "407cf84f956ee4b52da5508d5357b8ae212ff77c",
        "a637a114f36b94a1ad8b9867f43bac0414958420"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 11:15:23 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 11:15:23 2005 -0800"
      },
      "message": "Merge branch \u0027upstream\u0027 of git://ftp.linux-mips.org/pub/scm/upstream-linus\n"
    },
    {
      "commit": "a06d61c648890ad7e86d5ea04bd6999b254db193",
      "tree": "fbbee6503fe3f59bdf8c7df94d5f1c97be36a506",
      "parents": [
        "4fa0997be8050ea34f117f813d3aafa7956a5711"
      ],
      "author": {
        "name": "Atsushi Nemoto",
        "email": "anemo@mba.ocn.ne.jp",
        "time": "Sun Nov 06 23:58:21 2005 +0900"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:40 2005 +0000"
      },
      "message": "Redefine outs[wl] for ide_outs[wl].\n    \nAdd missing bits to fix D-cache aliasing problem in the PIO IDE driver.\n    \nSigned-off-by: Atsushi Nemoto \u003canemo@mba.ocn.ne.jp\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "4fa0997be8050ea34f117f813d3aafa7956a5711",
      "tree": "3bd0583d19b7aea383da87b2fc81b1f8796f9420",
      "parents": [
        "16cd3951366a013d52006982108437d3343c2fae"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 15:36:44 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:40 2005 +0000"
      },
      "message": "Delete duplicate definitions.\n\nThis reverts 8f91ed6c2fec8cb746e4dc86a79247162b4c5a7a.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "a0f08209c685b4f7dccaf013da74e0e80986c477",
      "tree": "4226fd9fc00daa4db855ba5df0e12e990f55efe6",
      "parents": [
        "53c2df2f4ebbc1d8231ca7cc13ac5381230888b1"
      ],
      "author": {
        "name": "Atsushi Nemoto",
        "email": "anemo@mba.ocn.ne.jp",
        "time": "Sat Nov 05 02:02:54 2005 +0900"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:39 2005 +0000"
      },
      "message": "Define MAX_UDELAY_MS\n    \nIf HZ was 1000, mdelay(2) cause overflow on multiplication in\n__udelay.  We should define MAX_UDELAY_MS properly to prevent this.\n    \nSigned-off-by: Atsushi Nemoto \u003canemo@mba.ocn.ne.jp\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "53c2df2f4ebbc1d8231ca7cc13ac5381230888b1",
      "tree": "a7446ec56dd877d77ef7318b4bcdc3d38555ff0a",
      "parents": [
        "e329331aedeca0f2a7e15bd26a829ee1619c05e0"
      ],
      "author": {
        "name": "Atsushi Nemoto",
        "email": "anemo@mba.ocn.ne.jp",
        "time": "Thu Nov 03 01:01:15 2005 +0900"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:38 2005 +0000"
      },
      "message": "Use rtc_lock to protect RTC operations\n    \nMany RTC routines were not protected against each other, so there are\npotential races, for example, ntp-update against /dev/rtc.  This patch\nfixes them using rtc_lock.\n    \nSigned-off-by: Atsushi Nemoto \u003canemo@mba.ocn.ne.jp\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "e329331aedeca0f2a7e15bd26a829ee1619c05e0",
      "tree": "bce2bb4ecb6b6808e9e4ebb802808e851693fa40",
      "parents": [
        "28622795972984359b74aa36f9645c7ca23e460b"
      ],
      "author": {
        "name": "Atsushi Nemoto",
        "email": "anemo@mba.ocn.ne.jp",
        "time": "Thu Nov 03 01:02:40 2005 +0900"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:38 2005 +0000"
      },
      "message": "Remove mips_rtc_lock\n    \nThe mips_rtc_lock is no longer needed because RTC operations should be\nprotected already by other mechanism. (rtc_lock, local_irq_save, etc.)\n    \nAlso, locking whole rtc_get_time/rtc_set_time should be avoided while\nsome RTC routines might take very long time (a few seconds).\n    \nSigned-off-by: Atsushi Nemoto \u003canemo@mba.ocn.ne.jp\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "15b96a475706bfac71697a5d2f256750bdf749d3",
      "tree": "b4c6fc78b2427a826aa5c0eb58a3953aae735aba",
      "parents": [
        "307bd284c205616e02fb85557b97f0e3e969662e"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:37 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:37 2005 +0000"
      },
      "message": "Add .gitignore files for MIPS.\n"
    },
    {
      "commit": "08eaabfce0ba6eef7a0188888cc42f006914273e",
      "tree": "4b9d1f2a94b4209ec80f2a1f0ff97a99a4f569c6",
      "parents": [
        "6a4dea1ddea9d95c165ed15f08fa4e4dbbce9b82"
      ],
      "author": {
        "name": "Ilya A. Volynets-Evenbakh",
        "email": "ilya@total-knowledge.com",
        "time": "Wed Oct 26 15:30:21 2005 -0700"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:35 2005 +0000"
      },
      "message": "O2 parport definitions\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "b0c705161f3088d384f755b0d92822a2214cba70",
      "tree": "f16b0bf9e8ee778eec1bfd37c944e436a6ffe175",
      "parents": [
        "afc4841d8a0118fcce9fd520b21ec1da401603a3"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Oct 31 00:33:01 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:34 2005 +0000"
      },
      "message": "Add spaces to MODULE_PROC_FAMILY values.\n    \nOnly a cosmetic fix to make the output of modinfo look readable.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "afc4841d8a0118fcce9fd520b21ec1da401603a3",
      "tree": "25e16fdb4c00311e025efcd2ef448a3e97ebba12",
      "parents": [
        "0b154bb7d0cce80e9c0bcf11d4f9e71b59409d26"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Oct 31 00:30:39 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Nov 07 18:05:33 2005 +0000"
      },
      "message": "Turn rtlx upside down.\n    \n o Coding style\n o Race condition on open\n o Switch to dynamic major\n o Header file cleanup\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "8c65b4a60450590e79a28e9717ceffa9e4debb3f",
      "tree": "e0e42b5faee0a1c44746a36d9df7a8fbb2a2c24c",
      "parents": [
        "6fdcc2162285a8fc96ab12ff85086c37bceaa494"
      ],
      "author": {
        "name": "Tim Schmielau",
        "email": "tim@physik3.uni-rostock.de",
        "time": "Mon Nov 07 00:59:43 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 07:53:41 2005 -0800"
      },
      "message": "[PATCH] fix remaining missing includes\n\nFix more include file problems that surfaced since I submitted the previous\nfix-missing-includes.patch.  This should now allow not to include sched.h\nfrom module.h, which is done by a followup patch.\n\nSigned-off-by: Tim Schmielau \u003ctim@physik3.uni-rostock.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "727a53bd535fe3bde644ac346db27456ad964083",
      "tree": "5dddcea38f3dd417311b1bcbf5692ad2aebe8c7e",
      "parents": [
        "d269cdd0e22ef22f7f597ea917b1e8bdc6999fcb"
      ],
      "author": {
        "name": "Arthur Othieno",
        "email": "a.othieno@bluewin.ch",
        "time": "Sun Oct 30 15:03:14 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Oct 30 17:37:27 2005 -0800"
      },
      "message": "[PATCH] semaphore: Remove __MUTEX_INITIALIZER()\n\n__MUTEX_INITIALIZER() has no users, and equates to the more commonly used\nDECLARE_MUTEX(), thus making it pretty much redundant.  Remove it for good.\n\nSigned-off-by: Arthur Othieno \u003ca.othieno@bluewin.ch\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1426d7a81dea8e9d85f9d69de85ab04ba37018ab",
      "tree": "f2a7bbe0e60437cf73199b6003da677ee8ff0424",
      "parents": [
        "c7e9dd4dd0b8dd75c410011b3c8f9980112fd0f8"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Sun Oct 30 15:02:42 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Oct 30 17:37:22 2005 -0800"
      },
      "message": "[PATCH] vm: remove unused/broken page_pte[_prot] macros\n\nThis patch removes page_pte_prot and page_pte macros from all\narchitectures.  Some architectures define both, some only page_pte (broken)\nand others none.  These macros are not used anywhere.\n\npage_pte_prot(page, prot) is identical to mk_pte(page, prot) and\npage_pte(page) is identical to page_pte_prot(page, __pgprot(0)).\n\n* The following architectures define both page_pte_prot and page_pte\n\n  arm, arm26, ia64, sh64, sparc, sparc64\n\n* The following architectures define only page_pte (broken)\n\n  frv, i386, m32r, mips, sh, x86-64\n\n* All other architectures define neither\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "dfb7dac3af623a68262536437af008ed6aba4d88",
      "tree": "fdc8a61c73257dcf8866cf7b9213ce78d2422e7f",
      "parents": [
        "7024a9b884ed7657fb873e655cd124d85ae792a4"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@lst.de",
        "time": "Sun Oct 30 15:02:22 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Oct 30 17:37:20 2005 -0800"
      },
      "message": "[PATCH] unify sys_ptrace prototype\n\nMake sure we always return, as all syscalls should.  Also move the common\nprototype to \u003clinux/syscalls.h\u003e\n\nSigned-off-by: Christoph Hellwig \u003chch@lst.de\u003e\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8a1417de9e11f9f577499cd4fe89fa35f4bf54fa",
      "tree": "73194ecc1c84772aaf0296df7852a9e36a13cab6",
      "parents": [
        "dc41f94f770904f1fd63488ce4d30722ea514aad"
      ],
      "author": {
        "name": "Andrew Isaacson",
        "email": "adi@broadcom.com",
        "time": "Wed Oct 19 23:59:11 2005 -0700"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:49 2005 +0100"
      },
      "message": "BCM1480 HT support\n    \nPCI support code for PLX 7250 PCI-X tunnel on BCM91480B BigSur board.\n    \nSigned-Off-By: Andy Isaacson \u003cadi@broadcom.com\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "9a6dcea10308df50ed54d6d5a43c9f6c3e927118",
      "tree": "2739e2c12577925ffd99042b460d004f3eeb0bc8",
      "parents": [
        "f137e463b50aadba91bd116f99c59ccb9c15a12f"
      ],
      "author": {
        "name": "Andrew Isaacson",
        "email": "adi@broadcom.com",
        "time": "Wed Oct 19 23:57:11 2005 -0700"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:47 2005 +0100"
      },
      "message": "Support for BigSur board.\n    \nSigned-Off-By: Andy Isaacson \u003cadi@broadcom.com\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "93ce2f524e96571711029884e6340c790a029b94",
      "tree": "1cb69ac513d01b25a2c300c90a2f11c69c0290e9",
      "parents": [
        "4f19f990475dc4465ca6906ba03a55805d4c1402"
      ],
      "author": {
        "name": "Andrew Isaacson",
        "email": "adi@broadcom.com",
        "time": "Wed Oct 19 23:56:20 2005 -0700"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:46 2005 +0100"
      },
      "message": "Add support for SB1A CPU.\n    \nSigned-Off-By: Andy Isaacson \u003cadi@broadcom.com\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "4f19f990475dc4465ca6906ba03a55805d4c1402",
      "tree": "3e1597e7884d3414e28e220454d8ec3c8913ecd6",
      "parents": [
        "4cbf2beac2265b3619be9c8e88ff4ff45b49d7c2"
      ],
      "author": {
        "name": "Andrew Isaacson",
        "email": "adi@broadcom.com",
        "time": "Wed Oct 19 23:55:57 2005 -0700"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:46 2005 +0100"
      },
      "message": "Sibyte header cleanup\n    \nUpdate sibyte headers to match Broadcom internal copies:\n - comment cleanup and updates\n - fix LittleSur part number to match the board silkscreen\n    \nSigned-Off-By: Andy Isaacson \u003cadi@broadcom.com\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "4cbf2beac2265b3619be9c8e88ff4ff45b49d7c2",
      "tree": "fa7701264e60759b080b7953bcfad081a51e63d2",
      "parents": [
        "d121ced21d79eab7726bfe6b1e33da4ae86072c0"
      ],
      "author": {
        "name": "Andrew Isaacson",
        "email": "adi@broadcom.com",
        "time": "Wed Oct 19 23:55:11 2005 -0700"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:45 2005 +0100"
      },
      "message": "BCM1480 headers\n    \nAdd header files for BCM1480/1280/1455/1255 family of chips, and\nupdate sb1250 headers which are shared by BCM1480 family.\n    \nSigned-Off-By: Andy Isaacson \u003cadi@broadcom.com\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n\ndiff --git a/include/asm-mips/sibyte/bcm1480_int.h b/include/asm-mips/sibyte/bcm1480_int.h\nnew file mode 100644\n"
    },
    {
      "commit": "485a4a928a059a361c7363e7ce0eab330a09dbd3",
      "tree": "d003941b23a35254bc0bb86b5df065cb28f0fbaf",
      "parents": [
        "750ccf687ff9adbf2a16066a3a2757d0f761384c"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Oct 19 14:45:09 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:44 2005 +0100"
      },
      "message": "Make UL what should be UL.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "178086c86ac9738a76f1462e9ee4cbe8fd3b8c51",
      "tree": "7981d13e3037b51acfe83b7280804ea73c6b7013",
      "parents": [
        "6ec25809c143d875ed17b2e85d1dd894a1f4aba4"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Oct 13 17:07:54 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:42 2005 +0100"
      },
      "message": "Don\u0027t print file name and line in die and die_if_kernel.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "8f91ed6c2fec8cb746e4dc86a79247162b4c5a7a",
      "tree": "4ad1f37e01301ecfcb0fe51984221a84da17b32c",
      "parents": [
        "5e83d4305467c43af144d264674c7d7de303aeb3"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sun Oct 09 18:56:01 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:41 2005 +0100"
      },
      "message": "Define EOWNERDEAD and ENOTRECOVERABLE.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "beb3ca82fc0c2ec938b7446b006c8f34abb301b2",
      "tree": "ea89c648dbeae35bdbe9734b2138ecdebdb55fe1",
      "parents": [
        "4ee1303a787434d4994ae68d028ca025e339b434"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:40 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:40 2005 +0100"
      },
      "message": "More configcheck fixes.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "4ee1303a787434d4994ae68d028ca025e339b434",
      "tree": "66257cd009cffbed390c89c24ecd550134ad713a",
      "parents": [
        "b4f8c4230708711c3b12c095cf6a59e6d06a183d"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:40 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:40 2005 +0100"
      },
      "message": "2.6.14-rc1 updates for MIPS compat types.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "b4f8c4230708711c3b12c095cf6a59e6d06a183d",
      "tree": "bf9df3f47e55ad176103c150db4aa9f134cefaea",
      "parents": [
        "3cd9b6802d39c155d44fc8076b6c72c3f7e919ed"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:40 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:40 2005 +0100"
      },
      "message": "Complete the fcntl.h cleanup.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "3cd9b6802d39c155d44fc8076b6c72c3f7e919ed",
      "tree": "8f46a32cc97be3ffdcaeabf553b3c1700fa1283c",
      "parents": [
        "9383292f179e1907e7e7ade539ac8fd3b65c1e97"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:39 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:39 2005 +0100"
      },
      "message": "Cleanup Sibyte Kconfig a bit further.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "8592d4c00eeb92495eaab6374baaad79b30866ed",
      "tree": "e51ac8f7f302a4da49ced54b3f2c0520ebb42b7f",
      "parents": [
        "dbc571690ec4123e4e9fd6e731d8bdfa77b0d90e"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:38 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:38 2005 +0100"
      },
      "message": "Fix weirdness in \u003casm/bug.h\u003e\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "ec917c2c1ab4359a1d438e62daeb50cc42e632e1",
      "tree": "deb2e00bee354577e1f19b7b70c1a2037828a957",
      "parents": [
        "f92c1759a40a85f52b835c21b0ef6ce556b340c5"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Oct 07 16:58:15 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:37 2005 +0100"
      },
      "message": "Fixup a few lose ends in explicit support for MIPS R1/R2.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "5090dfb5bcf51479370b501e934edadc4d781f67",
      "tree": "77644f77c4884a8aee74fa985b166a1257cbe255",
      "parents": [
        "6aaf7786ed02da7797432708fbcdd242f9c0764e"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 01 17:34:35 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:33 2005 +0100"
      },
      "message": "Provide 64-bit address space definitions for the Sibyte SB1 CPU core.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "02cf2119684e52e97a8a90bd7630386e0f1a250a",
      "tree": "fbe051feacc403d7703bf27043ac048b5d2f2369",
      "parents": [
        "942d042d17c77febab9af6815b2e77f665d0f9c1"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 01 13:06:32 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:32 2005 +0100"
      },
      "message": "Cleanup the mess in cpu_cache_init.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "f5cfa980e535e1f77038f8037422594592208695",
      "tree": "108a922c864f5b95de9ff5f72235aaf43755f536",
      "parents": [
        "c5c96e13790122095fdf2ea74a8131e5f6b60c03"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 01 11:14:17 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:31 2005 +0100"
      },
      "message": "Use R4000 TLB routines for SB1 also.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "0015365cc68a5b6ad22dfdac19580aa9530731c3",
      "tree": "335f10463bf177ff114227b1ed010343f29f9699",
      "parents": [
        "c78cbf49c4edf2f9ca9e56d4b87a5d6ef08b7fed"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 01 00:00:00 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:30 2005 +0100"
      },
      "message": "Fix ARCH_KMALLOC_MINALIGN values on MIPS\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "c78cbf49c4edf2f9ca9e56d4b87a5d6ef08b7fed",
      "tree": "44bee3daac887df59c0d69658b19c21da4e1839f",
      "parents": [
        "b288f135872b651ebf6cd1565d0709a5e31997f7"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Sep 30 13:59:37 2005 +0100"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:30 2005 +0100"
      },
      "message": "Support for MIPSsim, the cycle accurate MIPS simulator.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "ea3d710fe572f0af4d242701973f7363b2146429",
      "tree": "b8c7138296d4e19b7101b51bfeb6677d27185bc7",
      "parents": [
        "9043f7e95d104795fcb03a2f762524babcd49da5"
      ],
      "author": {
        "name": "Daniel Jacobowitz",
        "email": "dan@debian.org",
        "time": "Wed Sep 28 18:11:15 2005 -0400"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:29 2005 +0100"
      },
      "message": "Revise MIPS 64-bit ptrace interface\n    \nChange the N32 debugging ABI to something more sane, and add support\nfor o32 and n32 debuggers to trace n64 programs.\n    \nSigned-off-by: Daniel Jacobowitz \u003cdan@codesourcery.com\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "9d58f302ca370c720fa47cb419f0b33eaa1a1132",
      "tree": "93d3572aba1d3bbdb8f0c0ac18fabe1b73ce22ad",
      "parents": [
        "495515b351957e4f6155d1696132f53acc4d06e5"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Sep 23 20:02:38 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:28 2005 +0100"
      },
      "message": "Glue again after removal of BUILD_BUG().\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "80b47346b0c83edab5d183376b41e9968bd5ac32",
      "tree": "4f51d042ad575f4f3654a5503d1893076658743a",
      "parents": [
        "0c9ec467db8bf9ae9a337b96cecd9b6b703b57a1"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Sep 22 14:55:21 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:27 2005 +0100"
      },
      "message": "SMP on Malta needs to define ARCH_HAS_IRQ_PER_CPU since 2.6.14-rc1.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n\ndiff --git a/include/asm-mips/mach-mips/irq.h b/include/asm-mips/mach-mips/irq.h\nnew file mode 100644\n"
    },
    {
      "commit": "bab056aafe428b326f7ee72db453c3b8947c7339",
      "tree": "aab9571a3b9e382168ae282d4c7c7d863fb82db3",
      "parents": [
        "e97288386a316e3960b758a60ae7cd17b3ee10e7"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Sep 20 13:43:51 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:26 2005 +0100"
      },
      "message": "Add SOCK_DCCP definition for MIPS also.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "e97288386a316e3960b758a60ae7cd17b3ee10e7",
      "tree": "5a40713cc8ceec43a9ed0d2f02373a1e5a2d648f",
      "parents": [
        "2cce8263228ac8926d675cfa19e50ca0af9e05e4"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Sep 20 10:56:26 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:25 2005 +0100"
      },
      "message": "The type of sum in csum_tcpudp_nofold is \"unsigned int\", so when we assign\nto it in an asm() block, and we\u0027re running on a system with 64-bit\nregisters, it is vitally important that we sign extend it correctly before\nreturning to C.  Otherwise the stray high bits will be preserved into\ncsum_fold, and on the SB-1 processor, 32-bit arithmetic on a non\nsign-extended register will yield surprising results.\n    \nThis caused incorrect checksums in some UDP packets for NFS root.  The\nproblem was mild when using a 10.0.1.x IP address, but severe when\nusing 192.168.1.x.\n    \nSigned-off-by: Daniel Jacobowitz \u003cdan@codesourcery.com\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "2cce8263228ac8926d675cfa19e50ca0af9e05e4",
      "tree": "9d6ab290277c0b85bdd1bb9eeae40c1cbb7354c8",
      "parents": [
        "13bb199f98d179664cc24ab2e4762ef8ab059acc"
      ],
      "author": {
        "name": "Pete Popov",
        "email": "ppopov@embeddedalley.com",
        "time": "Sun Sep 18 11:18:10 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:25 2005 +0100"
      },
      "message": "Kernel gpio/2 routines that will be used by some drivers.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "d6460827af0763dc2f4a5cf0455cbf1e3a9ccb77",
      "tree": "eeac9842013ab85276fff3ee64928c9c4cd1fd2c",
      "parents": [
        "efe29c0f34dc3ee3511e46458f335edb7ee50327"
      ],
      "author": {
        "name": "Pete Popov",
        "email": "ppopov@embeddedalley.com",
        "time": "Sat Sep 17 00:38:10 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:24 2005 +0100"
      },
      "message": "Updated pcmcia driver with pb1200 and db1200 support.\nUpdated db1200_defconfig so pcmcia is enabled by default.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "870d3d98eb343fa0f079773653f6dbdd17f410ed",
      "tree": "334a8efce430cfc0244ab6506444d4918fdbcb15",
      "parents": [
        "61ed242d7e9d96dfb2e2f37058f5c822e5c6ca55"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Sep 15 08:52:34 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:23 2005 +0100"
      },
      "message": "Reorder \u0026 reformat a bit.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "61ed7f08b691677a13486d920dcd931b7d31719c",
      "tree": "dc9c8741ee0326148fd8fc3e7a650a49c259c91e",
      "parents": [
        "ebfaebae364c3631c70467bf89a63b341d0f0949"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Sep 15 08:52:34 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:22 2005 +0100"
      },
      "message": "The values for SO_SNDBUFFORCE / SO_RCVBUFFORCE were already taken ...\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "ebfaebae364c3631c70467bf89a63b341d0f0949",
      "tree": "837833970842137f0ca9a4992e30a30a12cde241",
      "parents": [
        "9dbdfce85c165faa45509ca3b18deaa5f9dfbc12"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Sep 15 08:52:34 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:21 2005 +0100"
      },
      "message": "Futexes for MIPS, for the time being only the R10000_LLSC_WAR version.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "9dbdfce85c165faa45509ca3b18deaa5f9dfbc12",
      "tree": "9e000f50f4a7483210b4f0df48de6918e1511dc6",
      "parents": [
        "26a940e21752e0de8f068f77dad606a7d1986937"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Sep 15 08:52:34 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:21 2005 +0100"
      },
      "message": "Define pcibus_to_node() for IP27.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "26a940e21752e0de8f068f77dad606a7d1986937",
      "tree": "88e46225e19c4c72fa6914a21afb28c6ea52bfc6",
      "parents": [
        "64abf64d10b3a547becefeb26394dfbefac273fb"
      ],
      "author": {
        "name": "Pete Popov",
        "email": "ppopov@embeddedalley.com",
        "time": "Thu Sep 15 08:03:12 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:20 2005 +0100"
      },
      "message": "Cleaned up AMD Au1200 IDE driver:\n- converted to platform bus\n- removed pci dependencies\n- removed virt_to_phys/phys_to_virt calls\n    \nSystem now can root off of a disk.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n\ndiff --git a/Documentation/mips/AU1xxx_IDE.README b/Documentation/mips/AU1xxx_IDE.README\nnew file mode 100644\n"
    },
    {
      "commit": "4f94afa258c3e574a8d985160e87146a5183944b",
      "tree": "7fcc98c8f7852e6640ab6a59c3500bf7328b7c62",
      "parents": [
        "57e3e3b9187765f042c131db1a8b66bee67fc5fb"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Sep 14 14:52:16 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:19 2005 +0100"
      },
      "message": "Delete the SABLE_RTL case.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "097975fc6651ee8f43ffc930ae0c4851ec979454",
      "tree": "a95ce1214561fed94c1fff93e23457b0a4c9edaa",
      "parents": [
        "10a3dabddd79473130c6ded7f7cef1d55fccc115"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Sep 12 20:22:07 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:18 2005 +0100"
      },
      "message": "Provide MODULE_ARCH_VERMAGIC for MIPS.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "98e316d4b151111d5a8ff2b3a684a9300634d83f",
      "tree": "fefb69d133561477a5b6fde3a10dee6d79d637ae",
      "parents": [
        "d8748a3abf1f388438ba2d812c1f46c549856afe"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Mon Sep 05 10:31:27 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:16 2005 +0100"
      },
      "message": "Move MIPS Technologies processor IDs to where they belong.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "5bcb9a58e6e3eda4af87193c8746d15e45f51628",
      "tree": "a002040a806a115d3a2b4fece08946c90e86ec8a",
      "parents": [
        "330cfe016bec3cdf517a626083bcb0d7b1854744"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Sep 01 20:42:46 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:15 2005 +0100"
      },
      "message": "Move genrtc.c\u0027s functions into \u003casm/rtc.h\u003e\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "65dd7026a906f7a70ef326f18540c0b648a0ffed",
      "tree": "02ad69bcba2f6b258cc8063ca735372158babb24",
      "parents": [
        "aaa49075c6a75332dac6fb401518c0a72b103443"
      ],
      "author": {
        "name": "Thiemo Seufer",
        "email": "ths@networkno.de",
        "time": "Thu Sep 01 09:02:08 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:14 2005 +0100"
      },
      "message": "Define some more common ip22 CPU features.\n\nSigned-off-by: Thiemo Seufer \u003cths@networkno.de\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "aaa49075c6a75332dac6fb401518c0a72b103443",
      "tree": "2b3475e5af739225e51892c45d09272f387ed0dc",
      "parents": [
        "2fe25f67a55ea0e6416304fa43d58fae93b7300a"
      ],
      "author": {
        "name": "Thiemo Seufer",
        "email": "ths@networkno.de",
        "time": "Thu Sep 01 09:00:51 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:14 2005 +0100"
      },
      "message": "Typo fix.\n\nSigned-off-by: Thiemo Seufer \u003cths@networkno.de\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "2fe25f67a55ea0e6416304fa43d58fae93b7300a",
      "tree": "a51ec17e1ae43c587dad6ca6d4c2e183fb1a5f81",
      "parents": [
        "f8670e66dc3f08512b57cb7872932fb0710de589"
      ],
      "author": {
        "name": "Thiemo Seufer",
        "email": "ths@networkno.de",
        "time": "Thu Sep 01 08:59:55 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:14 2005 +0100"
      },
      "message": "More .set push/pop encapsulation, more eyefriendly code formatting.\n\nSigned-off-by: Thiemo Seufer \u003cths@networkno.de\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "f8670e66dc3f08512b57cb7872932fb0710de589",
      "tree": "d45b63678eed1e093825a058e27446e766fc67e6",
      "parents": [
        "37c8c642ea6deb4837c247de062e3f4c5ae2b282"
      ],
      "author": {
        "name": "Thiemo Seufer",
        "email": "ths@networkno.de",
        "time": "Thu Sep 01 08:56:18 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:13 2005 +0100"
      },
      "message": "Fix MAP_BASE for 64bit ip22.\n\nSigned-off-by: Thiemo Seufer \u003cths@networkno.de\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "f99d3023f317fb3916b46465cc07a0cad3faa0a5",
      "tree": "727715d292ec4752f71423922e0511e82e585090",
      "parents": [
        "e607d6c8b8dd684936fda4b2cc37ad9f9104bed4"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Aug 25 16:22:09 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:11 2005 +0100"
      },
      "message": "Sprinkle a few more .set mipsX over xchg to make sure we dont\u0027 end up with\n64-bit instructions on 32-bit processors, they tend to be unhappy about\nthat kind of food ;-)\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "fabffc13ed720eea986f80f432cedb4550f464ed",
      "tree": "a9e318deef331e9c551e126bdc9d2501097ef534",
      "parents": [
        "27c7c1657df54352838d176b39e119b799bf7855"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Aug 19 14:29:15 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:11 2005 +0100"
      },
      "message": "Remove workaround for binutils 2.15 assembler bug; this version is not\nsuitable to reliably build kernels anymore anyway and 2.16 has this\nfixed.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "27c7c1657df54352838d176b39e119b799bf7855",
      "tree": "6bbb4e2cd33f4d3abf087fc72915673f981889f1",
      "parents": [
        "340ee4b98c0543b5632cac975a7449a2d28762d8"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Aug 17 17:57:34 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:10 2005 +0100"
      },
      "message": "Drop might_sleep() calls from get_user() \u0026 co.  This should fix the issue\nin http://www.linux-mips.org/cgi-bin/mesg.cgi?a\u003dlinux-mips\u0026i\u003d200508171321.20094.Joshua.Wise%40sicortex.com and it\u0027s the right thing to do anyway because\nit was inflating those functions way too much.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "340ee4b98c0543b5632cac975a7449a2d28762d8",
      "tree": "94b7315d53d6eadd145c8691f0a9925f5ae389f5",
      "parents": [
        "d03d0a57754cb820d318d2234c60b728eb38a94d"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Aug 17 17:44:08 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:10 2005 +0100"
      },
      "message": "Virtual SMP support for the 34K.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "533330bf7fa19854f3b4accd2b84ff58e3ee160f",
      "tree": "841eb3e66c58a34a7f57701fa50fd6d7bbafcda5",
      "parents": [
        "0952e2905c6bc2e12a43910c7eb898b6481a57b5"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Aug 17 10:11:10 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:09 2005 +0100"
      },
      "message": "On CONFIG_64BIT_PHYS_ADDR, pfn always fits in \u0027unsigned long\u0027, but\npfn\u003c\u003cPAGE_SHIFT sometimes extends beyond.  The pte is big enough to hold\n\u0027long long\u0027, but the shift in pfn_pte() needs to do its calculation with\nenough bits to hold the result.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "0952e2905c6bc2e12a43910c7eb898b6481a57b5",
      "tree": "13ed9bcf42589af9a6cf3331488cc4170ff5192f",
      "parents": [
        "a50b3e2763dc23f8427b7f4a199235dfe9a073c0"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Aug 17 10:03:03 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:08 2005 +0100"
      },
      "message": "Fix parenthesis in macros.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "8b200ce4a697fbbf446de3a0874232d7aaa3f6d3",
      "tree": "ff0ae21d04f4d590b8bdd51c0a7f8006f7d7cc20",
      "parents": [
        "ac351d947390c00b8ece3cde997fe173fc8649ed"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Aug 16 17:54:41 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:07 2005 +0100"
      },
      "message": "Define cpu_icache_snoops_remote_store.  This is slight abuse of something\nwhich originally was meant for SMP cache managment but it can be argued\nto apply on the 34K as well.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "3fd5646cac36e2ea244bb3455a66afb1777b9a92",
      "tree": "56c865cbec69360581e0106c0f7e3cd6b83734eb",
      "parents": [
        "e027802e985f1cca752bf3b2e7eecae05031699f"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Aug 16 16:54:12 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:05 2005 +0100"
      },
      "message": "Add missing space.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "479a0e3e0245fa116412bc105ab1161636c220cb",
      "tree": "3aa73f8d4626f1f29821df184fa9d6df9d08e6d4",
      "parents": [
        "fd0197d26208b896caa958cc1780e8016f439711"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Aug 16 15:44:06 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:32:02 2005 +0100"
      },
      "message": "Support for CoreFPGA-3.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "23fbee9dd5d2a41d36af49ff8e1669fb0c29fda8",
      "tree": "4e24699269b9d4d2655d961e7a0ffb29931e9b2d",
      "parents": [
        "132940401174ed04f9e8f1ae2dad6f47da26ee0a"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Jul 25 22:45:45 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:57 2005 +0100"
      },
      "message": "Support for Toshiba\u0027s RBHMA4500 eval board for the TX4938.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "bdf21b18b4abf983db38f04ef7fec88f47389867",
      "tree": "b7e551f09f0ee39f4a59132be4c0890e1ba80d91",
      "parents": [
        "e01402b115cccb6357f956649487aca2c6f7fbba"
      ],
      "author": {
        "name": "Pete Popov",
        "email": "ppopov@embeddedalley.com",
        "time": "Thu Jul 14 17:47:57 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:54 2005 +0100"
      },
      "message": "Philips PNX8550 support: MIPS32-like core with 2 Trimedias on it.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "e01402b115cccb6357f956649487aca2c6f7fbba",
      "tree": "256e14f8d2762de98b992219b1a47e8f56b4b0da",
      "parents": [
        "86071b637db7baf599df26fdf820dce2fc55ca9f"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Jul 14 15:57:16 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:53 2005 +0100"
      },
      "message": "More AP / SP bits for the 34K, the Malta bits and things.  Still wants\na little polishing.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "86071b637db7baf599df26fdf820dce2fc55ca9f",
      "tree": "71d91172984777b5b39908cbafad757d7a2556a6",
      "parents": [
        "7e35952baa9d7424dfb95ca8aff7239a1f6ec011"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Jul 14 13:25:05 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:53 2005 +0100"
      },
      "message": "Cleanups.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "7e35952baa9d7424dfb95ca8aff7239a1f6ec011",
      "tree": "6412561c7dddfcc903491be1d6bb784646e2e3a6",
      "parents": [
        "a0c3a5b5a84df11cf6a44fc04cb6f7c0525123a8"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Jul 14 09:42:32 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:52 2005 +0100"
      },
      "message": "Move Origin crapola into a machine-specific header file.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "8f40611d2b184ca5d525075d273854929cf8d1d0",
      "tree": "962ef8dfa515cee330f506dc4ceac83670d0f84e",
      "parents": [
        "699dbc90e8c7baecae197fb331773f505a46a1eb"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Jul 14 07:34:18 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:51 2005 +0100"
      },
      "message": "Detect the MIPS R2 vectored interrupt, external interrupt controller\noptions and the precense of the MT ASE.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "699dbc90e8c7baecae197fb331773f505a46a1eb",
      "tree": "b5a30418a46b2502f211e7fa92db194dbfdb5ad8",
      "parents": [
        "f10fae02403fb8af141b0a440074a944ccd63504"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Jul 14 07:30:27 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:51 2005 +0100"
      },
      "message": "Macros to access the register of processors using the new MIPS\nMultithreading ASE, also know as MT ASE.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n\ndiff --git a/include/asm-mips/mipsmtregs.h b/include/asm-mips/mipsmtregs.h\nnew file mode 100644\n"
    },
    {
      "commit": "f10fae02403fb8af141b0a440074a944ccd63504",
      "tree": "a401c82cc2692955faa284111bef23ece0980147",
      "parents": [
        "10f6567e63a0ba9b473da9ea60452ffdb07ced02"
      ],
      "author": {
        "name": "Pete Popov",
        "email": "ppopov@embeddedalley.com",
        "time": "Thu Jul 14 00:17:05 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:50 2005 +0100"
      },
      "message": "Fix the fixup_bigphys_addr compile problem.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "10f6567e63a0ba9b473da9ea60452ffdb07ced02",
      "tree": "e0fcb28865545f099a1b89b5f21df5a0fbe4fe57",
      "parents": [
        "7a0fc58cd9b004672b38537de276f8f188d5e84a"
      ],
      "author": {
        "name": "Pete Popov",
        "email": "ppopov@embeddedalley.com",
        "time": "Thu Jul 14 00:16:06 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:49 2005 +0100"
      },
      "message": "Removed __ilog2 since it\u0027s no longer needed and conflicts with the\ngeneric one.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "7a0fc58cd9b004672b38537de276f8f188d5e84a",
      "tree": "68cc64c5bf4fc62e5aae4b38357125aaf6cc6cdd",
      "parents": [
        "55d04dff0fcf5d1c3f0d6edf6df86d82fa4c053b"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Jul 13 19:47:28 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:49 2005 +0100"
      },
      "message": "A few more macros to access MIPS R2 architecture registers.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "97fb5de194a244df3a257bbddaaad911641af381",
      "tree": "e55d735aca483e92326b8316b5d84f2df71cdb5a",
      "parents": [
        "f039b5d3661a9b95bd86aa5a268c766b53df50e5"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Jul 13 17:58:20 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:47 2005 +0100"
      },
      "message": "Add EF_MIPS_ARCH_32R2 and EF_MIPS_ARCH_64R2 for tagging of R2 binaries.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "f039b5d3661a9b95bd86aa5a268c766b53df50e5",
      "tree": "3cf7ba67acd981430a8ea285ecc558d1d0b9f602",
      "parents": [
        "7db36c858c01218bf02931c39076b082c42d964c"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Jul 13 17:56:24 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:47 2005 +0100"
      },
      "message": "Add a few more SHN_MIPS_* symbols from glibc.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "7db36c858c01218bf02931c39076b082c42d964c",
      "tree": "eb74babda1c99cb89dd052e9b9396d7fc0870ce0",
      "parents": [
        "ec74e361f1e71a2498e48b62abdc4bd8d2423354"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Jul 13 11:48:45 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:47 2005 +0100"
      },
      "message": "Add inotify syscalls for MIPS.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "cc61c1fede7d02cb8133ab0952ca3f3ba1f7fbb1",
      "tree": "9ad2708ba9ce5038dd6df888d1fc69de055c35fd",
      "parents": [
        "bbc7f22f6dca8a075b565ade49e9a982f89707c3"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Jul 12 18:35:38 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:46 2005 +0100"
      },
      "message": "MIPS R2 instruction hazard handling.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "bbc7f22f6dca8a075b565ade49e9a982f89707c3",
      "tree": "06f2055cd1bb17f1330023bf111dc9fa7b1d589c",
      "parents": [
        "079ef8bb809c701fa0ab09d8984262693b854f94"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Jul 12 16:12:05 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:45 2005 +0100"
      },
      "message": "Detect the 34K.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "ff88f8a3d290c213f90d40aa81bdea5c054f58b5",
      "tree": "c8d57d8024e57b5fc8b7e69f720f92c41a4ffefb",
      "parents": [
        "1e5f1caa5dc4398298a2b7c2638855881a5057c5"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Jul 12 14:54:31 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:44 2005 +0100"
      },
      "message": "Use ei / di MIPS32 R2 instructions if available.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    }
  ],
  "next": "6590326505e3f7b4b57793e84760e9920c3c56b4"
}
