diff options
| author | John Johansen <john.johansen@canonical.com> | 2018-05-02 00:38:52 -0700 | 
|---|---|---|
| committer | John Johansen <john.johansen@canonical.com> | 2018-05-02 00:38:52 -0700 | 
| commit | 552c69b36ebd966186573b9c7a286b390935cce1 (patch) | |
| tree | 43ae55082805c8e7f900a63197d21de36937de16 /scripts/gcc-plugins/latent_entropy_plugin.c | |
| parent | 588558eb6d0e0b6edfa65a67e906c2ffeba63ff1 (diff) | |
| parent | 6da6c0db5316275015e8cc2959f12a17584aeb64 (diff) | |
Merge tag 'v4.17-rc3' into apparmor-next
Linux v4.17-rc3
Merge in v4.17 for LSM updates
Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'scripts/gcc-plugins/latent_entropy_plugin.c')
| -rw-r--r-- | scripts/gcc-plugins/latent_entropy_plugin.c | 17 | 
1 files changed, 5 insertions, 12 deletions
| diff --git a/scripts/gcc-plugins/latent_entropy_plugin.c b/scripts/gcc-plugins/latent_entropy_plugin.c index 65264960910d..cbe1d6c4b1a5 100644 --- a/scripts/gcc-plugins/latent_entropy_plugin.c +++ b/scripts/gcc-plugins/latent_entropy_plugin.c @@ -255,21 +255,14 @@ static tree handle_latent_entropy_attribute(tree *node, tree name,  	return NULL_TREE;  } -static struct attribute_spec latent_entropy_attr = { -	.name				= "latent_entropy", -	.min_length			= 0, -	.max_length			= 0, -	.decl_required			= true, -	.type_required			= false, -	.function_type_required		= false, -	.handler			= handle_latent_entropy_attribute, -#if BUILDING_GCC_VERSION >= 4007 -	.affects_type_identity		= false -#endif -}; +static struct attribute_spec latent_entropy_attr = { };  static void register_attributes(void *event_data __unused, void *data __unused)  { +	latent_entropy_attr.name		= "latent_entropy"; +	latent_entropy_attr.decl_required	= true; +	latent_entropy_attr.handler		= handle_latent_entropy_attribute; +  	register_attribute(&latent_entropy_attr);  } | 
