From: Dan Carpenter Date: Tue, 17 Sep 2013 20:00:23 +0000 (+0300) Subject: db: kernel: ignore i40e_dbg_netdev_ops_write() X-Git-Tag: 1.60~519 X-Git-Url: https://repo.or.cz/w/smatch.git/commitdiff_plain/2fd0e2acaeb958c6035efbd7afc6e1b61a7f3335 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 --- 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;