Preparation for BKL'ed ioctl removal
Sorry, I made a mistake with the recipient in my script :-s -- 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.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ ... 28 Apr 2010 10:35
mac8390: fix pr_info() calls, was Re: another cleanup patch gone wrong
On Thu, 15 Apr 2010, Joe Perches wrote: return 0; } @@ -660,7 +660,7 @@ { ei_status.txing = 0; if (ei_debug > 1) - pr_info("reset not supported\n"); + pr_debug("reset not supported\n"); You'll need to add #define DEBUG for this to print. - pr_... 16 Apr 2010 00:45
[PATCH] mac8390: fix pr_info() calls, was Re: another cleanup patch gone wrong
On Thu, 15 Apr 2010, David Miller wrote: - printk("Don't know how to access card memory!\n"); + pr_info("Don't know how to access card memory!\n"); No, this is pr_err. The driver sets dev->mem_start expecting it to work, obviously. It w... 16 Apr 2010 00:45
[ANNOUNCE] Guilt v0.33
Guilt v0.33 is available for download (once it mirrors out on kernel.org). Guilt (Git Quilt) is a series of bash scripts which add a Mercurial queues-like functionality and interface to git. Tarballs: http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/ Git repo: git://git.kernel.org/pub/scm/linux/ke... 15 Apr 2010 23:40
[PATCH] fcntl.h: define AT_EACCESS
noticed on a klibc build of dash that someone had left out that def: usr/dash/bltin/test.c:490: error: 'AT_EACCESS' undeclared (first use in thiction) Cc: stable(a)kernel.org Cc: Ulrich Drepper <drepper(a)redhat.com> Cc: H. Peter Anvin <hpa(a)zytor.com> Cc: Herbert Xu <herbert(a)gondor.apana.org.au> Signed-off-by: maxi... 15 Apr 2010 23:40
vmscan: Remove unnecessary temporary variables in shrink_zone()
> Two variables are declared that are unnecessary in shrink_zone() as they already exist int the scan_control. Remove them Signed-off-by: Mel Gorman <mel(a)csn.ul.ie> ok. Reviewed-by: KOSAKI Motohiro <kosaki.motohiro(a)jp.fujitsu.com> --- mm/vmscan.c | 8 ++------ 1 files changed, 2 insertio... 16 Apr 2010 19:33
Your Email Address has been awarded $800.000 usd at the United nation scam compensation programm 2010
Submit the following :Name:Address:Tel:Occupation:Age -- This message has been scanned for viruses and dangerous content by GTLBD-MailScanner, and is believed to be clean. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More m... 15 Apr 2010 23:40
vmscan: Remove unnecessary temporary vars in do_try_to_free_pages
> Remove temporary variable that is only used once and does not help clarify code. Signed-off-by: Mel Gorman <mel(a)csn.ul.ie> Reviewed-by: KOSAKI Motohiro <kosaki.motohiro(a)jp.fujitsu.com> --- mm/vmscan.c | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/mm/vms... 15 Apr 2010 23:40
vmscan: Remove useless loop at end of do_try_to_free_pages
> With the patch "vmscan: kill prev_priority completely", the loop at the end of do_try_to_free_pages() is now doing nothing. Delete it. Signed-off-by: Mel Gorman <mel(a)csn.ul.ie> Obviously. thanks correct me. Reviewed-by: KOSAKI Motohiro <kosaki.motohiro(a)jp.fujitsu.com> --- diff --git a/mm/vm... 16 Apr 2010 19:33
net: mac8390 - Sort out memory/MMIO accesses and casts (was: Re: drivers/net/mac8390.c: Remove useless memcpy casting)
On Thu, 15 Apr 2010, Geert Uytterhoeven wrote: On Mon, Mar 8, 2010 at 18:16, Joe Perches <joe(a)perches.com> wrote: Thanks, I'll submit a patch to fix it by tomorrow or so. It hasn't been fixed yet. Thanks for taking care of this, Geert. But here's a better solution. I do not have the hardwa... 15 Apr 2010 22:34