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] [day] [month] [year] [list]
Date:	Mon, 21 May 2012 16:04:52 -0700
From:	Lee Duncan <lduncan@...e.com>
To:	Matthew Wilcox <matthew@....cx>
CC:	linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org,
	kai.makisara@...umbus.fi, jeffm@...e.com
Subject: Re: [PATCH 1/5] st: Use static class attributes

Jeff would normally reply to this, since it is his patch, but he is
otherwise occupied right now, so I will respond.

On 05/17/2012 07:51 PM, Matthew Wilcox wrote:
> On Wed, May 16, 2012 at 08:56:13PM -0700, Lee Duncan wrote:
>> @@ -84,7 +84,8 @@ static int try_wdio = 1;
>>  static int st_dev_max;
>>  static int st_nr_dev;
>>  
>> -static struct class *st_sysfs_class;
>> +extern struct class st_sysfs_class;
> 
> Umm ... 'extern' ...
> 
>> @@ -4283,6 +4284,11 @@ static void scsi_tape_release(struct kref *kref)
>>  	return;
>>  }
>>  
>> +struct class st_sysfs_class = {
>> +	.name = "scsi_tape",
>> +	.dev_attrs = st_dev_attrs,
>> +};
> 
> ... and then you define it?
> 
> I think you meant to say "struct class st_sysfs_class;" at the top,
> and then later:
> 
> static struct class st_sysfs_class = {
> ...
> 
>> +struct device_attribute st_dev_attrs[] = {
> 
> Should also be static
> 
> 

The compiler (gcc 4.6.2) does not accept a forward declaration that does
not match the data definition. When I tried your suggestion, the
compiler complained that the two declarations did not match, but it
accepted it if both the forward declaration and the data declaration are
"static".

I'll resubmit v3 of the patch set with this change.
-- 
Lee Duncan
SUSE Labs
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ