[<prev] [next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.20.1804280914120.2700@hadrien>
Date: Sat, 28 Apr 2018 09:15:57 +0200 (CEST)
From: Julia Lawall <julia.lawall@...6.fr>
To: Sujeev Dias <sdias@...eaurora.org>
cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Arnd Bergmann <arnd@...db.de>, linux-kernel@...r.kernel.org,
linux-arm-msm@...r.kernel.org, Tony Truong <truong@...eaurora.org>,
kbuild-all@...org
Subject: [PATCH] mhi_bus: controller: fix debugfs_simple_attr.cocci
warnings
From: Fengguang Wu <fengguang.wu@...el.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: 6190c08efd64 ("mhi_bus: controller: MHI support for QCOM modems")
CC: Sujeev Dias <sdias@...eaurora.org>
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
Signed-off-by: Julia Lawall <julia.lawall@...6.fr>
---
url:
https://github.com/0day-ci/linux/commits/Sujeev-Dias/mhi_bus-core-Add-support-for-MHI-host-interface/20180428-065959
:::::: branch date: 4 hours ago
:::::: commit date: 4 hours ago
mhi_qcom.c | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
--- a/drivers/bus/mhi/controllers/mhi_qcom.c
+++ b/drivers/bus/mhi/controllers/mhi_qcom.c
@@ -335,11 +335,11 @@ int mhi_debugfs_trigger_m3(void *data, u
return 0;
}
-DEFINE_SIMPLE_ATTRIBUTE(debugfs_trigger_m0_fops, NULL,
- mhi_debugfs_trigger_m0, "%llu\n");
+DEFINE_DEBUGFS_ATTRIBUTE(debugfs_trigger_m0_fops, NULL,
+ mhi_debugfs_trigger_m0, "%llu\n");
-DEFINE_SIMPLE_ATTRIBUTE(debugfs_trigger_m3_fops, NULL,
- mhi_debugfs_trigger_m3, "%llu\n");
+DEFINE_DEBUGFS_ATTRIBUTE(debugfs_trigger_m3_fops, NULL,
+ mhi_debugfs_trigger_m3, "%llu\n");
static int mhi_init_debugfs_trigger_go(void *data, u64 val)
{
@@ -351,8 +351,8 @@ static int mhi_init_debugfs_trigger_go(v
return 0;
}
-DEFINE_SIMPLE_ATTRIBUTE(mhi_init_debugfs_trigger_go_fops, NULL,
- mhi_init_debugfs_trigger_go, "%llu\n");
+DEFINE_DEBUGFS_ATTRIBUTE(mhi_init_debugfs_trigger_go_fops, NULL,
+ mhi_init_debugfs_trigger_go, "%llu\n");
int mhi_init_debugfs_debug_show(struct seq_file *m, void *d)
@@ -434,8 +434,8 @@ static ssize_t mhi_init_debugfs_debug_wr
}
mhi_dev->debug_mode = true;
- debugfs_create_file("go", 0444, mhi_cntrl->parent, mhi_cntrl,
- &mhi_init_debugfs_trigger_go_fops);
+ debugfs_create_file_unsafe("go", 0444, mhi_cntrl->parent, mhi_cntrl,
+ &mhi_init_debugfs_trigger_go_fops);
pr_info(
"%s: ret:%d pcidev:0x%x smm_cfg:%u timeout:%u\n",
__func__, ret, args[1], mhi_dev->smmu_cfg,
@@ -504,10 +504,12 @@ int mhi_pci_probe(struct pci_dev *pci_de
pm_runtime_allow(&pci_dev->dev);
if (mhi_cntrl->dentry) {
- debugfs_create_file("m0", 0444, mhi_cntrl->dentry, mhi_cntrl,
- &debugfs_trigger_m0_fops);
- debugfs_create_file("m3", 0444, mhi_cntrl->dentry, mhi_cntrl,
- &debugfs_trigger_m3_fops);
+ debugfs_create_file_unsafe("m0", 0444, mhi_cntrl->dentry,
+ mhi_cntrl,
+ &debugfs_trigger_m0_fops);
+ debugfs_create_file_unsafe("m3", 0444, mhi_cntrl->dentry,
+ mhi_cntrl,
+ &debugfs_trigger_m3_fops);
}
MHI_LOG("Return successful\n");
Powered by blists - more mailing lists