First  |  Prev |  Next  |  Last
Pages: 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
[PATCH -mm 2/2] remove dma_is_consistent API
Architectures implement dma_is_consistent() in different ways (some misinterpret the definition of API in DMA-API.txt). So it hasn't been so useful for drivers. We have only one user of the API in tree. Unlikely out-of-tree drivers use the API. Even if we fix dma_is_consistent() in some architectures, it doesn't ... 22 Jul 2010 08:07
[PATCH] md: bitwise operations might not fit in a "bool"
when taking a resolute of a bit-wise AND as true false. Better / faster to make it a boolean operation. This fixes a bug and a crash because the flags field did not fit into the bool operands. Signed-off-by: Boaz Harrosh <bharrosh(a)panasas.com> --- git diff --stat -p -M drivers/md/raid1.c drivers/md/raid1.... 22 Jul 2010 08:07
[PATCH -mm 1/2] 53c700: remove dma_is_consistent usage
This driver is the only user of dma_is_consistent(). We plan to remove this API. The driver uses the API in the following way: BUG_ON(!dma_is_consistent(hostdata->dev, pScript) && L1_CACHE_BYTES < dma_get_cache_alignment()); The above code tries to see if L1_CACHE_BYTES is greater than dma_get_cache_alignmen... 22 Jul 2010 08:07
perf: export tracepoint events via sysfs: mac80211
On Thu, 2010-07-22 at 19:18 +0800, Lin Ming wrote: mac80211 tracepoint events are exported like below, /sys/class/ieee80211/events/ |-- api_beacon_loss | |-- config | |-- type .... .... |-- drv_add_interface | |-- config | |-- type .... .... |-- stop_queue | |-- c... 22 Jul 2010 08:07
perf: export tracepoint events via sysfs: iwlwifi and iwlwifi_io
On Thu, 2010-07-22 at 19:13 +0800, Lin Ming wrote: iwlwifi and iwlwifi_io tracepoint events are exported like below, drivers/net/wireless/iwlwifi/iwl3945-base.c | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) err, how about iwlagn? johannes -- To unsubscribe from this lis... 23 Jul 2010 00:34
[RFC][PATCH v1 01/15] perf: core, add functions to export events via sysfs
perf: core, add functions to export events via sysfs --- include/linux/perf_event.h | 13 +++++ kernel/perf_event.c | 110 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 123 insertions(+), 0 deletions(-) diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 0ed31... 22 Jul 2010 08:06
[RFC][PATCH v1 00/15] perf: export events in a structured way via sysfs
Hi, all (CC driver maintainers since many device tracepoint events are exported) This patch series is based on the discussion of [rfc] Describe events in a structured way via sysfs http://lkml.org/lkml/2010/5/21/102 Applied on top of Peter's perf tree, perf-pmu branch. Hareware/Software/Tracepoint events ... 22 Jul 2010 08:06
[RFC][PATCH v1 10/15] perf: export tracepoint events via sysfs: module
module tracepoint events are exported like below, /sys/module/events/ |-- module_free | |-- config | `-- type |-- module_get | |-- config | `-- type |-- module_load | |-- config | `-- type |-- module_put | |-- config | `-- type `-- module_request |-- config `-- type --- kern... 22 Jul 2010 08:06
[RFC][PATCH v1 04/15] perf: export tracepoint events via sysfs: sched, raw_syscalls etc.
Below tracepoint events are exported under /sys/kernel/events/. sched, raw_syscalls, irq, timer, signal, workqueue, lock and bkl For example, /sys/kernel/events/ |-- hrtimer_cancel | |-- config | `-- type |-- hrtimer_expire_entry | |-- config | `-- type |-- hrtimer_expire_exit | |-- config | `... 22 Jul 2010 08:06
[RFC][PATCH v1 02/15] perf: export generic hardware events via sysfs
Generic hardware events are exported under /sys/devices/system/cpu/cpu0...N/events, for example /sys/devices/system/cpu/cpu0/events |-- L1-dcache-load-misses | |-- config | `-- type |-- LLC-load-misses | |-- config | `-- type |-- branch-misses | |-- config | `-- type |-- branches | |-- conf... 22 Jul 2010 08:06
First  |  Prev |  Next  |  Last
Pages: 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464