s390: move from strlcpy with unused retval to strscpy
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Thu, 18 Aug 2022 20:59:47 +0000 (22:59 +0200)
committerVasily Gorbik <gor@linux.ibm.com>
Tue, 30 Aug 2022 20:00:33 +0000 (22:00 +0200)
Follow the advice of the below link and prefer 'strscpy' in this
subsystem. Conversion is 1:1 because the return value is not used.
Generated by a coccinelle script.

Link: https://lore.kernel.org/r/CAHk-=wgfRnXz0W3D37d01q3JFkr_i_uTL=V6A6G1oUZcprmknw@mail.gmail.com/
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: Jakub Kicinski <kuba@kernel.org>
Acked-by: Benjamin Block <bblock@linux.ibm.com>
Acked-by: Alexandra Winter <wintera@linux.ibm.com>
Link: https://lore.kernel.org/r/20220818205948.6360-1-wsa+renesas@sang-engineering.com
Link: https://lore.kernel.org/r/20220818210102.7301-1-wsa+renesas@sang-engineering.com
[gor@linux.ibm.com: squashed two changes linked above together]
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
13 files changed:
arch/s390/kernel/debug.c
arch/s390/kernel/early.c
drivers/s390/block/dasd_devmap.c
drivers/s390/block/dasd_eer.c
drivers/s390/block/dcssblk.c
drivers/s390/char/hmcdrv_cache.c
drivers/s390/char/tape_class.c
drivers/s390/cio/qdio_debug.c
drivers/s390/net/ctcm_main.c
drivers/s390/net/fsm.c
drivers/s390/net/qeth_ethtool.c
drivers/s390/scsi/zfcp_aux.c
drivers/s390/scsi/zfcp_fc.c

index 4331c7e..d7a8206 100644 (file)
@@ -250,7 +250,7 @@ static debug_info_t *debug_info_alloc(const char *name, int pages_per_area,
        rc->level          = level;
        rc->buf_size       = buf_size;
        rc->entry_size     = sizeof(debug_entry_t) + buf_size;
-       strlcpy(rc->name, name, sizeof(rc->name));
+       strscpy(rc->name, name, sizeof(rc->name));
        memset(rc->views, 0, DEBUG_MAX_VIEWS * sizeof(struct debug_view *));
        memset(rc->debugfs_entries, 0, DEBUG_MAX_VIEWS * sizeof(struct dentry *));
        refcount_set(&(rc->ref_count), 0);
index 432c8c9..6030fdd 100644 (file)
@@ -267,7 +267,7 @@ char __bootdata(early_command_line)[COMMAND_LINE_SIZE];
 static void __init setup_boot_command_line(void)
 {
        /* copy arch command line */
-       strlcpy(boot_command_line, early_command_line, COMMAND_LINE_SIZE);
+       strscpy(boot_command_line, early_command_line, COMMAND_LINE_SIZE);
 }
 
 static void __init check_image_bootable(void)
index 811e79c..0062a70 100644 (file)
@@ -426,7 +426,7 @@ dasd_add_busid(const char *bus_id, int features)
        if (!devmap) {
                /* This bus_id is new. */
                new->devindex = dasd_max_devindex++;
-               strlcpy(new->bus_id, bus_id, DASD_BUS_ID_SIZE);
+               strscpy(new->bus_id, bus_id, DASD_BUS_ID_SIZE);
                new->features = features;
                new->device = NULL;
                list_add(&new->list, &dasd_hashlists[hash]);
index 5ae64af..d4d31cd 100644 (file)
@@ -313,7 +313,7 @@ static void dasd_eer_write_standard_trigger(struct dasd_device *device,
        ktime_get_real_ts64(&ts);
        header.tv_sec = ts.tv_sec;
        header.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
-       strlcpy(header.busid, dev_name(&device->cdev->dev),
+       strscpy(header.busid, dev_name(&device->cdev->dev),
                DASD_EER_BUSID_SIZE);
 
        spin_lock_irqsave(&bufferlock, flags);
@@ -356,7 +356,7 @@ static void dasd_eer_write_snss_trigger(struct dasd_device *device,
        ktime_get_real_ts64(&ts);
        header.tv_sec = ts.tv_sec;
        header.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
-       strlcpy(header.busid, dev_name(&device->cdev->dev),
+       strscpy(header.busid, dev_name(&device->cdev->dev),
                DASD_EER_BUSID_SIZE);
 
        spin_lock_irqsave(&bufferlock, flags);
index 5187705..93b80da 100644 (file)
@@ -614,7 +614,7 @@ dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char
                rc = -ENAMETOOLONG;
                goto seg_list_del;
        }
-       strlcpy(local_buf, buf, i + 1);
+       strscpy(local_buf, buf, i + 1);
        dev_info->num_of_segments = num_of_segments;
        rc = dcssblk_is_continuous(dev_info);
        if (rc < 0)
index 1f5bdb2..43df27c 100644 (file)
@@ -154,7 +154,7 @@ static ssize_t hmcdrv_cache_do(const struct hmcdrv_ftp_cmdspec *ftp,
                /* cache some file info (FTP command, file name and file
                 * size) unconditionally
                 */
-               strlcpy(hmcdrv_cache_file.fname, ftp->fname,
+               strscpy(hmcdrv_cache_file.fname, ftp->fname,
                        HMCDRV_FTP_FIDENT_MAX);
                hmcdrv_cache_file.id = ftp->id;
                pr_debug("caching cmd %d, file size %zu for '%s'\n",
index b58df0d..c21dc68 100644 (file)
@@ -54,10 +54,10 @@ struct tape_class_device *register_tape_dev(
        if (!tcd)
                return ERR_PTR(-ENOMEM);
 
-       strlcpy(tcd->device_name, device_name, TAPECLASS_NAME_LEN);
+       strscpy(tcd->device_name, device_name, TAPECLASS_NAME_LEN);
        for (s = strchr(tcd->device_name, '/'); s; s = strchr(s, '/'))
                *s = '!';
-       strlcpy(tcd->mode_name, mode_name, TAPECLASS_NAME_LEN);
+       strscpy(tcd->mode_name, mode_name, TAPECLASS_NAME_LEN);
        for (s = strchr(tcd->mode_name, '/'); s; s = strchr(s, '/'))
                *s = '!';
 
index 4bb7965..1a9714a 100644 (file)
@@ -87,7 +87,7 @@ int qdio_allocate_dbf(struct qdio_irq *irq_ptr)
                        debug_unregister(irq_ptr->debug_area);
                        return -ENOMEM;
                }
-               strlcpy(new_entry->dbf_name, text, QDIO_DBF_NAME_LEN);
+               strscpy(new_entry->dbf_name, text, QDIO_DBF_NAME_LEN);
                new_entry->dbf_info = irq_ptr->debug_area;
                mutex_lock(&qdio_dbf_list_mutex);
                list_add(&new_entry->dbf_list, &qdio_dbf_list);
index e0fdd54..37b551b 100644 (file)
@@ -1566,7 +1566,7 @@ static int ctcm_new_device(struct ccwgroup_device *cgdev)
                goto out_dev;
        }
 
-       strlcpy(priv->fsm->name, dev->name, sizeof(priv->fsm->name));
+       strscpy(priv->fsm->name, dev->name, sizeof(priv->fsm->name));
 
        dev_info(&dev->dev,
                "setup OK : r/w = %s/%s, protocol : %d\n",
index 98c4864..0ff61d0 100644 (file)
@@ -28,7 +28,7 @@ init_fsm(char *name, const char **state_names, const char **event_names, int nr_
                        "fsm(%s): init_fsm: Couldn't alloc instance\n", name);
                return NULL;
        }
-       strlcpy(this->name, name, sizeof(this->name));
+       strscpy(this->name, name, sizeof(this->name));
        init_waitqueue_head(&this->wait_q);
 
        f = kzalloc(sizeof(fsm), order);
index 9eba0a3..e250f49 100644 (file)
@@ -188,9 +188,9 @@ static void qeth_get_drvinfo(struct net_device *dev,
 {
        struct qeth_card *card = dev->ml_priv;
 
-       strlcpy(info->driver, IS_LAYER2(card) ? "qeth_l2" : "qeth_l3",
+       strscpy(info->driver, IS_LAYER2(card) ? "qeth_l2" : "qeth_l3",
                sizeof(info->driver));
-       strlcpy(info->fw_version, card->info.mcl_level,
+       strscpy(info->fw_version, card->info.mcl_level,
                sizeof(info->fw_version));
        snprintf(info->bus_info, sizeof(info->bus_info), "%s/%s/%s",
                 CARD_RDEV_ID(card), CARD_WDEV_ID(card), CARD_DDEV_ID(card));
index fd2f1c3..df78264 100644 (file)
@@ -103,7 +103,7 @@ static void __init zfcp_init_device_setup(char *devstr)
        token = strsep(&str, ",");
        if (!token || strlen(token) >= ZFCP_BUS_ID_SIZE)
                goto err_out;
-       strlcpy(busid, token, ZFCP_BUS_ID_SIZE);
+       strscpy(busid, token, ZFCP_BUS_ID_SIZE);
 
        token = strsep(&str, ",");
        if (!token || kstrtoull(token, 0, (unsigned long long *) &wwpn))
index b61acbb..77917b3 100644 (file)
@@ -885,7 +885,7 @@ static int zfcp_fc_gspn(struct zfcp_adapter *adapter,
                         dev_name(&adapter->ccw_device->dev),
                         init_utsname()->nodename);
        else
-               strlcpy(fc_host_symbolic_name(adapter->scsi_host),
+               strscpy(fc_host_symbolic_name(adapter->scsi_host),
                        gspn_rsp->gspn.fp_name, FC_SYMBOLIC_NAME_SIZE);
 
        return 0;