[PATCH 1/5] x86/amd-iommu: Fix possible integer overflow
The variable i in this function could be increased to over 2**32 which would result in an integer overflow when using int. Fix it by changing i to unsigned long. Cc: stable(a)kernel.org Signed-off-by: Joerg Roedel <joerg.roedel(a)amd.com> --- arch/x86/kernel/amd_iommu.c | 2 +- 1 files changed, 1 insertions(+)... 22 Jan 2010 12:56
[PATCH 2/4] media: dvb/af9015, factor out remote setting
This is just a code shuffle without functional changes. For easier review of later changes, i.e. preparation. Signed-off-by: Jiri Slaby <jslaby(a)suse.cz> Cc: Antti Palosaari <crope(a)iki.fi> Cc: Mauro Carvalho Chehab <mchehab(a)redhat.com> Cc: linux-media(a)vger.kernel.org --- drivers/media/dvb/dvb-usb/af9015.c | 3... 22 Jan 2010 10:38
[PATCH] USB: g_config: fix CONFIG_USB_G_MULTI_RNDIS usage
g_multi used CONFIG_USB_ETH_RNDIS to check if RNDIS option was requested where it should check for CONFIG_USB_G_MULTI_RNDIS. As a result, RNDIS was never present in g_multi regardless of configuration. This fixes changes made in commit 396cda90d228d0851f3d64c7c85a1ecf6b8ae1e8. Signed-off-by: Michal Nazarewicz ... 22 Jan 2010 09:30
[PATCH 17/38] x86: change range end to start+size
so make interface more consistent with early_res. later we can share some code with early_res. Signed-off-by: Yinghai Lu <yinghai(a)kernel.org> --- arch/x86/kernel/cpu/mtrr/cleanup.c | 32 ++++++++++++++++---------------- arch/x86/kernel/e820.c | 2 +- arch/x86/pci/amd_bus.c | 24 +... 22 Jan 2010 05:05
kernel "OOPS: SMP" on remount EXT4, kernel 2.6.31.8-0.1-vanilla from openSUSE 11.2
(as I got no feedback from my first post on Jan 19, here a re-post) I just had a kernel oops (but system didn't crash). I created an ext4 with mkfs.ext4 -L saturnwork -O extent,uninit_bg -E lazy_itable_init /dev/sdc3 and then mounted it with mount /dev/sdc3 /1/disks/work/ -o barrier,delalloc,auto_da_a... 22 Jan 2010 02:55
perf: Fix inconsistency between IP and callchain sampling
* Frederic Weisbecker <fweisbec(a)gmail.com> wrote: Concerning interrupts that happen in idle, I think we should filter these if exclude_idle = 1. That looks more something a user may want: if we don't want to profile idle, neither do we want to encumber with interrupts that occur inside. On the opposi... 22 Jan 2010 02:55
[PATCH 3/4] vfs: take f_lock on modifying f_mode after open time
We'll introduce FMODE_RANDOM which will be runtime modified. So protect all runtime modification to f_mode with f_lock to avoid races. CC: Al Viro <viro(a)zeniv.linux.org.uk> CC: Christoph Hellwig <hch(a)infradead.org> Signed-off-by: Wu Fengguang <fengguang.wu(a)intel.com> --- fs/file_table.c | 2 ++ fs/nfs... 22 Jan 2010 00:44
[PATCH 10/24] drivers/block/floppy.c: Indent a comment
Signed-off-by: Joe Perches <joe(a)perches.com> --- drivers/block/floppy.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c index 4a43373..0813c10 100644 --- a/drivers/block/floppy.c +++ b/drivers/block/floppy.c @@ -4262,7 +4262,7 @@ static... 22 Jan 2010 00:44
[PATCH 01/24] drivers/block/floppy.c: Convert some #include <asm/ to #include <linux/
Signed-off-by: Joe Perches <joe(a)perches.com> --- drivers/block/floppy.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c index 3266b4f..a62f211 100644 --- a/drivers/block/floppy.c +++ b/drivers/block/floppy.c @@ -180,6 +180,8 @@ static... 22 Jan 2010 00:44
PM / Runtime: Add sysfs switch for disabling device run-time PM (rev. 2)
On Thu, 21 Jan 2010, Rafael J. Wysocki wrote: From: Rafael J. Wysocki <rjw(a)sisk.pl> Add new device sysfs attribute, power/control, allowing the user space to block the run-time power management of devices. If this attribute is set to "on", the driver of the device won't be able to power manage it ... 5 Feb 2010 10:31