aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python/syscall-counts-by-pid.py
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-02-07 18:20:11 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2011-02-07 18:20:11 -0500
commit65d9055ea39c07671bc41a8cd1ace9aaa6e1bc70 (patch)
tree2d0b8a353f6ffa9bf0924ff777f366778ddaa7d6 /tools/perf/scripts/python/syscall-counts-by-pid.py
parentcb5520f02c010e3cb974b9ac06f30aafa2eebc38 (diff)
parent1f63b9546a8c7b90de2d9e52cf8ff07f9f653d94 (diff)
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm: ALSA: AACI: allow writes to MAINCR to take effect ARM: Update mach-types ARM: 6652/1: ep93xx: correct the end address of the AC97 memory resource ARM: mxs/imx28: remove now unused clock lookup "fec.0" ARM: mxs: fix clock base address missing ARM: mxs: acknowledge gpio irq ARM: mach-imx/mach-mx25_3ds: Fix section type ARM: imx: Add VPR200 and MX51_3DS entries to uncompress.h ARM i.MX23: use correct register for setting the rate ARM i.MX23/28: remove secondary field from struct clk. It's unused ARM i.MX28: use correct register for setting the rate ARM i.MX28: fix bit operation
Diffstat (limited to 'tools/perf/scripts/python/syscall-counts-by-pid.py')
0 files changed, 0 insertions, 0 deletions
__iomem *dst = to; const u32 *src = from; const u32 *end = src + count; while (src < end) __raw_writel(*src++, dst++); } EXPORT_SYMBOL_GPL(__iowrite32_copy); /** * __iowrite64_copy - copy data to MMIO space, in 64-bit or 32-bit units * @to: destination, in MMIO space (must be 64-bit aligned) * @from: source (must be 64-bit aligned) * @count: number of 64-bit quantities to copy * * Copy data from kernel space to MMIO space, in units of 32 or 64 bits at a * time. Order of access is not guaranteed, nor is a memory barrier * performed afterwards. */ void __attribute__((weak)) __iowrite64_copy(void __iomem *to, const void *from, size_t count) { #ifdef CONFIG_64BIT u64 __iomem *dst = to; const u64 *src = from; const u64 *end = src + count; while (src < end) __raw_writeq(*src++, dst++); #else __iowrite32_copy(to, from, count * 2); #endif } EXPORT_SYMBOL_GPL(__iowrite64_copy);