1. 24 12月, 2007 1 次提交
  2. 27 1月, 2008 1 次提交
  3. 23 12月, 2007 1 次提交
  4. 16 1月, 2008 1 次提交
    • M
      Fix Blackfin HARDWARE_PM support · 7d2284b0
      Mathieu Desnoyers 提交于
      This patch restores the blackfin Hardware Performance Monitor Profiling
      support that was killed by the combining of instrumentation menus in
      commit 09cadedb.
      
      Since there seems to be no good reason to behave differently from other
      architectures, it now automatically selects the hardware performance
      counters whenever the profiling is activated.
      
      mach-common/irqpanic.c: pm_overflow calls pm_overflow_handler which is
      in oprofile/op_model_bf533.c.  I doubt that setting HARDWARE_PM as "m"
      will work at all, since the pm_overflow_handler should be in the core
      kernel image because it is called by irqpanic.c.
      
      Therefore, I change HARDWARE_PM from a tristate to a bool.
      
      The whole arch/$(ARCH)/oprofile/ is built depending on CONFIG_OPROFILE. Since
      part of the HARDWARE_PM support files sits in this directory, it makes sense to
      also depend on OPROFILE, not only PROFILING. Since OPROFILE already depends on
      PROFILING, it is correct to only depend on OPROFILE only.
      
      Thanks to Adrian Bunk for finding this bug and providing an initial
      patch.
      Signed-off-by: NMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
      CC: Adrian Bunk <adrian.bunk@movial.fi>
      CC: Randy Dunlap <randy.dunlap@oracle.com>
      CC: bryan.wu@analog.com
      Acked-by: NRobin Getz <rgetz@blackfin.uclinux.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      7d2284b0
  5. 21 11月, 2007 2 次提交
  6. 15 11月, 2007 2 次提交
  7. 21 11月, 2007 1 次提交
  8. 23 11月, 2007 1 次提交
  9. 15 11月, 2007 4 次提交
  10. 29 10月, 2007 1 次提交
  11. 21 10月, 2007 2 次提交
  12. 20 10月, 2007 2 次提交
  13. 13 10月, 2007 1 次提交
    • A
      kconfig: syntax cleanup - drop support for "depends/requires/def_boolean" · 247537b9
      Adrian Bunk 提交于
      Remove the following redundant and never or rarely used kconfig syntax:
      
      - "def_boolean" (same as "def_bool")
      - "requires" (same as "depends on")
      - "depends" (same as "depends on")
      
      This patch contains the code changes and Kconfig updates.
      The shipped files are in next patch to let actual codechange stand out.
      Signed-off-by: NAdrian Bunk <bunk@kernel.org>
      Cc: "Randy.Dunlap" <rdunlap@xenotime.net>
      Cc: Bryan Wu <bryan.wu@analog.com>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Dmitry Torokhov <dtor@mail.ru>
      Cc: "John W. Linville" <linville@tuxdriver.com>
      Cc: Roman Zippel <zippel@linux-m68k.org>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      247537b9
  14. 10 10月, 2007 2 次提交
  15. 09 10月, 2007 1 次提交
  16. 05 8月, 2007 2 次提交
  17. 10 10月, 2007 1 次提交
  18. 25 7月, 2007 1 次提交
  19. 03 8月, 2007 1 次提交
  20. 24 7月, 2007 1 次提交
  21. 12 7月, 2007 4 次提交
  22. 25 6月, 2007 1 次提交
  23. 12 7月, 2007 1 次提交
    • R
      Blackfin arch: initial supporting for BF548-EZKIT · 24a07a12
      Roy Huang 提交于
      The ADSP-BF54x was specifically designed to meet the needs of convergent multimedia
      applications where system performance and cost are essential ingredients. The
      integration of multimedia, human interface, and connectivity peripherals combined
      with increased system bandwidth and on-chip memory provides customers a platform to
      design the most demanding applications.
      
      Since now, ADSP-BF54x will be supported in the Linux kernel and bunch of related drivers
      such as USB OTG, ATAPI, NAND flash controller, LCD framebuffer, sound, touch screen will
      be submitted later.
      
      Please enjoy the show.
      Signed-off-by: NRoy Huang <roy.huang@analog.com>
      Signed-off-by: NBryan Wu <bryan.wu@analog.com>
      24a07a12
  24. 11 6月, 2007 1 次提交
  25. 22 5月, 2007 2 次提交
  26. 17 5月, 2007 1 次提交
    • C
      Slab allocators: define common size limitations · 0aa817f0
      Christoph Lameter 提交于
      Currently we have a maze of configuration variables that determine the
      maximum slab size.  Worst of all it seems to vary between SLAB and SLUB.
      
      So define a common maximum size for kmalloc.  For conveniences sake we use
      the maximum size ever supported which is 32 MB.  We limit the maximum size
      to a lower limit if MAX_ORDER does not allow such large allocations.
      
      For many architectures this patch will have the effect of adding large
      kmalloc sizes.  x86_64 adds 5 new kmalloc sizes.  So a small amount of
      memory will be needed for these caches (contemporary SLAB has dynamically
      sizeable node and cpu structure so the waste is less than in the past)
      
      Most architectures will then be able to allocate object with sizes up to
      MAX_ORDER.  We have had repeated breakage (in fact whenever we doubled the
      number of supported processors) on IA64 because one or the other struct
      grew beyond what the slab allocators supported.  This will avoid future
      issues and f.e.  avoid fixes for 2k and 4k cpu support.
      
      CONFIG_LARGE_ALLOCS is no longer necessary so drop it.
      
      It fixes sparc64 with SLAB.
      Signed-off-by: NChristoph Lameter <clameter@sgi.com>
      Signed-off-by: N"David S. Miller" <davem@davemloft.net>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      0aa817f0
  27. 08 5月, 2007 1 次提交