From 9f2c2cf5f7630b2e8f62506055f6dc10f367ad55 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Tue, 2 Apr 2013 11:45:42 +0300 Subject: [PATCH] db: fixup_kernel.sh: ignore (struct timer_list)->function We pass an opaque pointer to the handler functions. Sometimes it is user data and sometimes it's not. Signed-off-by: Dan Carpenter --- smatch_data/db/fixup_kernel.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/smatch_data/db/fixup_kernel.sh b/smatch_data/db/fixup_kernel.sh index f099b5e3..0dafd4a4 100755 --- a/smatch_data/db/fixup_kernel.sh +++ b/smatch_data/db/fixup_kernel.sh @@ -19,5 +19,7 @@ delete from caller_info where caller = 'packet_rcv_fanout' and function = '(stru delete from caller_info where caller = 'hptiop_probe' and type = 3; +delete from caller_info where function = '(struct timer_list)->function' and parameter = 0; + EOF -- 2.11.4.GIT