dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] eal: map uio resources after hugepages when the base_virtaddr is configured.
@ 2014-11-05 13:25 lxu
  2014-11-05 15:49 ` 答复: " XU Liang
       [not found] ` <1415193919-17361-1-git-send-email-liang.xu-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
  0 siblings, 2 replies; 41+ messages in thread
From: lxu @ 2014-11-05 13:25 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

---
 lib/librte_eal/linuxapp/eal/eal_pci_uio.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/librte_eal/linuxapp/eal/eal_pci_uio.c b/lib/librte_eal/linuxapp/eal/eal_pci_uio.c
index 7e62266..bc7ed3a 100644
--- a/lib/librte_eal/linuxapp/eal/eal_pci_uio.c
+++ b/lib/librte_eal/linuxapp/eal/eal_pci_uio.c
@@ -289,6 +289,11 @@ pci_uio_map_resource(struct rte_pci_device *dev)
 	struct rte_pci_addr *loc = &dev->addr;
 	struct mapped_pci_resource *uio_res;
 	struct pci_map *maps;
+	static void * requested_addr = NULL;
+	if (internal_config.base_virtaddr && NULL == requested_addr) {
+		requested_addr = (uint8_t *) internal_config.base_virtaddr 
+			+ internal_config.memory;
+	}
 
 	dev->intr_handle.fd = -1;
 	dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
@@ -371,10 +376,12 @@ pci_uio_map_resource(struct rte_pci_device *dev)
 			if (maps[j].addr != NULL)
 				fail = 1;
 			else {
-				mapaddr = pci_map_resource(NULL, fd, (off_t)offset,
+				mapaddr = pci_map_resource(requested_addr, fd, (off_t)offset,
 						(size_t)maps[j].size);
 				if (mapaddr == NULL)
 					fail = 1;
+				else if (NULL != requested_addr)
+					requested_addr = (uint8_t *)mapaddr + maps[j].size;
 			}
 
 			if (fail) {
-- 
1.9.1

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

end of thread, other threads:[~2014-11-26  9:58 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-05 13:25 [PATCH] eal: map uio resources after hugepages when the base_virtaddr is configured lxu
2014-11-05 15:49 ` 答复: " XU Liang
     [not found]   ` <01d6ff37-3473-43af-aff3-1183d4c4768a-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-05 15:59     ` Burakov, Anatoly
2014-11-05 16:10   ` 答复:答复: " XU Liang
     [not found]     ` <7600981e-fc3a-454b-a269-51dd3b9d535b-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-05 16:19       ` Burakov, Anatoly
2014-11-26  1:46     ` Qiu, Michael
     [not found]       ` <533710CFB86FA344BFBF2D6802E60286C9A738-0J0gbvR4kThpB2pF5aRoyrfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-26  9:58         ` Burakov, Anatoly
     [not found] ` <1415193919-17361-1-git-send-email-liang.xu-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-05 15:10   ` Burakov, Anatoly
2014-11-06 14:11   ` [PATCH v2] " lxu
     [not found]     ` <1415283104-29970-1-git-send-email-liang.xu-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-06 14:27       ` Burakov, Anatoly
2014-11-06 14:48     ` 答复:[PATCH " 徐亮
2014-11-06 14:47   ` [PATCH v3] " lxu
     [not found]     ` <1415285223-7662-1-git-send-email-liang.xu-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-06 14:58       ` Burakov, Anatoly
2014-11-06 15:06       ` De Lara Guarch, Pablo
2014-11-06 15:07   ` [PATCH v4] " lxu
     [not found]     ` <1415286460-14337-1-git-send-email-liang.xu-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-06 15:12       ` Thomas Monjalon
2014-11-06 15:11   ` lxu
2014-11-06 15:32   ` [PATCH v5] " lxu
     [not found]     ` <1415287928-14513-1-git-send-email-liang.xu-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-06 15:41       ` Burakov, Anatoly
     [not found]         ` <C6ECDF3AB251BE4894318F4E4512369780C07670-kPTMFJFq+rHjxeytcECX8bfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-06 15:58           ` Thomas Monjalon
2014-11-06 16:10             ` Burakov, Anatoly
     [not found]               ` <C6ECDF3AB251BE4894318F4E4512369780C0769D-kPTMFJFq+rHjxeytcECX8bfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-06 17:30                 ` Bruce Richardson
2014-11-07  8:01   ` [PATCH v6] " lxu
2014-11-07  9:57     ` XU Liang
     [not found]       ` <2c2ad9a4-1c04-4641-9667-249617ae2c56-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-07 10:00         ` Burakov, Anatoly
2014-11-07 14:37       ` XU Liang
     [not found]     ` <1415347284-15468-1-git-send-email-liang.xu-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-07  9:42       ` Bruce Richardson
2014-11-07  9:47       ` Burakov, Anatoly
2014-11-10 11:34       ` [PATCH v7] eal: map PCI memory resources after hugepages Anatoly Burakov
     [not found]         ` <1415619272-8281-1-git-send-email-anatoly.burakov-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-10 13:33           ` Burakov, Anatoly
2014-11-11 10:09           ` [PATCH v8] " Anatoly Burakov
     [not found]             ` <1415700565-19157-1-git-send-email-anatoly.burakov-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-13 11:34               ` Burakov, Anatoly
     [not found]                 ` <C6ECDF3AB251BE4894318F4E4512369780C08733-kPTMFJFq+rHjxeytcECX8bfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-13 12:58                   ` Bruce Richardson
2014-11-13 13:44                     ` Burakov, Anatoly
2014-11-13 13:46               ` Bruce Richardson
2014-11-25 17:17                 ` Thomas Monjalon
2014-11-11  3:53         ` [PATCH v7] " XU Liang
2014-11-07 14:57   ` [PATCH v7] eal: map uio " lxu
     [not found]     ` <1415372269-8723-1-git-send-email-liang.xu-uqgZSDCUmcY3TOWNJCPdyQ@public.gmane.org>
2014-11-07 15:14       ` Burakov, Anatoly
2014-11-07 15:15       ` Thomas Monjalon
2014-11-07 15:19     ` XU Liang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).