Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1208933 > unrolled thread
| Started by | Bjorn Helgaas <bhelgaas@google.com> |
|---|---|
| First post | 2015-08-18 01:00 +0200 |
| Last post | 2015-08-18 23:20 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v3 01/51] PCI: Cleanup res_to_dev_res() printout for addon resources Bjorn Helgaas <bhelgaas@google.com> - 2015-08-18 01:00 +0200
Re: [PATCH v3 01/51] PCI: Cleanup res_to_dev_res() printout for addon resources Yinghai Lu <yinghai@kernel.org> - 2015-08-18 23:20 +0200
| From | Bjorn Helgaas <bhelgaas@google.com> |
|---|---|
| Date | 2015-08-18 01:00 +0200 |
| Subject | Re: [PATCH v3 01/51] PCI: Cleanup res_to_dev_res() printout for addon resources |
| Message-ID | <pYBxL-4mJ-5@gated-at.bofh.it> |
On Mon, Jul 27, 2015 at 04:29:19PM -0700, Yinghai Lu wrote:
> Now get_res_add_size and get_res_add_align all have same printout
> from res_to_dev_res(), and it is confusing.
>
> Move out debug messages printout from res_to_dev_res(),
> and later we will reuse res_to_dev_res() in other functions.
>
> Signed-off-by: Yinghai Lu <yinghai@kernel.org>
> ---
> drivers/pci/setup-bus.c | 34 ++++++++++++++++++++--------------
> 1 file changed, 20 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c
> index 508cc56..f0fa705 100644
> --- a/drivers/pci/setup-bus.c
> +++ b/drivers/pci/setup-bus.c
> @@ -104,19 +104,9 @@ static struct pci_dev_resource *res_to_dev_res(struct list_head *head,
> {
> struct pci_dev_resource *dev_res;
>
> - list_for_each_entry(dev_res, head, list) {
> - if (dev_res->res == res) {
> - int idx = res - &dev_res->dev->resource[0];
> -
> - dev_printk(KERN_DEBUG, &dev_res->dev->dev,
> - "res[%d]=%pR res_to_dev_res add_size %llx min_align %llx\n",
> - idx, dev_res->res,
> - (unsigned long long)dev_res->add_size,
> - (unsigned long long)dev_res->min_align);
> -
> + list_for_each_entry(dev_res, head, list)
> + if (dev_res->res == res)
> return dev_res;
> - }
> - }
>
> return NULL;
> }
> @@ -127,7 +117,15 @@ static resource_size_t get_res_add_size(struct list_head *head,
> struct pci_dev_resource *dev_res;
>
> dev_res = res_to_dev_res(head, res);
> - return dev_res ? dev_res->add_size : 0;
> + if (!dev_res || !dev_res->add_size)
> + return 0;
> +
> + dev_printk(KERN_DEBUG, &dev_res->dev->dev,
> + "BAR %d: %pR get_res_add_size add_size %llx\n",
> + (int)(res - &dev_res->dev->resource[0]),
> + res, (unsigned long long)dev_res->add_size);
> +
> + return dev_res->add_size;
> }
>
> static resource_size_t get_res_add_align(struct list_head *head,
> @@ -136,7 +134,15 @@ static resource_size_t get_res_add_align(struct list_head *head,
> struct pci_dev_resource *dev_res;
>
> dev_res = res_to_dev_res(head, res);
> - return dev_res ? dev_res->min_align : 0;
> + if (!dev_res || !dev_res->min_align)
> + return 0;
> +
> + dev_printk(KERN_DEBUG, &dev_res->dev->dev,
> + "BAR %d: %pR get_res_add_align min_align %llx\n",
> + (int)(res - &dev_res->dev->resource[0]),
> + res, (unsigned long long)dev_res->min_align);
Please use %#llx so we have a "0x" prefix like other hex numbers.
> +
> + return dev_res->min_align;
> }
>
>
> --
> 1.8.4.5
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Yinghai Lu <yinghai@kernel.org> |
|---|---|
| Date | 2015-08-18 23:20 +0200 |
| Subject | Re: [PATCH v3 01/51] PCI: Cleanup res_to_dev_res() printout for addon resources |
| Message-ID | <pYWsy-1Ba-11@gated-at.bofh.it> |
| In reply to | #1208933 |
On Mon, Aug 17, 2015 at 3:50 PM, Bjorn Helgaas <bhelgaas@google.com> wrote:
> On Mon, Jul 27, 2015 at 04:29:19PM -0700, Yinghai Lu wrote:
>> Now get_res_add_size and get_res_add_align all have same printout
>> from res_to_dev_res(), and it is confusing.
>>
>> Move out debug messages printout from res_to_dev_res(),
>> and later we will reuse res_to_dev_res() in other functions.
>>
>> Signed-off-by: Yinghai Lu <yinghai@kernel.org>
>> ---
>> drivers/pci/setup-bus.c | 34 ++++++++++++++++++++--------------
>> 1 file changed, 20 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c
>> index 508cc56..f0fa705 100644
>> --- a/drivers/pci/setup-bus.c
>> +++ b/drivers/pci/setup-bus.c
>> @@ -104,19 +104,9 @@ static struct pci_dev_resource *res_to_dev_res(struct list_head *head,
>> {
>> struct pci_dev_resource *dev_res;
>>
>> - list_for_each_entry(dev_res, head, list) {
>> - if (dev_res->res == res) {
>> - int idx = res - &dev_res->dev->resource[0];
>> -
>> - dev_printk(KERN_DEBUG, &dev_res->dev->dev,
>> - "res[%d]=%pR res_to_dev_res add_size %llx min_align %llx\n",
>> - idx, dev_res->res,
>> - (unsigned long long)dev_res->add_size,
>> - (unsigned long long)dev_res->min_align);
>> -...
>> +
>> + dev_printk(KERN_DEBUG, &dev_res->dev->dev,
>> + "BAR %d: %pR get_res_add_align min_align %llx\n",
>> + (int)(res - &dev_res->dev->resource[0]),
>> + res, (unsigned long long)dev_res->min_align);
>
> Please use %#llx so we have a "0x" prefix like other hex numbers.
>
ok.
Later i'd like to just kill those debug printout if all get settled
after this patchset.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web