1. 08 8月, 2016 1 次提交
  2. 25 8月, 2015 1 次提交
  3. 30 3月, 2015 1 次提交
  4. 28 11月, 2014 1 次提交
    • L
      ARM: 8225/1: Add unwinding support for memory copy functions · 279f487e
      Lin Yongting 提交于
      The memory copy functions(memcpy, __copy_from_user, __copy_to_user)
      never had unwinding annotations added. Currently, when accessing
      invalid pointer by these functions occurs the backtrace shown will
      stop at these functions or some completely unrelated function.
      Add unwinding annotations in hopes of getting a more useful backtrace
      in following cases:
      1. die on accessing invalid pointer by these functions
      2. kprobe trapped at any instruction within these functions
      3. interrupted at any instruction within these functions
      Signed-off-by: NLin Yongting <linyongting@gmail.com>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      279f487e
  5. 08 5月, 2010 1 次提交
  6. 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
  7. 24 7月, 2009 1 次提交
  8. 30 5月, 2009 1 次提交
    • N
      [ARM] allow for alternative __copy_to_user/__clear_user implementations · a1f98849
      Nicolas Pitre 提交于
      This allows for optional alternative implementations of __copy_to_user
      and __clear_user, with a possible runtime fallback to the standard
      version when the alternative provides no gain over that standard
      version. This is done by making the standard __copy_to_user into a weak
      alias for the symbol __copy_to_user_std.  Same thing for __clear_user.
      
      Those two functions are particularly good candidates to have alternative
      implementations for, since they rely on the STRT instruction which has
      lower performances than STM instructions on some CPU cores such as
      the ARM1176 and Marvell Feroceon.
      Signed-off-by: NNicolas Pitre <nico@marvell.com>
      a1f98849
  9. 01 9月, 2008 1 次提交
  10. 29 6月, 2006 1 次提交
  11. 02 11月, 2005 1 次提交