public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] KVM: s390: Add facility 197 to the white list
@ 2022-07-11 11:51 Christian Borntraeger
  2022-07-11 13:11 ` Christian Borntraeger
  0 siblings, 1 reply; 4+ messages in thread
From: Christian Borntraeger @ 2022-07-11 11:51 UTC (permalink / raw)
  To: KVM
  Cc: Christian Borntraeger, Janosch Frank, David Hildenbrand,
	linux-s390, Thomas Huth, Claudio Imbrenda, Heiko Carstens,
	Vasily Gorbik, Alexander Gordeev, Janis Schoetterl-Glausch

z16 also provides facility 197 (The processor-activity-instrumentation
extension 1). Lets add it to KVM.

Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
---
 arch/s390/tools/gen_facilities.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/s390/tools/gen_facilities.c b/arch/s390/tools/gen_facilities.c
index 530dd941d140..cb0aff5c0187 100644
--- a/arch/s390/tools/gen_facilities.c
+++ b/arch/s390/tools/gen_facilities.c
@@ -111,6 +111,7 @@ static struct facility_def facility_defs[] = {
 			193, /* bear enhancement facility */
 			194, /* rdp enhancement facility */
 			196, /* processor activity instrumentation facility */
+			197, /* processor activity instrumentation extension 1 */
 			-1  /* END */
 		}
 	},
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] KVM: s390: Add facility 197 to the white list
  2022-07-11 11:51 [PATCH 1/1] KVM: s390: Add facility 197 to the white list Christian Borntraeger
@ 2022-07-11 13:11 ` Christian Borntraeger
  2022-07-11 13:14   ` Thomas Huth
  2022-07-11 13:25   ` Claudio Imbrenda
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Borntraeger @ 2022-07-11 13:11 UTC (permalink / raw)
  To: KVM
  Cc: Janosch Frank, David Hildenbrand, linux-s390, Thomas Huth,
	Claudio Imbrenda, Heiko Carstens, Vasily Gorbik,
	Alexander Gordeev, Janis Schoetterl-Glausch

Am 11.07.22 um 13:51 schrieb Christian Borntraeger:
> z16 also provides facility 197 (The processor-activity-instrumentation
> extension 1). Lets add it to KVM.
> 
> Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
> ---
>   arch/s390/tools/gen_facilities.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/arch/s390/tools/gen_facilities.c b/arch/s390/tools/gen_facilities.c
> index 530dd941d140..cb0aff5c0187 100644
> --- a/arch/s390/tools/gen_facilities.c
> +++ b/arch/s390/tools/gen_facilities.c
> @@ -111,6 +111,7 @@ static struct facility_def facility_defs[] = {
>   			193, /* bear enhancement facility */
>   			194, /* rdp enhancement facility */
>   			196, /* processor activity instrumentation facility */
> +			197, /* processor activity instrumentation extension 1 */
>   			-1  /* END */
>   		}
>   	},

Unless there are complaints, I will queue this with "white list" -> "allow list" and "lets" -> "let's".

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] KVM: s390: Add facility 197 to the white list
  2022-07-11 13:11 ` Christian Borntraeger
@ 2022-07-11 13:14   ` Thomas Huth
  2022-07-11 13:25   ` Claudio Imbrenda
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2022-07-11 13:14 UTC (permalink / raw)
  To: Christian Borntraeger, KVM
  Cc: Janosch Frank, David Hildenbrand, linux-s390, Claudio Imbrenda,
	Heiko Carstens, Vasily Gorbik, Alexander Gordeev,
	Janis Schoetterl-Glausch

On 11/07/2022 15.11, Christian Borntraeger wrote:
> Am 11.07.22 um 13:51 schrieb Christian Borntraeger:
>> z16 also provides facility 197 (The processor-activity-instrumentation
>> extension 1). Lets add it to KVM.
>>
>> Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>
>> ---
>>   arch/s390/tools/gen_facilities.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/s390/tools/gen_facilities.c 
>> b/arch/s390/tools/gen_facilities.c
>> index 530dd941d140..cb0aff5c0187 100644
>> --- a/arch/s390/tools/gen_facilities.c
>> +++ b/arch/s390/tools/gen_facilities.c
>> @@ -111,6 +111,7 @@ static struct facility_def facility_defs[] = {
>>               193, /* bear enhancement facility */
>>               194, /* rdp enhancement facility */
>>               196, /* processor activity instrumentation facility */
>> +            197, /* processor activity instrumentation extension 1 */
>>               -1  /* END */
>>           }
>>       },
> 
> Unless there are complaints, I will queue this with "white list" -> "allow 
> list" and "lets" -> "let's".

With those modifications:

Acked-by: Thomas Huth <thuth@redhat.com>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] KVM: s390: Add facility 197 to the white list
  2022-07-11 13:11 ` Christian Borntraeger
  2022-07-11 13:14   ` Thomas Huth
@ 2022-07-11 13:25   ` Claudio Imbrenda
  1 sibling, 0 replies; 4+ messages in thread
From: Claudio Imbrenda @ 2022-07-11 13:25 UTC (permalink / raw)
  To: Christian Borntraeger
  Cc: KVM, Janosch Frank, David Hildenbrand, linux-s390, Thomas Huth,
	Heiko Carstens, Vasily Gorbik, Alexander Gordeev,
	Janis Schoetterl-Glausch

On Mon, 11 Jul 2022 15:11:30 +0200
Christian Borntraeger <borntraeger@linux.ibm.com> wrote:

> Am 11.07.22 um 13:51 schrieb Christian Borntraeger:
> > z16 also provides facility 197 (The processor-activity-instrumentation
> > extension 1). Lets add it to KVM.
> > 
> > Signed-off-by: Christian Borntraeger <borntraeger@linux.ibm.com>

Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>

> > ---
> >   arch/s390/tools/gen_facilities.c | 1 +
> >   1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/s390/tools/gen_facilities.c b/arch/s390/tools/gen_facilities.c
> > index 530dd941d140..cb0aff5c0187 100644
> > --- a/arch/s390/tools/gen_facilities.c
> > +++ b/arch/s390/tools/gen_facilities.c
> > @@ -111,6 +111,7 @@ static struct facility_def facility_defs[] = {
> >   			193, /* bear enhancement facility */
> >   			194, /* rdp enhancement facility */
> >   			196, /* processor activity instrumentation facility */
> > +			197, /* processor activity instrumentation extension 1 */
> >   			-1  /* END */
> >   		}
> >   	},  
> 
> Unless there are complaints, I will queue this with "white list" -> "allow list" and "lets" -> "let's".


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-07-12 16:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-11 11:51 [PATCH 1/1] KVM: s390: Add facility 197 to the white list Christian Borntraeger
2022-07-11 13:11 ` Christian Borntraeger
2022-07-11 13:14   ` Thomas Huth
2022-07-11 13:25   ` Claudio Imbrenda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox