[PATCH 0/1] signals: introduce send_sigkill() helper
On 06/08, Oleg Nesterov wrote: @@ -399,7 +399,7 @@ static int __oom_kill_process(struct task_struct *p, struct mem_cgroup *mem) p->rt.time_slice = HZ; set_tsk_thread_flag(p, TIF_MEMDIE); - force_sig(SIGKILL, p); + send_sig(SIGKILL, p, 1); This is not right, we need send_sig(SI... 9 Jun 2010 22:00
Fix a race in pid generation that causes pids to be reused immediately.
On Wed, 9 Jun 2010, Salman Qazi wrote: I don't think this gives the right answer in the a < base < b case. Here a - base < 0 and b - base > 0. But we really want b to be before a, since a has rolled over further than b. Right you are. I think the right solution is comparing (a - base + max... 9 Jun 2010 20:55
[tip:x86/cpu] x86, xsave: Cleanup return codes in check_for_xstate()
Commit-ID: d6d4d4205cf4ce4ba13bc320305afbda25303496 Gitweb: http://git.kernel.org/tip/d6d4d4205cf4ce4ba13bc320305afbda25303496 Author: Dan Carpenter <error27(a)gmail.com> AuthorDate: Thu, 3 Jun 2010 12:07:46 +0200 Committer: H. Peter Anvin <hpa(a)linux.intel.com> CommitDate: Wed, 9 Jun 2010 15:57:36 -0700 ... 9 Jun 2010 20:55
[tip:x86/cpu] x86, AMD: Extend support to future families
Commit-ID: 12d8a961289644d265d8b3e88201878837c3b814 Gitweb: http://git.kernel.org/tip/12d8a961289644d265d8b3e88201878837c3b814 Author: Borislav Petkov <borislav.petkov(a)amd.com> AuthorDate: Wed, 2 Jun 2010 20:29:21 +0200 Committer: H. Peter Anvin <hpa(a)linux.intel.com> CommitDate: Wed, 9 Jun 2010 15:57:47 ... 9 Jun 2010 20:55
niu: always include of_device.h
On Wed, Jun 9, 2010 at 4:44 PM, Randy Dunlap <randy.dunlap(a)oracle.com> wrote: From: Randy Dunlap <randy.dunlap(a)oracle.com> The niu driver uses struct of_device when built on any arch, not only SPARC64, so always #include <linux/of_device.h>. drivers/net/niu.c:9700: warning: 'struct of_device' declared... 9 Jun 2010 20:55
of_device.h: provide struct of_device even when not enabled
On Wed, Jun 9, 2010 at 4:44 PM, Randy Dunlap <randy.dunlap(a)oracle.com> wrote: From: Randy Dunlap <randy.dunlap(a)oracle.com> Drivers may use struct of_device (struct platform_device), even when CONFIG_OF_DEVICE is not enabled, so minimally provide that struct for that kconfig case. Signed-off-by: Ran... 9 Jun 2010 20:55
[PATCH 3/3] uio: Remove IRQF_DISABLED flag from uio_cif.c
Remove IRQF_DISABLED since it is deprecated and a no-op in the current kernel. Signed-off-by: Hans J. Koch <hjk(a)linutronix.de> --- drivers/uio/uio_cif.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/uio/uio_cif.c b/drivers/uio/uio_cif.c index 371f87f..a8ea2f1 100644 --- a... 9 Jun 2010 19:49
[PATCH 2/3] uio: Remove IRQF_DISABLED from uio_sercos3.c
Remove IRQF_DISABLED since it is deprecated and a no-op in the current kernel. Signed-off-by: Hans J. Koch <hjk(a)linutronix.de> --- drivers/uio/uio_sercos3.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/uio/uio_sercos3.c b/drivers/uio/uio_sercos3.c index 3d461cd..a187fa1 1... 9 Jun 2010 19:49
[PATCH 1/3] uio: Remove IRQF_DISABLED flag from uio_pdrv_genirq.c
Remove IRQF_DISABLED flag since it is deprecated and a no-op in the current kernel. Signed-off-by: Hans J. Koch <hjk(a)linutronix.de> --- drivers/uio/uio_pdrv_genirq.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/uio/uio_pdrv_genirq.c b/drivers/uio/uio_pdrv_genirq.c index 61... 9 Jun 2010 19:49
[PATCH 0/3] uio: Remove IRQF_DISABLED flag from Userspace IO drivers
The interrupt flag IRQF_DISABLED is deprecated now. This small patch series removes all uses of this flag in drivers/uio/. Thanks, Hans -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.o... 9 Jun 2010 19:49