pull request: bluetooth-next 2014-03-24 (no replies)
Hi John, Here follow another set of patches to 3.15. This is mostly a bug fix pull request with the exception of one commit from Marcel which adds tracking to the current configured LE scan type...
View Article[PATCH net-next] chelsio: Remove addressof casts to same type (no replies)
Using addressof then casting to the original type is pointless, so remove these unnecessary casts. Done via coccinelle script: $ cat typecast.cocci @@ type T; T foo; @@ - (T *)&foo + &foo...
View Article[PATCH net-next] intel: Remove addressof casts to same type (no replies)
Using addressof then casting to the original type is pointless, so remove these unnecessary casts. Done via coccinelle script: $ cat typecast.cocci @@ type T; T foo; @@ - (T *)&foo + &foo...
View Article[PATCH net-next] rtlwifi: Remove addressof casts to same type (no replies)
Using addressof then casting to the original type is pointless, so remove these unnecessary casts. Done via coccinelle script: $ cat typecast.cocci @@ type T; T foo; @@ - (T *)&foo + &foo...
View Article[PATCH] v4l2-pci-skeleton: fix typo while retrieving the skel_buffer (no...
From: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> --- Documentation/video4linux/v4l2-pci-skeleton.c | 2 +- 1 file changed, 1...
View Article[PATCH] ARM: machine_power_off should not return (no replies)
Add loop to prevent return from machine_power_off if pm_power_off is null or does not halt the system. This caused a panic during hibernation testing on Kirkwood Openblocks A6 board. Signed-off-by:...
View Article[PATCH 0/3] Allow instances to independently set trace options. (3 replies)
Currently, the trace options are global, and shared among all instances. This patchset allows instances to set certain trace options independently, without affecting the global instance or other...
View Articlerandconfig build error with next-20140324, in drivers/media/tuners/e4000.c (1...
Building with the attached random configuration file, warning: (DVB_USB_RTL28XXU) selects MEDIA_TUNER_E4000 which has unmet direct dependencies ((MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT ||...
View Article[GIT] Sparc (no replies)
Please pull to get these sparc fixes: 1) Do serial locking in a way that makes things clear that these are IRQ spinlocks. 2) Conversion to generic idle loop broke first generation Niagara machines,...
View Article[PATCH 0/4] perf: Make some functions generic (4 replies)
This patch just converts some private functions into global ones that can be used by other tools like the c2c tool I am trying to merge. Don Zickus (4): perf: Allow ability to map cpus to nodes easily...
View Article[PATCH 5/6] perf: Update sort to handle MAP_SHARED bits (no replies)
Remove some of the false positives when sorting by utilizing the MAP_SHARED bit. This helps deal with the COW cases where a virtual address is modified but is mapped to a read-only shared library area...
View Article[PATCH 3/6] Revert "perf: Disable PERF_RECORD_MMAP2 support" (no replies)
This reverts commit 3090ffb5a2515990182f3f55b0688a7817325488. Conflicts: tools/perf/util/event.c --- kernel/events/core.c | 4 ---- tools/perf/util/event.c | 36 +++++++++++++++++++-----------------...
View Article[PATCH 6/6] perf, sort: Allow unique sorting instead of combining...
The cache contention tools needs to keep all the perf records unique in order to properly parse all the data. Currently add_hist_entry() will combine the duplicate record and add the weight/period to...
View Article[PATCH 04/15 V3] perf c2c: Dump raw records, decode data_src bits (no replies)
From: Arnaldo Carvalho de Melo <acme@redhat.com> From the c2c prototype: [root@sandy ~]# perf c2c -r report | head -7 T Status Pid Tid CPU Inst Adrs Virt Data Adrs Phys Data Adrs Cycles Source...
View Article[PATCH 15/15 V3] perf, c2c: Add shared cachline summary table (no replies)
This adds a quick summary of the hottest cache contention lines based on the input data. This summarizes what the broken table shows you, so you can see at a quick glance which cachelines are...
View Article[PATCH 03/15 V3] perf c2c: Shared data analyser (no replies)
From: Arnaldo Carvalho de Melo <acme@redhat.com> This is the start of a new perf tool that will collect information about memory accesses and analyse it to find things like hot cachelines, etc....
View Article[PATCH 11/15 V3] perf, c2c: Add callchain support (no replies)
Seeing cacheline statistics is useful by itself. Seeing the callchain for these cache contentions saves time tracking things down. This patch tries to add callchain support. I had to use the generic...
View Article[PATCH 14/15 V3] perf, c2c: Add symbol count table (no replies)
Just another table that displays the referenced symbols in the analysis report. The table lists the most frequently used symbols first. It is just another way to look at similar data to figure out who...
View Article[PATCH 13/15 V3] perf, c2c: Dump rbtree for debugging (no replies)
Sometimes you want to verify the rbtree sorting on a unique id is working correctly. This allows you to dump it. Sample output: Idx Hit Maj Min Ino InoGen Pid Daddr Iaddr Data Src (string) cpumode 0 0...
View Article[PATCH 10/15 V3] perf, c2c: Display cacheline HITM analysis to stdout (no...
This patch mainly focuses on processing and displaying the collected HITMs to stdout. Most of it is just printing data in a pretty way. There is one trick used when walking the cacheline. When we get...
View Article