1. 08 8月, 2016 1 次提交
  2. 25 8月, 2015 1 次提交
  3. 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
  4. 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
  5. 24 7月, 2009 1 次提交
  6. 01 9月, 2008 1 次提交
  7. 29 6月, 2006 1 次提交
  8. 02 11月, 2005 1 次提交