Quantcast
Browsing all 24115 articles
Browse latest View live

[PATCH v3 1/3] gpio: pcf857x: change to devm_request_threaded_irq (no replies)

Remove the request_irq and use devm_request_threaded_irq also cleanup free_irq. devm_* takes care of that. Signed-off-by: George Cherian <george.cherian@ti.com> --- drivers/gpio/gpio-pcf857x.c |...

View Article


[PATCH v3 0/3] cleanup of gpio_pcf857x.c (4 replies)

This patch series - removes the irq_demux_work - Uses devm_request_threaded_irq - Call the user handler iff gpio_to_irq is done. v1 --> v2 Split v1 to 3 patches v2 --> v3 Remove the unnecessary...

View Article


linux-next: manual merge of the net-next tree with Linus' tree (no replies)

Hi all, Today's linux-next merge of the net-next tree got a conflict in drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c between commit 64c3b252e9fc ("net: stmmac: fixed the pbl setting with DT")...

View Article

linux-next: manual merge of the ipsec-next tree with Linus' tree (no replies)

Hi Steffen, Today's linux-next merge of the ipsec-next tree got a conflict in include/net/xfrm.h between commit 628e341f319f ("xfrm: make local error reporting more robust") from Linus' tree and...

View Article

[PATCH v2 0/6] Remove the duplicated _MAT evaluation and simplify...

v1->v2: Return specific error value instead of just return -1, and correct some grammar mistake in changelog. For cpu hot add, evaluate _MAT or parse MADT will did twice to get APIC id:...

View Article


Re: device_create_file returns 0 but doesn't work (no replies)

On 09/01/2013 06:38 PM, Ian Pilcher wrote: > I am trying to add an additional sysfs attribute to a device (LED) that > is created by another driver. (My ultimate goal is to provide a way for...

View Article

Question regarding list_for_each_entry_safe usage in move_one_task (no replies)

Hi Peter, I find one list API usage may not be correct in current fair.c code. In move_one_task function, it may iterate through whole cfs_tasks list to get one task to move. But in dequeue_task(), it...

View Article

Re: [RFC,v3] Add a driver for the Somagic smi2021 chip (no replies)

On Mon, Sep 02, 2013 at 03:50:14AM +0800, Wang Shilong wrote: Hi, > Hello, Using checkpatch.pl, i get the following warnings(errors): > WARNING: Avoid CamelCase:...

View Article


[tip:sched/core] sched/fair: Remove duplicate load_per_task computations (no...

Commit-ID: 38d0f7708543bcfa03d5ee55e8346f801b4a59c9 Gitweb: http://git.kernel.org/tip/38d0f7708543bcfa03d5ee55e8346f801b4a59c9 Author: Peter Zijlstra <peterz@infradead.org> AuthorDate: Thu, 15...

View Article


[tip:sched/core] sched/fair: Make group power more consistent (no replies)

Commit-ID: 3ae11c90fd055ba1b1b03a014f851b395bdd26ff Gitweb: http://git.kernel.org/tip/3ae11c90fd055ba1b1b03a014f851b395bdd26ff Author: Peter Zijlstra <peterz@infradead.org> AuthorDate: Thu, 15...

View Article

[tip:sched/core] sched/fair: Optimize find_busiest_queue() (no replies)

Commit-ID: 6906a40839198f33dbb56d20e644c01e00663952 Gitweb: http://git.kernel.org/tip/6906a40839198f33dbb56d20e644c01e00663952 Author: Peter Zijlstra <peterz@infradead.org> AuthorDate: Mon, 19...

View Article

[tip:sched/core] sched/fair: Rework and comment the group_imb code (no replies)

Commit-ID: 30ce5dabc92b5a349a7d9e9cf499494d230e0691 Gitweb: http://git.kernel.org/tip/30ce5dabc92b5a349a7d9e9cf499494d230e0691 Author: Peter Zijlstra <peterz@infradead.org> AuthorDate: Thu, 15...

View Article

[tip:sched/core] sched/fair: Fix the sd_parent_degenerate() code (no replies)

Commit-ID: 10866e62e8a6907d9072f10f9a0561db0c0cf50b Gitweb: http://git.kernel.org/tip/10866e62e8a6907d9072f10f9a0561db0c0cf50b Author: Peter Zijlstra <peterz@infradead.org> AuthorDate: Mon, 19...

View Article


[tip:sched/core] sched/fair: Shrink sg_lb_stats and play memset games (no...

Commit-ID: 147c5fc2bad780d8093b547f2baa204e78107faf Gitweb: http://git.kernel.org/tip/147c5fc2bad780d8093b547f2baa204e78107faf Author: Peter Zijlstra <peterz@infradead.org> AuthorDate: Mon, 19...

View Article

[PATCH] drivers: misc: bmp085: remove '__init' from mp085_get_of_properties()...

bmp085_get_of_properties() is called by bmp085_init_client() which is called by bmp085_probe() which is an EXPORT_SYMBOL_GPL function. bmp085_probe() is really used as a probe function by another...

View Article


[PATCH 1/1] dma: imx-dma: Remove redundant NULL check (no replies)

kfree on a NULL pointer is a no-op. Null pointer check is not necessary. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Cc: Sascha Hauer <s.hauer@pengutronix.de> ---...

View Article

[GIT PULL -v3] target fixes for v3.12-rc0 (was v3.11) (no replies)

Hi Linus, Now with DKIM + SPF in place on linux-iscsi.org (thanks for the help Ted & Co), here is another attempt at the target fixes PULL request for v3.11 that was missed. Given that the last...

View Article


[PATCH] uprobes: Fix limiting un-nested return probes (no replies)

Here is a sample program which shows a problem in uretprobes: #include <stdlib.h> int some_work(int num) { while (num != 0) num--; return 0; }; int main(int argc, char **argv) { if (argc != 2)...

View Article

[PATCH v3 2/3] mm/vmalloc: revert "mm/vmalloc.c: emit the failure message...

Changelog: *v2 -> v3: revert commit 46c001a2 directly Don't warning twice in __vmalloc_area_node and __vmalloc_node_range if __vmalloc_area_node allocation failure. This patch revert commit...

View Article

[PATCH v3 3/3] mm/vmalloc: revert "mm/vmalloc.c: check VM_UNINITIALIZED flag...

Changelog: *v2 -> v3: revert commit d157a558 directly The VM_UNINITIALIZED/VM_UNLIST flag introduced by commit f5252e00(mm: avoid null pointer access in vm_struct via /proc/vmallocinfo) is used to...

View Article
Browsing all 24115 articles
Browse latest View live