First  |  Prev |  Next  |  Last
Pages: 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
[PATCH] usbnet: use jiffies in schedule_timeout(), not msecs
usbnet_terminate_urbs() uses schedule_timeout() with argument 3 msecs. schedule_timeout() uses jiffies as argument, so convert msecs to jiffies with msecs_to_jiffies(). Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/net/usb/usbnet.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ... 26 Jul 2010 05:08
vmscan: Do not writeback filesystem pages in direct reclaim
> ==== CUT HERE ==== vmscan: Do not writeback filesystem pages in direct reclaim When memory is under enough pressure, a process may enter direct reclaim to free pages in the same manner kswapd does. If a dirty page is encountered during the scan, this page is written to backing storage using mapping... 26 Jul 2010 09:26
[PATCH] afs: do not set task state after schedule_timeout()
schedule_timeout() sets tast state to TASK_RUNNING, so there's no need to set it explicitly. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- fs/afs/vlocation.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/fs/afs/vlocation.c b/fs/afs/vlocation.c index 9ac260d..21f270d 100644... 26 Jul 2010 05:08
[PATCH] oss: au1550_ac97: simplify au1550_delay()
au1550_delay() uses loop with schedule_timeout() to unconditionally wait for msec. Use schedule_timeout_uninteruptible() instead. Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- sound/oss/au1550_ac97.c | 11 +---------- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/sound/oss/au1550_... 26 Jul 2010 05:08
[PATCH] i2c-davinci: use schedule_timeout_uninterruptible()
i2c_davinci_wait_bus_not_busy() uses schedule_timeout() without setting state to STATE_(UN)INTERRUPTIBLE. As it is called in cycle without checking of pending signals, use schedule_timeout_uninterruptible(). Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com> --- drivers/i2c/busses/i2c-davinci.c | 2 +- 1 fi... 26 Jul 2010 05:08
Problem with e1000e, 802.1Q VLAN's and IPMI
Hello all, I have a problem using IPMI on Super Micro X7SBL motherboard (AOC-IPMI20-E BMC). BMC shares ethernet port with onboard e1000e. It works when IPMI traffic is untagged (CrcStripping=0 module option used), but if I try to use 802.1Q vlan for IPMI traffic BMC stops responding right after "ifup eth0". I ... 30 Jul 2010 03:12
ACPI: create "processor.bm_check_disable" boot param
Len Brown <lenb(a)kernel.org> writes: Note also that an alternative for newer systems is to use the intel_idle driver, which always ignores BM_STS, relying Linux device drivers to register constraints explicitly via PM_QOS. https://bugzilla.kernel.org/show_bug.cgi?id=15886 Thanks. I don't fully u... 28 Jul 2010 15:09
[PATCH] virtio: fix oops on OOM
From: "Michael S. Tsirkin" <mst(a)redhat.com> virtio ring was changed to return an error code on OOM, but one caller was missed and still checks for vq->vring.num. The fix is just to check for <0 error code. Long term it might make sense to change goto add_head to just return an error on oom instead, but let's a... 26 Jul 2010 04:04
omap3: move EMU peripheral addresses to a platform header
> -----Original Message----- From: Alexander Shishkin [mailto:virtuoso(a)slind.org] Sent: Sunday, July 25, 2010 10:35 PM To: linux-arm-kernel(a)lists.infradead.org Cc: Alexander Shishkin; Tony Lindgren; Russell King; Paul Walmsley; Shilimkar, Santosh; Kevin Hilman; linux-omap(a)vger.kernel.org; linux- kerne... 26 Jul 2010 04:04
wm8350-regulator: fix wm8350_register_regulator error handling
On 25 Jul 2010, at 19:41, Axel Lin <axel.lin(a)gmail.com> wrote: In the case of platform_device_add() fail, we should call platform_device_put() instead of platform_device_del() Signed-off-by: Axel Lin <axel.lin(a)gmail.com> Acked-by: Mark Brown <broonie(a)opensource.wolfsonmicro.com> --- drivers/re... 26 Jul 2010 04:04
First  |  Prev |  Next  |  Last
Pages: 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409