]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
scsi: hisi_sas: Add debugfs file structure for IOST cache
authorLuo Jiaxing <luojiaxing@huawei.com>
Thu, 24 Oct 2019 14:08:19 +0000 (22:08 +0800)
committerSeth Forshee <seth.forshee@canonical.com>
Tue, 7 Jan 2020 21:29:37 +0000 (15:29 -0600)
BugLink: https://bugs.launchpad.net/bugs/1854548
Create a file structure which was used to save the memory address for IOST
cache at debugfs. This structure is bound to the corresponding debugfs
file, it can help callback function of debugfs file to get what it needs.

Link: https://lore.kernel.org/r/1571926105-74636-13-git-send-email-john.garry@huawei.com
Signed-off-by: Luo Jiaxing <luojiaxing@huawei.com>
Signed-off-by: John Garry <john.garry@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
(cherry picked from commit b714dd8f36dc609dd4b0078cf5563978134838ed)
Signed-off-by: dann frazier <dann.frazier@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
drivers/scsi/hisi_sas/hisi_sas.h
drivers/scsi/hisi_sas/hisi_sas_main.c

index f42f1b34f84393a47c066bdfd3adb4b39c76525e..4e32d1b77d16c7dfe1e096b2ffbacf07d9ba1e17 100644 (file)
@@ -351,6 +351,10 @@ struct hisi_sas_debugfs_itct {
        struct hisi_sas_itct *itct;
 };
 
+struct hisi_sas_debugfs_iost_cache {
+       struct hisi_sas_iost_itct_cache *cache;
+};
+
 struct hisi_hba {
        /* This must be the first element, used by SHOST_TO_SAS_HA */
        struct sas_ha_struct *p;
@@ -438,8 +442,8 @@ struct hisi_hba {
        struct hisi_sas_debugfs_dq debugfs_dq[HISI_SAS_MAX_QUEUES];
        struct hisi_sas_debugfs_iost debugfs_iost;
        struct hisi_sas_debugfs_itct debugfs_itct;
-       u64 *debugfs_iost_cache;
        u64 debugfs_timestamp;
+       struct hisi_sas_debugfs_iost_cache debugfs_iost_cache;
        u64 *debugfs_itct_cache;
 
        struct dentry *debugfs_dir;
index 35a4e363ff222a5c5b41af803ab3384b849f68c6..021a71fd469bce615e1c428e5da4e7bf002093ce 100644 (file)
@@ -2802,7 +2802,7 @@ static void hisi_sas_debugfs_snapshot_itct_reg(struct hisi_hba *hisi_hba)
 static void hisi_sas_debugfs_snapshot_iost_reg(struct hisi_hba *hisi_hba)
 {
        int max_command_entries = HISI_SAS_MAX_COMMANDS;
-       void *cachebuf = hisi_hba->debugfs_iost_cache;
+       void *cachebuf = hisi_hba->debugfs_iost_cache.cache;
        void *databuf = hisi_hba->debugfs_iost.iost;
        struct hisi_sas_iost *iost;
        int i;
@@ -3090,9 +3090,8 @@ static const struct file_operations hisi_sas_debugfs_iost_fops = {
 
 static int hisi_sas_debugfs_iost_cache_show(struct seq_file *s, void *p)
 {
-       struct hisi_hba *hisi_hba = s->private;
-       struct hisi_sas_iost_itct_cache *iost_cache =
-               (struct hisi_sas_iost_itct_cache *)hisi_hba->debugfs_iost_cache;
+       struct hisi_sas_debugfs_iost_cache *debugfs_iost_cache = s->private;
+       struct hisi_sas_iost_itct_cache *iost_cache = debugfs_iost_cache->cache;
        u32 cache_size = HISI_SAS_IOST_ITCT_CACHE_DW_SZ * 4;
        int i, tab_idx;
        __le64 *iost;
@@ -3252,7 +3251,8 @@ static void hisi_sas_debugfs_create_files(struct hisi_hba *hisi_hba)
                            &hisi_hba->debugfs_iost,
                            &hisi_sas_debugfs_iost_fops);
 
-       debugfs_create_file("iost_cache", 0400, dump_dentry, hisi_hba,
+       debugfs_create_file("iost_cache", 0400, dump_dentry,
+                           &hisi_hba->debugfs_iost_cache,
                            &hisi_sas_debugfs_iost_cache_fops);
 
        debugfs_create_file("itct", 0400, dump_dentry,
@@ -3718,7 +3718,7 @@ static void hisi_sas_debugfs_release(struct hisi_hba *hisi_hba)
        struct device *dev = hisi_hba->dev;
        int i;
 
-       devm_kfree(dev, hisi_hba->debugfs_iost_cache);
+       devm_kfree(dev, hisi_hba->debugfs_iost_cache.cache);
        devm_kfree(dev, hisi_hba->debugfs_itct_cache);
        devm_kfree(dev, hisi_hba->debugfs_iost.iost);
 
@@ -3795,8 +3795,8 @@ static int hisi_sas_debugfs_alloc(struct hisi_hba *hisi_hba)
        sz = HISI_SAS_IOST_ITCT_CACHE_NUM *
             sizeof(struct hisi_sas_iost_itct_cache);
 
-       hisi_hba->debugfs_iost_cache = devm_kmalloc(dev, sz, GFP_KERNEL);
-       if (!hisi_hba->debugfs_iost_cache)
+       hisi_hba->debugfs_iost_cache.cache = devm_kmalloc(dev, sz, GFP_KERNEL);
+       if (!hisi_hba->debugfs_iost_cache.cache)
                goto fail;
 
        sz = HISI_SAS_IOST_ITCT_CACHE_NUM *