scsi: qedi: fix building with LTO
authorArnd Bergmann <arnd@arndb.de>
Fri, 2 Feb 2018 13:12:19 +0000 (14:12 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 14 Feb 2018 02:37:00 +0000 (21:37 -0500)
When link-time optimizations are enabled, qedi fails to build because
of mismatched prototypes:

drivers/scsi/qedi/qedi_gbl.h:27:37: error: type of 'qedi_dbg_fops' does not match original declaration [-Werror=lto-type-mismatch]
 extern const struct file_operations qedi_dbg_fops;
                                     ^
drivers/scsi/qedi/qedi_debugfs.c:239:30: note: 'qedi_dbg_fops' was previously declared here
 const struct file_operations qedi_dbg_fops[] = {
                              ^
drivers/scsi/qedi/qedi_gbl.h:26:32: error: type of 'qedi_debugfs_ops' does not match original declaration [-Werror=lto-type-mismatch]
 extern struct qedi_debugfs_ops qedi_debugfs_ops;
                                ^
drivers/scsi/qedi/qedi_debugfs.c:102:25: note: 'qedi_debugfs_ops' was previously declared here
 struct qedi_debugfs_ops qedi_debugfs_ops[] = {

This changes the declaration to match the definition, and adapts the
users as necessary. Since both array can be constant here, I'm adding
the 'const' everywhere for consistency.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Manish Rangankar <Manish.Rangankar@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qedi/qedi_dbg.h
drivers/scsi/qedi/qedi_debugfs.c
drivers/scsi/qedi/qedi_gbl.h
drivers/scsi/qedi/qedi_main.c

index c55572b..358f405 100644 (file)
@@ -134,7 +134,7 @@ struct qedi_debugfs_ops {
 }
 
 void qedi_dbg_host_init(struct qedi_dbg_ctx *qedi,
-                       struct qedi_debugfs_ops *dops,
+                       const struct qedi_debugfs_ops *dops,
                        const struct file_operations *fops);
 void qedi_dbg_host_exit(struct qedi_dbg_ctx *qedi);
 void qedi_dbg_init(char *drv_name);
index fd8a1ee..fd914ca 100644 (file)
@@ -19,7 +19,7 @@ static struct dentry *qedi_dbg_root;
 
 void
 qedi_dbg_host_init(struct qedi_dbg_ctx *qedi,
-                  struct qedi_debugfs_ops *dops,
+                  const struct qedi_debugfs_ops *dops,
                   const struct file_operations *fops)
 {
        char host_dirname[32];
@@ -99,7 +99,7 @@ static struct qedi_list_of_funcs qedi_dbg_do_not_recover_ops[] = {
        { NULL, NULL }
 };
 
-struct qedi_debugfs_ops qedi_debugfs_ops[] = {
+const struct qedi_debugfs_ops qedi_debugfs_ops[] = {
        { "gbl_ctx", NULL },
        { "do_not_recover", qedi_dbg_do_not_recover_ops},
        { "io_trace", NULL },
index f5b5a31..a2aa06e 100644 (file)
@@ -23,8 +23,8 @@ extern uint qedi_io_tracing;
 extern struct scsi_host_template qedi_host_template;
 extern struct iscsi_transport qedi_iscsi_transport;
 extern const struct qed_iscsi_ops *qedi_ops;
-extern struct qedi_debugfs_ops qedi_debugfs_ops;
-extern const struct file_operations qedi_dbg_fops;
+extern const struct qedi_debugfs_ops qedi_debugfs_ops[];
+extern const struct file_operations qedi_dbg_fops[];
 extern struct device_attribute *qedi_shost_attrs[];
 
 int qedi_alloc_sq(struct qedi_ctx *qedi, struct qedi_endpoint *ep);
index 029e2e6..e992f9d 100644 (file)
@@ -2303,8 +2303,8 @@ static int __qedi_probe(struct pci_dev *pdev, int mode)
        }
 
 #ifdef CONFIG_DEBUG_FS
-       qedi_dbg_host_init(&qedi->dbg_ctx, &qedi_debugfs_ops,
-                          &qedi_dbg_fops);
+       qedi_dbg_host_init(&qedi->dbg_ctx, qedi_debugfs_ops,
+                          qedi_dbg_fops);
 #endif
        QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_INFO,
                  "QLogic FastLinQ iSCSI Module qedi %s, FW %d.%d.%d.%d\n",