Re: [PATCH v9 20/25] block/rnbd: server: main functionality

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 2020-02-21 02:47, Jack Wang wrote:
> +static int dev_search_path_set(const char *val, const struct kernel_param *kp)
> +{
> +	char *dup;
> +
> +	if (strlen(val) >= sizeof(dev_search_path))
> +		return -EINVAL;
> +
> +	dup = kstrdup(val, GFP_KERNEL);
> +
> +	if (dup[strlen(dup) - 1] == '\n')
> +		dup[strlen(dup) - 1] = '\0';
> +
> +	strlcpy(dev_search_path, dup, sizeof(dev_search_path));
> +
> +	kfree(dup);
> +	pr_info("dev_search_path changed to '%s'\n", dev_search_path);
> +
> +	return 0;
> +}

It is not necessary in this function to do memory allocation. Something
like the following (untested) code should be sufficient:

	const char *p = strrchr(val, '\n') ? : val + strlen(val);

	snprintf(dev_search_path, sizeof(dev_search_path), "%.*s",
		(int)(p - val), val);

How are concurrent attempts to change dev_search_path serialized?

Thanks,

Bart.



[Index of Archives]     [Linux RAID]     [Linux SCSI]     [Linux ATA RAID]     [IDE]     [Linux Wireless]     [Linux Kernel]     [ATH6KL]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Device Mapper]

  Powered by Linux