)]}'
{
  "log": [
    {
      "commit": "4294621f41a85497019fae64341aa5351a1921b7",
      "tree": "fdeb7eb44384a99d0679ffa6de5019bab0ea2166",
      "parents": [
        "404351e67a9facb475abf1492245374a28d13e90"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Sat Oct 29 18:16:05 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:38 2005 -0700"
      },
      "message": "[PATCH] mm: rss \u003d file_rss + anon_rss\n\nI was lazy when we added anon_rss, and chose to change as few places as\npossible.  So currently each anonymous page has to be counted twice, in rss\nand in anon_rss.  Which won\u0027t be so good if those are atomic counts in some\nconfigurations.\n\nChange that around: keep file_rss and anon_rss separately, and add them\ntogether (with get_mm_rss macro) when the total is needed - reading two\natomics is much cheaper than updating two atomics.  And update anon_rss\nupfront, typically in memory.c, not tucked away in page_add_anon_rmap.\n\nSigned-off-by: 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": "fc2acab31be8e869b2d5f6de12f557f6f054f19c",
      "tree": "60cf419f5e88c3c46d39675a14649ea1e5849f03",
      "parents": [
        "4d6ddfa9242bc3d27fb0f7248f6fdee0299c731f"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Sat Oct 29 18:16:03 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:37 2005 -0700"
      },
      "message": "[PATCH] mm: tlb_finish_mmu forget rss\n\nzap_pte_range has been counting the pages it frees in tlb-\u003efreed, then\ntlb_finish_mmu has used that to update the mm\u0027s rss.  That got stranger when I\nadded anon_rss, yet updated it by a different route; and stranger when rss and\nanon_rss became mm_counters with special access macros.  And it would no\nlonger be viable if we\u0027re relying on page_table_lock to stabilize the\nmm_counter, but calling tlb_finish_mmu outside that lock.\n\nRemove the mmu_gather\u0027s freed field, let tlb_finish_mmu stick to its own\nbusiness, just decrement the rss mm_counter in zap_pte_range (yes, there was\nsome point to batching the update, and a subsequent patch restores that).  And\nforget the anal paranoia of first reading the counter to avoid going negative\n- if rss does go negative, just fix that bug.\n\nRemove the mmu_gather\u0027s flushes and avoided_flushes from arm and arm26: no use\nwas being made of them.  But arm26 alone was actually using the freed, in the\nway some others use need_flush: give it a need_flush.  arm26 seems to prefer\nspaces to tabs here: respect that.\n\nSigned-off-by: 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": "4d6ddfa9242bc3d27fb0f7248f6fdee0299c731f",
      "tree": "da5b753df64e7163a35487005e50a3b90b0b0b9b",
      "parents": [
        "15a23ffa2fc91cebdac44d4aee994f59d5c28dc0"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Sat Oct 29 18:16:02 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:37 2005 -0700"
      },
      "message": "[PATCH] mm: tlb_is_full_mm was obscure\n\ntlb_is_full_mm?  What does that mean?  The TLB is full?  No, it means that the\nmm\u0027s last user has gone and the whole mm is being torn down.  And it\u0027s an\ninline function because sparc64 uses a different (slightly better)\n\"tlb_frozen\" name for the flag others call \"fullmm\".\n\nAnd now the ptep_get_and_clear_full macro used in zap_pte_range refers\ndirectly to tlb-\u003efullmm, which would be wrong for sparc64.  Rather than\ncorrect that, I\u0027d prefer to scrap tlb_is_full_mm altogether, and change\nsparc64 to just use the same poor name as everyone else - is that okay?\n\nSigned-off-by: 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": "15a23ffa2fc91cebdac44d4aee994f59d5c28dc0",
      "tree": "5006935b29246c1ae07a7abc6a384f6b547293ce",
      "parents": [
        "7be7a546994f1222b2312fd348da14e16b6b7b42"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Sat Oct 29 18:16:01 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:37 2005 -0700"
      },
      "message": "[PATCH] mm: tlb_gather_mmu get_cpu_var\n\ntlb_gather_mmu dates from before kernel preemption was allowed, and uses\nsmp_processor_id or __get_cpu_var to find its per-cpu mmu_gather.  That works\nbecause it\u0027s currently only called after getting page_table_lock, which is not\ndropped until after the matching tlb_finish_mmu.  But don\u0027t rely on that, it\nwill soon change: now disable preemption internally by proper get_cpu_var in\ntlb_gather_mmu, put_cpu_var in tlb_finish_mmu.\n\nSigned-off-by: 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": "65500d234e74fc4e8f18e1a429bc24e51e75de4a",
      "tree": "2bae8c3622b6537dbd142ba2744c7cc9430d3b69",
      "parents": [
        "7c1fd6b964860cdcf44b6b98d7dcd8cc16a0a26d"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Sat Oct 29 18:15:59 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:37 2005 -0700"
      },
      "message": "[PATCH] mm: page fault handlers tidyup\n\nImpose a little more consistency on the page fault handlers do_wp_page,\ndo_swap_page, do_anonymous_page, do_no_page, do_file_page: why not pass their\narguments in the same order, called the same names?\n\nbreak_cow is all very well, but what it did was inlined elsewhere: easier to\ncompare if it\u0027s brought back into do_wp_page.\n\ndo_file_page\u0027s fallback to do_no_page dates from a time when we were testing\npte_file by using it wherever possible: currently it\u0027s peculiar to nonlinear\nvmas, so just check that.  BUG_ON if not?  Better not, it\u0027s probably page\ntable corruption, so just show the pte: hmm, there\u0027s a pte_ERROR macro, let\u0027s\nuse that for do_wp_page\u0027s invalid pfn too.\n\nHah!  Someone in the ppc64 world noticed pte_ERROR was unused so removed it:\nrestored (and say \"pud\" not \"pmd\" in its pud_ERROR).\n\nSigned-off-by: 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": "a8fb5618dab7e45c8990f3155628d772a9ed45f9",
      "tree": "77977b8fb2f57c855da9e3168977521e8393776a",
      "parents": [
        "2c0b381467bc2997be9d741a152f3fc75785eedc"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Sat Oct 29 18:15:57 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:37 2005 -0700"
      },
      "message": "[PATCH] mm: unlink_file_vma, remove_vma\n\nDivide remove_vm_struct into two parts: first anon_vma_unlink plus\nunlink_file_vma, to unlink the vma from the list and tree by which rmap or\nvmtruncate might find it; then remove_vma to close, fput and free.\n\nThe intention here is to do the anon_vma_unlink and unlink_file_vma earlier,\nin free_pgtables before freeing any page tables: so we can be sure that any\npage tables traversed by rmap and vmtruncate are stable (and other, ordinary\ncases are stabilized by holding mmap_sem).\n\nThis will be crucial to traversing pgd,pud,pmd without page_table_lock.  But\ntesting the split-out patch showed that lifting the page_table_lock is\nsymbiotically necessary to make this change - the lock ordering is wrong to\nmove those unlinks into free_pgtables while it\u0027s under ptlock.\n\nSigned-off-by: 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": "ab50b8ed818016cfecd747d6d4bb9139986bc029",
      "tree": "33c666578c14dccce05b3f7a5538405098eebcc4",
      "parents": [
        "72866f6f277ec0ddd6df7a3b6ecdcf59a28de115"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Sat Oct 29 18:15:56 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:37 2005 -0700"
      },
      "message": "[PATCH] mm: vm_stat_account unshackled\n\nThe original vm_stat_account has fallen into disuse, with only one user, and\nonly one user of vm_stat_unaccount.  It\u0027s easier to keep track if we convert\nthem all to __vm_stat_account, then free it from its __shackles.\n\nSigned-off-by: 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": "dfcd3c0dc426bb75770c34b40e14f2da8845ea62",
      "tree": "bd7e9f8463a18025c4775c6cdf22abbbd4236b64",
      "parents": [
        "e46a5e28c201f703c18b47b108bfddec44f897c4"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "ak@suse.de",
        "time": "Sat Oct 29 18:15:48 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:35 2005 -0700"
      },
      "message": "[PATCH] Convert mempolicies to nodemask_t\n\nThe NUMA policy code predated nodemask_t so it used open coded bitmaps.\nConvert everything to nodemask_t.  Big patch, but shouldn\u0027t have any actual\nbehaviour changes (except I removed one unnecessary check against\nnode_online_map and one unnecessary BUG_ON)\n\nSigned-off-by: \"Andi Kleen\" \u003cak@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "eb92f4ef320b738e41ad43476a5d05c8a20d5cc7",
      "tree": "f9a6bb78a0561587f142b2b1208819f6cffe9835",
      "parents": [
        "63f324cf0792ed69089b79d6921ba3aaea97af50"
      ],
      "author": {
        "name": "Rik Van Riel",
        "email": "riel@redhat.com",
        "time": "Sat Oct 29 18:15:44 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:35 2005 -0700"
      },
      "message": "[PATCH] add sem_is_read/write_locked()\n\nAdd sem_is_read/write_locked functions to the read/write semaphores, along the\nsame lines of the *_is_locked spinlock functions.  The swap token tuning patch\nuses sem_is_read_locked; sem_is_write_locked is added for completeness.\n\nSigned-off-by: Rik van Riel \u003criel@redhat.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "63f324cf0792ed69089b79d6921ba3aaea97af50",
      "tree": "007ec8ea5c2344ced61de396c2484a5a49cc9aac",
      "parents": [
        "4b8f573b5db02a3017afbba49026a6aef480174f"
      ],
      "author": {
        "name": "Ivan Kokshaysky",
        "email": "ink@jurassic.park.msu.ru",
        "time": "Sat Oct 29 18:15:43 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:35 2005 -0700"
      },
      "message": "[PATCH] fix alpha breakage\n\nbarrier.h uses barrier() in non-SMP case.  And doesn\u0027t include compiler.h.\n\nCc: Al Viro \u003cviro@ftp.linux.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "930fc45a49ddebe7555cc5c837d82b9c27e65ff4",
      "tree": "f0e4b32bd4e2f951c4eb1bc1fcdeefdcbb8e6195",
      "parents": [
        "be15cd72d256e5eb3261a781b8507fac83ab33f6"
      ],
      "author": {
        "name": "Christoph Lameter",
        "email": "clameter@engr.sgi.com",
        "time": "Sat Oct 29 18:15:41 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 21:40:35 2005 -0700"
      },
      "message": "[PATCH] vmalloc_node\n\nThis patch adds\n\nvmalloc_node(size, node)\t-\u003e Allocate necessary memory on the specified node\n\nand\n\nget_vm_area_node(size, flags, node)\n\nand the other functions that it depends on.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "be15cd72d256e5eb3261a781b8507fac83ab33f6",
      "tree": "1a8f95a9960e03149d27d935da25b768878feb3e",
      "parents": [
        "e9d52234e35b27ea4ea5f2ab64ca47b1a0c740ab",
        "37d07b72ef58f2d5ec7701ab75084fbeee0e503e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 14:02:16 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 14:02:16 2005 -0700"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n"
    },
    {
      "commit": "37d07b72ef58f2d5ec7701ab75084fbeee0e503e",
      "tree": "da42fbad5b8ac6c79a258a46aff5f5d338ac138f",
      "parents": [
        "f09b99799991c7c3ba441162406247f5df077322"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Sat Oct 29 21:44:56 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Oct 29 21:44:56 2005 +0100"
      },
      "message": "[ARM] 3061/1: cleanup the XIP link address mess\n\nPatch from Nicolas Pitre\n\nSince vmlinux.lds.S is preprocessed, we can use the defines already\npresent in asm/memory.h (allowed by patch #3060) for the XIP kernel link\naddress instead of relying on a duplicated Makefile hardcoded value, and\nalso get rid of its dependency on awk to handle it at the same time.\n\nWhile at it let\u0027s clean XIP stuff even further and make things clearer\nin head.S with a nice code reduction.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "f09b99799991c7c3ba441162406247f5df077322",
      "tree": "6284aa6638744c26059001a11da3267f91d50082",
      "parents": [
        "c514e58cb8eac0d21f4ab5011df75a09eb5edd50"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Sat Oct 29 21:44:55 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Oct 29 21:44:55 2005 +0100"
      },
      "message": "[ARM] 3060/1: allow constants found in asm/memory.h to be used in asm code\n\nPatch from Nicolas Pitre\n\nThis patch allows for assorted type of cleanups by letting assembly code\nuse the same set of defines for constant values and avoid duplicated\ndefinitions that might not always be in sync, or that might simply be\nconfusing due to the different names for the same thing.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "e9d52234e35b27ea4ea5f2ab64ca47b1a0c740ab",
      "tree": "318d37a7d55c79e6f7d86163fb28e0eccbb0fe83",
      "parents": [
        "955c5038823748e529a49f0e33ab635d92843500",
        "09af7b443c257460d45cb6c1896d29f173fef35b"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 12:19:15 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Oct 29 12:19:15 2005 -0700"
      },
      "message": "Merge branch \u0027upstream\u0027 of git://ftp.linux-mips.org/pub/scm/upstream-linus\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"
    },
    {
      "commit": "6590326505e3f7b4b57793e84760e9920c3c56b4",
      "tree": "920ab56cb70895393e57b356c28d6eb37932c63f",
      "parents": [
        "e5de3b468795e4c58a9f0702630d28707b3ae011"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Jul 12 12:50:30 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:43 2005 +0100"
      },
      "message": "Use clz / dclz on MIPS32 / MIPS64 processors.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "60080265a13ea43f0ebdcd25671dcab05ed01308",
      "tree": "5172178f73d65bb8cbb129ad3e49a04af7e0b7ce",
      "parents": [
        "129bc8f78b468df6824dd1584829f10aa3a69c27"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Jul 11 20:45:51 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:42 2005 +0100"
      },
      "message": "Define kmap_atomic_pfn() for MIPS.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "c0ec406c80a65590dbdb60ed0d0c8e73e6c3884f",
      "tree": "faf7c0ed89dd2473951db9c464eb4e301ceab680",
      "parents": [
        "3ef33e68c1e956bb9a93734062076edcccca7070"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Jul 11 10:37:51 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:41 2005 +0100"
      },
      "message": "Fix endianess bugs.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "04988d6fda5c1cc670bd4c4d563b3443cf7ccce7",
      "tree": "dc3ead52d31bb9014f1f8ebea75525364d699b15",
      "parents": [
        "9556ac2fa1b16ec702e200fc558636a09a50f0e0"
      ],
      "author": {
        "name": "Thiemo Seufer",
        "email": "ths@networkno.de",
        "time": "Fri Jul 08 09:17:05 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:40 2005 +0100"
      },
      "message": "Protect noat assembly with .set push/pop and make it somewhat readable.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: Thiemo Seufer \u003cths@networkno.de\u003e\n"
    },
    {
      "commit": "9556ac2fa1b16ec702e200fc558636a09a50f0e0",
      "tree": "39b51399de0785b07d7ad8bbcdc9151fb33fe073",
      "parents": [
        "4552074577c639da32dd58a617ea11ac3e28912b"
      ],
      "author": {
        "name": "Thiemo Seufer",
        "email": "ths@networkno.de",
        "time": "Fri Jul 08 08:03:48 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:39 2005 +0100"
      },
      "message": "Fix get_saved_sp for 64bit address space. Simplify set_save_sp.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: Thiemo Seufer \u003cths@networkno.de\u003e\n"
    },
    {
      "commit": "4552074577c639da32dd58a617ea11ac3e28912b",
      "tree": "a9334c76c2885a0349384746a27cdbae6a69f2d7",
      "parents": [
        "85f14bf2cb084990970f897463dea66182d28acf"
      ],
      "author": {
        "name": "Thiemo Seufer",
        "email": "ths@networkno.de",
        "time": "Fri Jul 08 07:36:51 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:39 2005 +0100"
      },
      "message": "IP30 Identification.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: Thiemo Seufer \u003cths@networkno.de\u003e\n"
    },
    {
      "commit": "6e760c8dae7d6c47eff011dd4aad53c94d30494b",
      "tree": "141699aef6e0a3b1fef03ec0c5cc8d8958851078",
      "parents": [
        "ca4973dd559b702e265688e724f356d289b8cd67"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Jul 06 12:08:11 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:37 2005 +0100"
      },
      "message": "Rename CONFIG_CPU_MIPS{32,64} to CONFIG_CPU_MIPS{32|64}_R1.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "a5fc9c0bbee8b91025993a49a9176a88380aef3c",
      "tree": "e68ee45e852028ddde712abb18531777dba6e468",
      "parents": [
        "7d7ee221213609319401d1b9d6dc4bf22ab928ea"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Fri Jul 01 16:10:40 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:35 2005 +0100"
      },
      "message": "Use physical addresses at the interface level, letting drivers remap\nthem as appropriate.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "7d7ee221213609319401d1b9d6dc4bf22ab928ea",
      "tree": "6e56cdfb5a09584eb01d0c1f74c4f48fc0f50701",
      "parents": [
        "2c93e12cfec8cc668d4a2a2c8576dedabb7c69c8"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Thu Jun 30 16:10:04 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:34 2005 +0100"
      },
      "message": "Prevent 64-bit constants from being cropped to 32 bits when used in C code.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "c3455b0efc2b5b1bdc755602f77ce7f43725bf61",
      "tree": "835ffe4b5509053c0623146157d92c4ca2d32aea",
      "parents": [
        "c134a5ecdb8f4aee09feca0d4d395915e752fcb8"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Thu Jun 30 10:48:40 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:34 2005 +0100"
      },
      "message": "Inline ioremap() calls for constant addresses that map to KSEG1.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "7222424e2eb7915bceb34b915150f2fc76e0477c",
      "tree": "5ffe42c4e44085336d11573986ae73dad590bca6",
      "parents": [
        "4c0a2d4275b6993066810c42c4c6b0729d3b67a9"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Jun 29 13:35:19 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:33 2005 +0100"
      },
      "message": "More .set to keep 32-bit processors happy.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "c4559f67b73d6c34fde0faac5c6c890a2cf3527c",
      "tree": "4063b3a937215684db85cc4f70eabd99cf3b8573",
      "parents": [
        "69c75fb458cd81bb29e1d9580469110b00316748"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Thu Jun 23 15:57:15 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:31 2005 +0100"
      },
      "message": "Always use \".set mips3\" rather than select between \"mips2\" or \"mips3\"\nfor assembling ll/sc sequences to avoid problems with 64-bit\nconfigurations.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "64dac503e8265007ea5c53b4d6bf42488a8a8d7a",
      "tree": "d086e5ddd6d36118b476ed0fe01091d9d4d70cec",
      "parents": [
        "3b2396d972ce030e942fef9fcbea1e411b1a62db"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Wed Jun 22 20:56:26 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:30 2005 +0100"
      },
      "message": "System-specific handling of bus errors for DECstation variations\nsupporting parity errors only for memory (Pmax/3min/Maxine).\nFixes for resources decoded by the KN04/KN05 MB ASIC.  Additional\nclean-ups for the ECC handler.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "e20368d5dffcfd7a2bc1749627e97e99ec4e6a77",
      "tree": "3fbe6f9e73d15001dc91f0ce9b3c53714252e4e5",
      "parents": [
        "c6ad7b7d3cd7883810c05fad9d30303cf9368f63"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Jun 21 13:52:33 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:28 2005 +0100"
      },
      "message": "Get the thing to compile again ...\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "c6ad7b7d3cd7883810c05fad9d30303cf9368f63",
      "tree": "b8df8802eb177cac2e4588ea98b86077b076d9b5",
      "parents": [
        "8a185d14b665d454bde84c6ae067beade452e7f8"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Mon Jun 20 13:09:49 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:28 2005 +0100"
      },
      "message": "Use macros for the RM7k cp0.config bits instead of magic numbers.\nMinor clean-ups.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "260c96738cf30f489108cd0fb3f10dcd11cbb5ca",
      "tree": "f9e72b1bf084ad2d38487fa8fc7dae01660dc08e",
      "parents": [
        "778220f7c4a3357f7464a45044fd4937126ba6c5"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Thu Jun 16 20:39:12 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:26 2005 +0100"
      },
      "message": "Mark __die() \"noreturn\" for real.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "a76f9fe122e0ba6ff95d3a4daa854e761f8a6a76",
      "tree": "4a002f0f85f26c12f0741ac4c81d0a7b85b51ac7",
      "parents": [
        "3bd4c902da14030c9a780cd0c4be2ffe9aee2974"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Thu Jun 16 20:35:48 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:24 2005 +0100"
      },
      "message": "GCC 4.0.0 broke `attribute((\"alias\"))\u0027 -- resort to an assembly variant.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "3bd4c902da14030c9a780cd0c4be2ffe9aee2974",
      "tree": "3ebf15e8aaa4029119028d32721fd7ccbe59bccf",
      "parents": [
        "902d21d5313ba08cccadc9fceee2df3cf34e84eb"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Thu Jun 16 20:30:54 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:23 2005 +0100"
      },
      "message": "Deal with the bloody KSEG vs CKSEG horror...\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "02416dcf5a94af34bcd28b4baf25bbbf399d8136",
      "tree": "1906c4266d4e28ef0b13d0579a145603dcbcff1b",
      "parents": [
        "aac8aa7717a23a9bf8740dbfb59755b1d62f04bf"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Jun 15 13:00:12 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:23 2005 +0100"
      },
      "message": "Redo RM9000 workaround which along with other DSP ASE changes was\ncausing some headache for debuggers knowing about signal frames.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "aac8aa7717a23a9bf8740dbfb59755b1d62f04bf",
      "tree": "cae373db64607dafc496827c0d2f3b67b91d880f",
      "parents": [
        "fded2e508a1d3c26ab477ab3b98f13274d4359ba"
      ],
      "author": {
        "name": "Maciej W. Rozycki",
        "email": "macro@linux-mips.org",
        "time": "Tue Jun 14 17:35:03 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:22 2005 +0100"
      },
      "message": "Enable a suitable ISA for the assembler around ll/sc so that code\nbuilds even for processors that don\u0027t support the instructions.\nPlus minor formatting fixes.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "478489dd2c94627ca3338368f5e1bcd71639ae00",
      "tree": "90423130fba1704f3613d11ddf95549dbb2a5da1",
      "parents": [
        "d5b6f1db5d5a7ba3f2271e5018db7c8c5c4eeea1"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Jun 07 11:39:57 2005 +0000"
      },
      "committer": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Oct 29 19:31:19 2005 +0100"
      },
      "message": "Remove dead code which was causing warnings.\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    }
  ],
  "next": "ac130ac494522cf71782117b8dd4b6b57e31e5ea"
}
