[PATCH 4/20] arch/arm/mach-davinci: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH 2/20] drivers/gpu/drm: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 16:02
[PATCH 1/20] sound/pci/asihpi: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 16:02
[PATCH 3/20] drivers/media: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 16:02
Congratulation ***Your E-mail ID Have Won***
Your email address has won,�1,000,000.00 Pounds,in the on going UK promo.send your details: Names....... Tele....... Age....... Address....... occupation....... country....... Mr. Roy Phil Tel:+44 704-571-0545 email:bnlclaimsdept(a)live.co.uk -- To unsubscribe from this list: send the line "unsubscribe linux... 13 May 2010 16:02
[GIT PATCH] TTY fixes for 2.6.34-git
Here are 3 bugfixes for your 2.6.34-git tree. One is a regression from .33, and the other 2 fix reported problems and are being sent to the -stable trees as well. Please pull from: master.kernel.org:/pub/scm/linux/kernel/git/gregkh/tty-2.6.git/ These patches have been in the linux-next tree for a while now.... 13 May 2010 16:02
[PATCH 3/3] serial: imx.c: fix CTS trigger level lower to avoid lost chars
From: Valentin Longchamp <valentin.longchamp(a)epfl.ch> The imx CTS trigger level is left at its reset value that is 32 chars. Since the RX FIFO has 32 entries, when CTS is raised, the FIFO already is full. However, some serial port devices first empty their TX FIFO before stopping when CTS is raised, resulting in ... 13 May 2010 16:02
[PATCH 1/3] serial: mpc52xx_uart: fix null pointer dereference
From: Anatolij Gustschin <agust(a)denx.de> Commit 6acc6833510db8f72b5ef343296d97480555fda9 introduced NULL pointer dereference and kernel crash on ppc32 machines while booting. Fix this bug now. Reported-by: Leonardo Chiquitto <leonardo.lists(a)gmail.com> Tested-by: Leonardo Chiquitto <leonardo.lists(a)gmail.com> S... 13 May 2010 16:02
mmc: drop the "state" argument to mmc_suspend_host()
On Thu, May 13, 2010 at 08:01:45PM +0100, Matt Fleming wrote: Even though many mmc host drivers pass a pm_message_t argument to mmc_suspend_host() that argument isn't used the by MMC core. As host drivers are converted to dev_pm_ops they'll have to construct pm_message_t's (as they won't be passed by the PM... 16 May 2010 14:39
[PATCH 2/3] tty: Fix unbalanced BKL handling in error path
From: Alan Cox <alan(a)linux.intel.com> Arnd noted: After the "retry_open:" label, we first get the tty_mutex and then the BKL. However a the end of tty_open, we jump back to retry_open with the BKL still held. If we run into this case, the tty_open function will be left with the BKL still held. Signed-off-b... 13 May 2010 16:02