Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1372074 > unrolled thread
| Started by | Jake Oshins <jakeo@microsoft.com> |
|---|---|
| First post | 2016-04-06 01:50 +0200 |
| Last post | 2016-04-06 01:50 +0200 |
| Articles | 1 — 1 participant |
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.
[PATCH v5 3/6] drivers:hv: Reverse order of resources in hyperv_mmio Jake Oshins <jakeo@microsoft.com> - 2016-04-06 01:50 +0200
| From | Jake Oshins <jakeo@microsoft.com> |
|---|---|
| Date | 2016-04-06 01:50 +0200 |
| Subject | [PATCH v5 3/6] drivers:hv: Reverse order of resources in hyperv_mmio |
| Message-ID | <rkITo-3fK-21@gated-at.bofh.it> |
A patch later in this series allocates child nodes
in this resource tree. For that to work, this tree
needs to be sorted in ascending order.
Signed-off-by: Jake Oshins <jakeo@microsoft.com>
---
drivers/hv/vmbus_drv.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
index 60553c1..1ce47d0 100644
--- a/drivers/hv/vmbus_drv.c
+++ b/drivers/hv/vmbus_drv.c
@@ -1049,7 +1049,6 @@ static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
new_res->end = end;
/*
- * Stick ranges from higher in address space at the front of the list.
* If two ranges are adjacent, merge them.
*/
do {
@@ -1070,7 +1069,7 @@ static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
break;
}
- if ((*old_res)->end < new_res->start) {
+ if ((*old_res)->start > new_res->end) {
new_res->sibling = *old_res;
if (prev_res)
(*prev_res)->sibling = new_res;
--
1.9.1
Back to top | Article view | linux.kernel
csiph-web