diff options
author | Joan Lledó <jlledom@member.fsf.org> | 2021-02-24 19:49:53 +0100 |
---|---|---|
committer | Joan Lledó <jlledom@member.fsf.org> | 2021-06-20 10:49:27 +0200 |
commit | 54eff72e55efb6436307178e9e1c3f9538910c9b (patch) | |
tree | c39d8f3670ce0823083630b21e69e42a8ffe16d8 | |
parent | 798a0afd11006d3579a0bdc1381039adda2ce9f1 (diff) |
Revert "pci arbiter: add a memory object proxy to directory entries"
This reverts commit dc859c3d4ba4015a2dae7c3333e63769238dcb3e.
No need to store the proxy, as it's not valid for future requests
-rw-r--r-- | pci-arbiter/pcifs.c | 1 | ||||
-rw-r--r-- | pci-arbiter/pcifs.h | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/pci-arbiter/pcifs.c b/pci-arbiter/pcifs.c index 762b5cbe..3b13e437 100644 --- a/pci-arbiter/pcifs.c +++ b/pci-arbiter/pcifs.c @@ -54,7 +54,6 @@ create_dir_entry (int32_t domain, int16_t bus, int16_t dev, entry->dir = 0; entry->node = node; entry->device = device; - entry->memproxy = MACH_PORT_NULL; /* Update parent's child list */ if (entry->parent) diff --git a/pci-arbiter/pcifs.h b/pci-arbiter/pcifs.h index 3d79fdc8..ba16ebaa 100644 --- a/pci-arbiter/pcifs.h +++ b/pci-arbiter/pcifs.h @@ -91,9 +91,6 @@ struct pcifs_dirent * Only for entries having a full B/D/F address. */ struct pci_device *device; - - /* Memory object proxy if any */ - memory_object_t memproxy; }; /* |