1. 10 9月, 2019 2 次提交
  2. 29 8月, 2019 1 次提交
    • C
      dma-mapping: remove arch_dma_mmap_pgprot · 419e2f18
      Christoph Hellwig 提交于
      arch_dma_mmap_pgprot is used for two things:
      
       1) to override the "normal" uncached page attributes for mapping
          memory coherent to devices that can't snoop the CPU caches
       2) to provide the special DMA_ATTR_WRITE_COMBINE semantics on older
          arm systems and some mips platforms
      
      Replace one with the pgprot_dmacoherent macro that is already provided
      by arm and much simpler to use, and lift the DMA_ATTR_WRITE_COMBINE
      handling to common code with an explicit arch opt-in.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>	# m68k
      Acked-by: Paul Burton <paul.burton@mips.com>		# mips
      419e2f18
  3. 23 8月, 2019 1 次提交
  4. 20 8月, 2019 1 次提交
  5. 16 8月, 2019 1 次提交
  6. 14 8月, 2019 3 次提交
  7. 08 8月, 2019 1 次提交
  8. 15 7月, 2019 3 次提交
  9. 13 7月, 2019 2 次提交
  10. 03 7月, 2019 1 次提交
  11. 24 6月, 2019 2 次提交
  12. 21 6月, 2019 2 次提交
  13. 15 6月, 2019 1 次提交
    • M
      docs: kdump: convert docs to ReST and rename to *.rst · d67297ad
      Mauro Carvalho Chehab 提交于
      Convert kdump documentation to ReST and add it to the
      user faced manual, as the documents are mainly focused on
      sysadmins that would be enabling kdump.
      
      Note: the vmcoreinfo.rst has one very long title on one of its
      sub-sections:
      
      	PG_lru|PG_private|PG_swapcache|PG_swapbacked|PG_slab|PG_hwpoision|PG_head_mask|PAGE_BUDDY_MAPCOUNT_VALUE(~PG_buddy)|PAGE_OFFLINE_MAPCOUNT_VALUE(~PG_offline)
      
      I opted to break this one, into two entries with the same content,
      in order to make it easier to display after being parsed in html and PDF.
      
      The conversion is actually:
        - add blank lines and identation in order to identify paragraphs;
        - fix tables markups;
        - add some lists markups;
        - mark literal blocks;
        - adjust title markups.
      
      At its new index.rst, let's add a :orphan: while this is not linked to
      the main index.rst file, in order to avoid build warnings.
      Signed-off-by: NMauro Carvalho Chehab <mchehab+samsung@kernel.org>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      d67297ad
  14. 12 6月, 2019 1 次提交
  15. 09 6月, 2019 1 次提交
  16. 22 5月, 2019 1 次提交
  17. 15 5月, 2019 2 次提交
  18. 09 5月, 2019 1 次提交
    • R
      ARM: riscpc: replace gettimeoffset() with clocksource · a44c1d70
      Russell King 提交于
      Replace the old gettimeoffset() interface (which became buggy in
      several ways) with a clocksource that atomically reads the count
      and status from the timer, and corrects the count as appropriate
      ensuring proper resolution of time without time warping backwards.
      
      We keep the original periodic timer non-clock event implementation
      to provide the kernel with a regular source of interrupts, which
      are required to keep the clocksource properly updated.
      Signed-off-by: NRussell King <rmk+kernel@armlinux.org.uk>
      a44c1d70
  19. 24 4月, 2019 1 次提交
    • R
      ARM: fix function graph tracer and unwinder dependencies · 50362162
      Russell King 提交于
      Naresh Kamboju recently reported that the function-graph tracer crashes
      on ARM. The function-graph tracer assumes that the kernel is built with
      frame pointers.
      
      We explicitly disabled the function-graph tracer when building Thumb2,
      since the Thumb2 ABI doesn't have frame pointers.
      
      We recently changed the way the unwinder method was selected, which
      seems to have made it more likely that we can end up with the function-
      graph tracer enabled but without the kernel built with frame pointers.
      
      Fix up the function graph tracer dependencies so the option is not
      available when we have no possibility of having frame pointers, and
      adjust the dependencies on the unwinder option to hide the non-frame
      pointer unwinder options if the function-graph tracer is enabled.
      Reviewed-by: NMasami Hiramatsu <mhiramat@kernel.org>
      Tested-by: NMasami Hiramatsu <mhiramat@kernel.org>
      Signed-off-by: NRussell King <rmk+kernel@armlinux.org.uk>
      50362162
  20. 23 4月, 2019 2 次提交
  21. 20 4月, 2019 2 次提交
    • L
      ARM: ixp4xx: Convert to SPARSE_IRQ · dc8ef8cd
      Linus Walleij 提交于
      This localizes the <mach/irqs.h> header to the mach-ixp4xx
      directory, removes NR_IRQS and switches IXP4xx over to using
      SPARSE_IRQ.
      
      This is a prerequisite for DT support.
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      dc8ef8cd
    • L
      ARM: ixp4xx: Convert to MULTI_IRQ_HANDLER · 98ac0cc2
      Linus Walleij 提交于
      This rewrites the IXP4xx to use MULTI_IRQ_HANDLER and
      create an irqdomain for the irqchip in the platform. We
      convert the timer to request the interrupt like any other
      driver in the process.
      
      We bump all IRQs to 16+offset to avoid using IRQ 0 and
      set NR_IRQS to 512 (the default for most systems).
      This conveniently fits with the first 16 IRQs being
      pre-allocated when using SPARSE_IRQ.
      
      This is a prerequisite for SPARSE_IRQ and DT boot.
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      98ac0cc2
  22. 17 4月, 2019 1 次提交
  23. 03 4月, 2019 1 次提交
    • W
      locking/rwsem: Remove rwsem-spinlock.c & use rwsem-xadd.c for all archs · 390a0c62
      Waiman Long 提交于
      Currently, we have two different implementation of rwsem:
      
       1) CONFIG_RWSEM_GENERIC_SPINLOCK (rwsem-spinlock.c)
       2) CONFIG_RWSEM_XCHGADD_ALGORITHM (rwsem-xadd.c)
      
      As we are going to use a single generic implementation for rwsem-xadd.c
      and no architecture-specific code will be needed, there is no point
      in keeping two different implementations of rwsem. In most cases, the
      performance of rwsem-spinlock.c will be worse. It also doesn't get all
      the performance tuning and optimizations that had been implemented in
      rwsem-xadd.c over the years.
      
      For simplication, we are going to remove rwsem-spinlock.c and make all
      architectures use a single implementation of rwsem - rwsem-xadd.c.
      
      All references to RWSEM_GENERIC_SPINLOCK and RWSEM_XCHGADD_ALGORITHM
      in the code are removed.
      Suggested-by: NPeter Zijlstra <peterz@infradead.org>
      Signed-off-by: NWaiman Long <longman@redhat.com>
      Signed-off-by: NPeter Zijlstra (Intel) <peterz@infradead.org>
      Acked-by: NLinus Torvalds <torvalds@linux-foundation.org>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Arnd Bergmann <arnd@arndb.de>
      Cc: Borislav Petkov <bp@alien8.de>
      Cc: Davidlohr Bueso <dave@stgolabs.net>
      Cc: H. Peter Anvin <hpa@zytor.com>
      Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Tim Chen <tim.c.chen@linux.intel.com>
      Cc: Will Deacon <will.deacon@arm.com>
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: linux-c6x-dev@linux-c6x.org
      Cc: linux-m68k@lists.linux-m68k.org
      Cc: linux-riscv@lists.infradead.org
      Cc: linux-um@lists.infradead.org
      Cc: linux-xtensa@linux-xtensa.org
      Cc: linuxppc-dev@lists.ozlabs.org
      Cc: nios2-dev@lists.rocketboards.org
      Cc: openrisc@lists.librecores.org
      Cc: uclinux-h8-devel@lists.sourceforge.jp
      Link: https://lkml.kernel.org/r/20190322143008.21313-3-longman@redhat.comSigned-off-by: NIngo Molnar <mingo@kernel.org>
      390a0c62
  24. 25 3月, 2019 1 次提交
  25. 01 3月, 2019 1 次提交
  26. 20 2月, 2019 1 次提交
  27. 19 2月, 2019 3 次提交