SEARCH  

NEWS

2010.10.06:11:36:28
Nie podał hasła, trafił za kratki
W ten sposób brytyjski sąd chce zmusić nastolatka do podania hasła szyfrującego jego komputer. Sprawa jest poważna, dotyczy bowiem seksualnego wykorzystywania dzieci.

 

messageID:580360007615
author:gregkh
title:patch clockevents add missing include to paci
This is a note to let you know that we have just queued up the patch titled Subject: clockevents: Add missing include to pacify sparse to the 2.6.32-stable tree. Its filename is clockevents-add-missing-include-to-pacify-sparse.patch A git repo of this tree can be found at rel="nofollow" www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary From 8e1a928a2ed7e8d5cad97c8e985294b4caedd168 Mon Sep 17 00:00:00 2001 From: H Hartley Sweeten <hartleys@xxxxxxxxxxxxxxxxxxx Date: Fri, 16 Oct 2009 18:19:01 -0400 Subject: clockevents: Add missing include to pacify sparse From: H Hartley Sweeten <hartleys@xxxxxxxxxxxxxxxxxxx commit 8e1a928a2ed7e8d5cad97c8e985294b4caedd168 upstream. Include "tick-internal.h" in order to pick up the extern function prototype for clockevents_shutdown(). This quiets the following sparse build noise: warning: symbol clockevents_shutdown was not declared. Should it be static? Signed-off-by: H Hartley Sweeten <hsweeten@xxxxxxxxxxxxxxxxxxx LKML-Reference: <BD79186B4FD85F4B8E60E381CAEE190901E24550@xxxxxxxxxxxxxxxxxxxx Reviewed-by: Yong Zhang <yong.zhang0@xxxxxxxxx Cc: johnstul@xxxxxxxxxx Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxx --- kernel/time/clockevents.c | 2 ++ 1 file changed, 2 insertions(+) --- a/kernel/time/clockevents.c +++ b/kernel/time/clockevents.c @@ -20,6 +20,8 @@ #include <linux/sysdev.h #include <linux/tick.h +#include "tick-internal.h" + /* The registered clock event devices */ static LIST_HEAD(clockevent_devices); static LIST_HEAD(clockevents_released); Patches currently in stable-queue which might be from hartleys@xxxxxxxxxxxxxxxxxxx are queue-2.6.32/clockevents-add-missing-include-to-pacify-sparse.patch -- To unsubscribe from this list: send the line "unsubscribe stable-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at rel="nofollow" vger.kernel.org/majordomo-info.html vger.kernel.org/majordomo-info.html
Index