From 2fd0e2acaeb958c6035efbd7afc6e1b61a7f3335 Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Tue, 17 Sep 2013 23:00:23 +0300 Subject: [PATCH] db: kernel: ignore i40e_dbg_netdev_ops_write() The i40e driver has some really disgusting debugfs code. Let's pretend it doesn't exist. :) Signed-off-by: Dan Carpenter --- smatch_data/db/fixup_kernel.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/smatch_data/db/fixup_kernel.sh b/smatch_data/db/fixup_kernel.sh index cd3af441..44150287 100755 --- a/smatch_data/db/fixup_kernel.sh +++ b/smatch_data/db/fixup_kernel.sh @@ -13,6 +13,7 @@ delete from caller_info where function = '(struct notifier_block)->notifier_call delete from caller_info where function = '(struct mISDNchannel)->send' and type != 0; delete from caller_info where function = '(struct irq_router)->get' and type != 0; delete from caller_info where function = '(struct irq_router)->set' and type != 0; +delete from caller_info where function = '(struct net_device_ops)->ndo_change_mtu' and caller = 'i40e_dbg_netdev_ops_write'; /* type 3 is USER_DATA */ delete from caller_info where caller = 'hid_input_report' and type = 3; -- 2.11.4.GIT