lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 25 Jul 2022 16:07:40 +0100
From:   German Gomez <german.gomez@....com>
To:     James Clark <james.clark@....com>, coresight@...ts.linaro.org,
        suzuki.poulose@....com
Cc:     mathieu.poirier@...aro.org, mike.leach@...aro.org,
        linux-kernel@...r.kernel.org
Subject: Re: [PATCH v1 1/4] coresight: Remove unused function parameter


On 25/07/2022 15:52, James Clark wrote:
> The ability to use a custom function in this sysfs show function isn't
> used so remove it.
>
> No functional changes.
>
> Signed-off-by: James Clark <james.clark@....com>
> ---
>  drivers/hwtracing/coresight/coresight-priv.h | 16 ++++------------
>  1 file changed, 4 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/hwtracing/coresight/coresight-priv.h b/drivers/hwtracing/coresight/coresight-priv.h
> index ff1dd2092ac5..f2458b794ef3 100644
> --- a/drivers/hwtracing/coresight/coresight-priv.h
> +++ b/drivers/hwtracing/coresight/coresight-priv.h
> @@ -40,31 +40,23 @@
>  #define ETM_MODE_EXCL_KERN	BIT(30)
>  #define ETM_MODE_EXCL_USER	BIT(31)
>  
> -typedef u32 (*coresight_read_fn)(const struct device *, u32 offset);
> -#define __coresight_simple_func(type, func, name, lo_off, hi_off)	\
> +#define __coresight_simple_show(type, name, lo_off, hi_off)		\
>  static ssize_t name##_show(struct device *_dev,				\
>  			   struct device_attribute *attr, char *buf)	\
>  {									\
>  	type *drvdata = dev_get_drvdata(_dev->parent);			\
> -	coresight_read_fn fn = func;					\
>  	u64 val;							\
>  	pm_runtime_get_sync(_dev->parent);				\
> -	if (fn)								\
> -		val = (u64)fn(_dev->parent, lo_off);			\
> -	else								\
> -		val = coresight_read_reg_pair(drvdata->base,		\
> -						 lo_off, hi_off);	\
> +	val = coresight_read_reg_pair(drvdata->base, lo_off, hi_off);	\
>  	pm_runtime_put_sync(_dev->parent);				\
>  	return scnprintf(buf, PAGE_SIZE, "0x%llx\n", val);		\

Sorry for the slightly out-of-scope reply, but I think you could also 
take the opportunity to replace scnprintf() calls with sysfs_emit()   
calls, if you think it is worth it.

Thanks,
German

>  }									\
>  static DEVICE_ATTR_RO(name)
>  
> -#define coresight_simple_func(type, func, name, offset)			\
> -	__coresight_simple_func(type, func, name, offset, -1)
>  #define coresight_simple_reg32(type, name, offset)			\
> -	__coresight_simple_func(type, NULL, name, offset, -1)
> +	__coresight_simple_show(type, name, offset, -1)
>  #define coresight_simple_reg64(type, name, lo_off, hi_off)		\
> -	__coresight_simple_func(type, NULL, name, lo_off, hi_off)
> +	__coresight_simple_show(type, name, lo_off, hi_off)
>  
>  extern const u32 coresight_barrier_pkt[4];
>  #define CORESIGHT_BARRIER_PKT_SIZE (sizeof(coresight_barrier_pkt))

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ