qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2] spapr: compute interrupt vector address from


From: Cédric Le Goater
Subject: Re: [Qemu-devel] [PATCH v2] spapr: compute interrupt vector address from LPCR
Date: Thu, 31 Mar 2016 11:33:56 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Icedove/38.6.0

>>> Index: qemu-dgibson-for-2.6.git/hw/ppc/spapr_hcall.c
>>> ===================================================================
>>> --- qemu-dgibson-for-2.6.git.orig/hw/ppc/spapr_hcall.c
>>> +++ qemu-dgibson-for-2.6.git/hw/ppc/spapr_hcall.c
>>> @@ -835,17 +835,8 @@ static target_ulong h_set_mode_resource_
>>>          return H_P4;
>>>      }
>>>
>>> -    switch (mflags) {
>>> -    case H_SET_MODE_ADDR_TRANS_NONE:
>>> -        prefix = 0;
>>> -        break;
>>> -    case H_SET_MODE_ADDR_TRANS_0001_8000:
>>> -        prefix = 0x18000;
>>> -        break;
>>> -    case H_SET_MODE_ADDR_TRANS_C000_0000_0000_4000:
>>> -        prefix = 0xC000000000004000ULL;
>>> -        break;
>>> -    default:
>>> +    prefix = cpu_ppc_get_excp_prefix(mflags);
>>> +    if (prefix == (target_ulong) -1ULL) {
>>
>> +    if (prefix == (target_ulong) (-1ULL)) {
>>
>> to make ./scripts/checkpatch.pl happy :)
> 
> yes. 
> 
> The funny thing is that checkpatch.pl does not complain for the exact
> same line below. Looks like a checkpatch.pl bug to me.

Well, the reason is that a new possible type 'target_ulong' is caught a 
little late in the checkpatch process and this is why the script complains 
at the first occurrence.

Pointer casts are caught early but not casts, probably because this is too
complex to catch with a regex.
 
So the easy fix would be to add 'target_ulong' in the @typeList array. 
This seems reasonable enough as 'target_ulong' is a common qemu type.

C.




reply via email to

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