* [PATCH] mhi_bus: dev: netdev: fix debugfs_simple_attr.cocci warnings
@ 2018-04-28 7:19 Julia Lawall
0 siblings, 0 replies; only message in thread
From: Julia Lawall @ 2018-04-28 7:19 UTC (permalink / raw)
To: Sujeev Dias
Cc: Greg Kroah-Hartman, Arnd Bergmann, linux-kernel, linux-arm-msm,
Tony Truong, kbuild-all
From: Fengguang Wu <fengguang.wu@intel.com>
Use DEFINE_DEBUGFS_ATTRIBUTE rather than DEFINE_SIMPLE_ATTRIBUTE
for debugfs files.
Rationale: DEFINE_SIMPLE_ATTRIBUTE + debugfs_create_file()
imposes some significant overhead as compared to
DEFINE_DEBUGFS_ATTRIBUTE + debugfs_create_file_unsafe().
Generated by: scripts/coccinelle/api/debugfs/debugfs_simple_attr.cocci
Fixes: e693c860afd8 ("mhi_bus: dev: netdev: add network interface driver")
CC: Sujeev Dias <sdias@codeaurora.org>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
---
url:
https://github.com/0day-ci/linux/commits/Sujeev-Dias/mhi_bus-core-Add-support-for-MHI-host-interface/20180428-065959
:::::: branch date: 5 hours ago
:::::: commit date: 5 hours ago
mhi_netdev.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
--- a/drivers/bus/mhi/devices/mhi_netdev.c
+++ b/drivers/bus/mhi/devices/mhi_netdev.c
@@ -692,8 +692,8 @@ static int mhi_netdev_debugfs_trigger_re
return 0;
}
-DEFINE_SIMPLE_ATTRIBUTE(mhi_netdev_debugfs_trigger_reset_fops, NULL,
- mhi_netdev_debugfs_trigger_reset, "%llu\n");
+DEFINE_DEBUGFS_ATTRIBUTE(mhi_netdev_debugfs_trigger_reset_fops, NULL,
+ mhi_netdev_debugfs_trigger_reset, "%llu\n");
static void mhi_netdev_create_debugfs(struct mhi_netdev *mhi_netdev)
{
@@ -762,8 +762,9 @@ static void mhi_netdev_create_debugfs(st
return;
}
- debugfs_create_file("reset", mode, mhi_netdev->dentry, mhi_netdev,
- &mhi_netdev_debugfs_trigger_reset_fops);
+ debugfs_create_file_unsafe("reset", mode, mhi_netdev->dentry,
+ mhi_netdev,
+ &mhi_netdev_debugfs_trigger_reset_fops);
}
static void mhi_netdev_create_debugfs_dir(void)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2018-04-28 7:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-28 7:19 [PATCH] mhi_bus: dev: netdev: fix debugfs_simple_attr.cocci warnings Julia Lawall
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox