From: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
To: Thomas Huth <thuth@redhat.com>
Cc: qemu-devel@nongnu.org, aik@ozlabs.ru, agraf@suse.de,
mdroth@linux.vnet.ibm.com, qemu-ppc@nongnu.org,
david@gibson.dropbear.id.au
Subject: Re: [Qemu-devel] [PATCH v3 1/6] spapr_pci: remove duplicate macros
Date: Wed, 06 May 2015 11:11:05 +0530 [thread overview]
Message-ID: <87sibajma6.fsf@linux.vnet.ibm.com> (raw)
In-Reply-To: <20150505155308.5d7abd4f@thh440s>
Thomas Huth <thuth@redhat.com> writes:
> On Tue, 5 May 2015 14:23:51 +0530
> Nikunj A Dadhania <nikunj@linux.vnet.ibm.com> wrote:
>
>> Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
>> ---
>> hw/ppc/spapr_pci.c | 11 -----------
>> 1 file changed, 11 deletions(-)
>>
>> diff --git a/hw/ppc/spapr_pci.c b/hw/ppc/spapr_pci.c
>> index 2e7590c..4df3a33 100644
>> --- a/hw/ppc/spapr_pci.c
>> +++ b/hw/ppc/spapr_pci.c
>> @@ -1475,17 +1475,6 @@ PCIHostState *spapr_create_phb(sPAPREnvironment *spapr, int index)
>> return PCI_HOST_BRIDGE(dev);
>> }
>>
>> -/* Macros to operate with address in OF binding to PCI */
>> -#define b_x(x, p, l) (((x) & ((1<<(l))-1)) << (p))
>> -#define b_n(x) b_x((x), 31, 1) /* 0 if relocatable */
>> -#define b_p(x) b_x((x), 30, 1) /* 1 if prefetchable */
>> -#define b_t(x) b_x((x), 29, 1) /* 1 if the address is aliased */
>> -#define b_ss(x) b_x((x), 24, 2) /* the space code */
>> -#define b_bbbbbbbb(x) b_x((x), 16, 8) /* bus number */
>> -#define b_ddddd(x) b_x((x), 11, 5) /* device number */
>> -#define b_fff(x) b_x((x), 8, 3) /* function number */
>> -#define b_rrrrrrrr(x) b_x((x), 0, 8) /* register number */
>
> Seems like the duplication is not in master yet, only in spapr-next,
> and has apparently been introduced by commit 2c938a6692c01818e
> (spapr_pci: enable basic hotplug operations) ...
> So an alternative would be to fix up that patch instead. David?
Yes, that would be fine with me as well.
> Anyway, the duplication should go away, so:
>
> Reviewed-by: Thomas Huth <thuth@redhat.com>
Regards
Nikunj
next prev parent reply other threads:[~2015-05-06 5:42 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-05 8:53 [Qemu-devel] [PATCH v3 0/6] spapr_pci: DT field fixes and PCI DT node creation in QEMU Nikunj A Dadhania
2015-05-05 8:53 ` [Qemu-devel] [PATCH v3 1/6] spapr_pci: remove duplicate macros Nikunj A Dadhania
2015-05-05 13:53 ` Thomas Huth
2015-05-06 5:41 ` Nikunj A Dadhania [this message]
2015-05-07 0:55 ` David Gibson
2015-05-07 4:55 ` Nikunj A Dadhania
2015-05-05 8:53 ` [Qemu-devel] [PATCH v3 2/6] spapr_pci: encode missing 64-bit memory address space Nikunj A Dadhania
2015-05-05 14:28 ` Thomas Huth
2015-05-06 5:44 ` Nikunj A Dadhania
2015-05-06 7:01 ` Thomas Huth
2015-05-06 8:23 ` Nikunj A Dadhania
2015-05-05 8:53 ` [Qemu-devel] [PATCH v3 3/6] spapr_pci: encode class code including Prog IF register Nikunj A Dadhania
2015-05-05 12:55 ` David Gibson
2015-05-05 14:50 ` Thomas Huth
2015-05-05 8:53 ` [Qemu-devel] [PATCH v3 4/6] spapr_pci: enumerate and add PCI device tree Nikunj A Dadhania
2015-05-05 15:32 ` Thomas Huth
2015-05-06 5:56 ` Nikunj A Dadhania
2015-05-05 8:53 ` [Qemu-devel] [PATCH v3 5/6] spapr_pci: fix boot-time device tree fields for pci hotplug Nikunj A Dadhania
2015-05-05 13:09 ` David Gibson
2015-05-06 5:57 ` Nikunj A Dadhania
2015-05-05 8:53 ` [Qemu-devel] [PATCH v3 6/6] spapr_pci: populate ibm,loc-code Nikunj A Dadhania
2015-05-05 16:03 ` Thomas Huth
2015-05-06 6:14 ` Nikunj A Dadhania
2015-05-07 0:32 ` David Gibson
2015-05-07 4:56 ` Nikunj A Dadhania
-- strict thread matches above, loose matches on Subject: below --
2015-05-05 8:43 [Qemu-devel] [PATCH v3 0/6] spapr_pci: DT field fixes and PCI DT node creation in QEMU Nikunj A Dadhania
2015-05-05 8:43 ` [Qemu-devel] [PATCH v3 1/6] spapr_pci: remove duplicate macros Nikunj A Dadhania
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87sibajma6.fsf@linux.vnet.ibm.com \
--to=nikunj@linux.vnet.ibm.com \
--cc=agraf@suse.de \
--cc=aik@ozlabs.ru \
--cc=david@gibson.dropbear.id.au \
--cc=mdroth@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.