qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [RFC 06/28] s390x/cpumodel: introduce CPU feature group


From: Thomas Huth
Subject: Re: [Qemu-devel] [RFC 06/28] s390x/cpumodel: introduce CPU feature group definitions
Date: Tue, 21 Jun 2016 22:14:30 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0

On 21.06.2016 15:02, David Hildenbrand wrote:
> Let's use the generated groups to create feature group representations for
> the user. These groups can later be used to enable/disable multiple
> features in one shot and will be used to reduce the amount of reported
> features to the user if all subfeatures are in place.
> 
> Acked-by: Cornelia Huck <address@hidden>
> Signed-off-by: David Hildenbrand <address@hidden>
> ---
>  target-s390x/cpu_features.c | 44 +++++++++++++++++++++++++++++++++++++++++++-
>  target-s390x/cpu_features.h | 23 +++++++++++++++++++++++
>  2 files changed, 66 insertions(+), 1 deletion(-)
> 
> diff --git a/target-s390x/cpu_features.c b/target-s390x/cpu_features.c
> index c78a189..6ec2bfc 100644
> --- a/target-s390x/cpu_features.c
> +++ b/target-s390x/cpu_features.c
> @@ -12,6 +12,7 @@
>  
>  #include "qemu/osdep.h"
>  #include "cpu_features.h"
> +#include "gen-features.h"
>  
>  #define FEAT_INIT(_name, _type, _bit, _desc) \
>      {                                                \
> @@ -321,14 +322,55 @@ void s390_add_from_feat_block(S390FeatBitmap features, 
> S390FeatType type,
>      }
>  }
>  
> -void s390_feat_bitmap_to_ascii(const S390FeatBitmap bitmap, void *opaque,
> +void s390_feat_bitmap_to_ascii(const S390FeatBitmap features, void *opaque,
>                                 void (*fn)(const char *name, void *opaque))
>  {
> +    S390FeatBitmap bitmap, tmp;
> +    S390FeatGroup group;
>      S390Feat feat;
>  
> +    bitmap_copy(bitmap, features, S390_FEAT_MAX);
> +
> +    /* process whole groups first */
> +    for (group = 0; group < S390_FEAT_GROUP_MAX; group++) {
> +        const S390FeatGroupDef *def = s390_feat_group_def(group);
> +
> +        bitmap_and(tmp, bitmap, def->feat, S390_FEAT_MAX);
> +        if (bitmap_equal(tmp, def->feat, S390_FEAT_MAX)) {
> +            bitmap_andnot(bitmap, bitmap, def->feat, S390_FEAT_MAX);
> +            (*fn)(def->name, opaque);

Maybe simply write
               fn(dev->name, opaque);
instead?

 Thomas




reply via email to

[Prev in Thread] Current Thread [Next in Thread]