1. 20 6月, 2006 1 次提交
    • R
      [MIPS] Drop 0 definition for kern_addr_valid · d9b8d0da
      Ralf Baechle 提交于
      kern_addr_valid is currently only being used in kmem_ptr_validate which
      is making some vague attempt at verfying the validity of an address.
      Only IA-64, PARISC and x86-64 actually make some actual effort to verify
      the validity of the pointer.  Most architecture definitions of
      kern_addr_valid() just define it as 1; the Alpha and CONFIG_DISCONTIGMEM
      on i386 and MIPS even as 0; the 0-definition will result in
      kmem_ptr_validate always failing which in turn will cause d_validate to
      always fail.  d_validate's only two users are smbfs and ncpfs, so the
      0 definition ended breaking those ...
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      d9b8d0da
  2. 06 6月, 2006 1 次提交
  3. 02 6月, 2006 1 次提交
    • D
      [SPARC64]: Fix D-cache corruption in mremap · 0b0968a3
      David S. Miller 提交于
      If we move a mapping from one virtual address to another,
      and this changes the virtual color of the mapping to those
      pages, we can see corrupt data due to D-cache aliasing.
      
      Check for and deal with this by overriding the move_pte()
      macro.  Set things up so that other platforms can cleanly
      override the move_pte() macro too.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      0b0968a3
  4. 01 6月, 2006 1 次提交
    • S
      [MIPS] Fix marking buddy of pte global for MIPS32 w/36-bit physical address · 6e953891
      Sergei Shtylyov 提交于
          
      In case of CONFIG_64BIT_PHYS_ADDR, set_pte() and pte_clear() functions
      only set _PAGE_GLOBAL bit in the pte_low field of the buddy PTEs,
      forgetting to propagate ito to pte_high. Thus, the both pages might not
      really be made global for the CPU (since it AND's the G-bit of the
      odd / even PTEs together to decide whether they're global or not). Thus,
      if only a single page is allocated via vmalloc() or ioremap(), it's not
      really global for CPU (and it must be, since this is kernel mapping),
      and thus its ASID is compared against the current process' one -- so,
      we'll get into trouble sooner or later...  Also, pte_none() will fail
      on global pages because _PAGE_GLOBAL bit is set in both pte_low and
      pte_high, and pte_val() will return u64 value consisting of those fields
      concateneted.
      Signed-off-by: NSergei Shtylyov <sshtylyov@ru.mvista.com>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      6e953891
  5. 07 11月, 2005 1 次提交
  6. 31 10月, 2005 1 次提交
    • T
      [PATCH] vm: remove unused/broken page_pte[_prot] macros · 1426d7a8
      Tejun Heo 提交于
      This patch removes page_pte_prot and page_pte macros from all
      architectures.  Some architectures define both, some only page_pte (broken)
      and others none.  These macros are not used anywhere.
      
      page_pte_prot(page, prot) is identical to mk_pte(page, prot) and
      page_pte(page) is identical to page_pte_prot(page, __pgprot(0)).
      
      * The following architectures define both page_pte_prot and page_pte
      
        arm, arm26, ia64, sh64, sparc, sparc64
      
      * The following architectures define only page_pte (broken)
      
        frv, i386, m32r, mips, sh, x86-64
      
      * All other architectures define neither
      Signed-off-by: NTejun Heo <htejun@gmail.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      1426d7a8
  7. 30 10月, 2005 4 次提交
  8. 28 9月, 2005 1 次提交
    • N
      [PATCH] mm: move_pte to remap ZERO_PAGE · 8b1f3124
      Nick Piggin 提交于
      Move the ZERO_PAGE remapping complexity to the move_pte macro in
      asm-generic, have it conditionally depend on
      __HAVE_ARCH_MULTIPLE_ZERO_PAGE, which gets defined for MIPS.
      
      For architectures without __HAVE_ARCH_MULTIPLE_ZERO_PAGE, move_pte becomes
      a noop.
      
      From: Hugh Dickins <hugh@veritas.com>
      
      Fix nasty little bug we've missed in Nick's mremap move ZERO_PAGE patch.
      The "pte" at that point may be a swap entry or a pte_file entry: we must
      check pte_present before perhaps corrupting such an entry.
      
      Patch below against 2.6.14-rc2-mm1, but the same bug is in 2.6.14-rc2's
      mm/mremap.c, and more dangerous there since it's affecting all arches: I
      think the safest course is to send Nick's patch and Yoichi's build fix and
      this fix (build tested) on to Linus - so only MIPS can be affected.
      Signed-off-by: NNick Piggin <npiggin@suse.de>
      Signed-off-by: NHugh Dickins <hugh@veritas.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      8b1f3124
  9. 13 9月, 2005 1 次提交
  10. 05 9月, 2005 1 次提交
  11. 26 6月, 2005 1 次提交
  12. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4