1. 27 7月, 2010 9 次提交
  2. 19 7月, 2010 2 次提交
  3. 09 7月, 2010 2 次提交
  4. 02 7月, 2010 1 次提交
  5. 01 7月, 2010 3 次提交
  6. 22 6月, 2010 1 次提交
    • R
      ARM: Prohibit ioremap() on kernel managed RAM · 309caa9c
      Russell King 提交于
      ARMv6 and above have a restriction whereby aliasing virtual:physical
      mappings must not have differing memory type and sharability
      attributes.  Strictly, this covers the memory type (strongly ordered,
      device, memory), cache attributes (uncached, write combine, write
      through, write back read alloc, write back write alloc) and the
      shared bit.
      
      However, using ioremap() and its variants on system RAM results in
      mappings which differ in these attributes from the main system RAM
      mapping.  Other architectures which similar restrictions approch this
      problem in the same way - they do not permit ioremap on main system
      RAM.
      
      Make ARM behave in the same way, with a WARN_ON() such that users can
      be traced and an alternative approach found.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      309caa9c
  7. 09 6月, 2010 3 次提交
  8. 27 5月, 2010 1 次提交
  9. 21 5月, 2010 1 次提交
  10. 17 5月, 2010 1 次提交
  11. 15 5月, 2010 5 次提交
  12. 12 5月, 2010 1 次提交
  13. 11 5月, 2010 1 次提交
  14. 08 5月, 2010 4 次提交
  15. 05 5月, 2010 1 次提交
  16. 04 5月, 2010 1 次提交
  17. 02 5月, 2010 1 次提交
  18. 27 4月, 2010 1 次提交
  19. 21 4月, 2010 1 次提交
    • R
      ARM: fix build error in arch/arm/kernel/process.c · 4260415f
      Russell King 提交于
      /tmp/ccJ3ssZW.s: Assembler messages:
      /tmp/ccJ3ssZW.s:1952: Error: can't resolve `.text' {.text section} - `.LFB1077'
      
      This is caused because:
      
      	.section .data
      	.section .text
      	.section .text
      	.previous
      
      does not return us to the .text section, but the .data section; this
      makes use of .previous dangerous if the ordering of previous sections
      is not known.
      
      Fix up the other users of .previous; .pushsection and .popsection are
      a safer pairing to use than .section and .previous.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      4260415f