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
| ||
|
Message-ID: <alpine.DEB.2.20.1612231402210.4056@hadrien> Date: Fri, 23 Dec 2016 14:03:55 +0100 (CET) From: Julia Lawall <julia.lawall@...6.fr> To: Guenter Roeck <linux@...ck-us.net> cc: linux-kernel@...r.kernel.org, kernel-janitors@...r.kernel.org, linux-hwmon@...r.kernel.org, Jean Delvare <jdelvare@...e.com> Subject: Re: [PATCH 00/66] use permission-specific DEVICE_ATTR variants > Hi Julia, > > I noticed that drivers/hwmon/gl518sm.c was not converted. Running your script > on it does not do anything. Any idea what might cause that ? I believe that it is due to the following: #define show(type, suffix, value) \ static ssize_t show_##suffix(struct device *dev, \ struct device_attribute *attr, char *buf) \ { \ struct gl518_data *data = gl518_update_device(dev); \ return sprintf(buf, "%d\n", type##_FROM_REG(data->value)); \ } Coccinelle doesn't understand the relationship between this macro and the show functions. julia
Powered by blists - more mailing lists