This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hurd".
The branch, master has been updated via 96cbadd47a46d07fd242f7d06869e9b1a54ceb79 (commit) via a830bef66e689f6f1defa9988f257a7ec2bb034d (commit) via 6783a1b124eff9383571dfd4b5e83a03ee63866a (commit) from c67c7e7500f1494adedb85c9f29c03a62e38778b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 96cbadd47a46d07fd242f7d06869e9b1a54ceb79 Author: Samuel Thibault <samuel.thiba...@ens-lyon.org> Date: Tue Oct 30 01:00:28 2018 +0100 pci-arbiter: Add TODO file * pci-arbiter/TODO: New file. commit a830bef66e689f6f1defa9988f257a7ec2bb034d Author: Joan Lledó <joanlluisll...@gmail.com> Date: Tue Jan 16 12:54:28 2018 +0100 PCI Arbiter commit 6783a1b124eff9383571dfd4b5e83a03ee63866a Author: Samuel Thibault <samuel.thiba...@ens-lyon.org> Date: Mon Oct 8 23:10:04 2018 +0200 libports: Fix typo ----------------------------------------------------------------------- Summary of changes: Makefile | 1 + hurd/hurd_types.defs | 19 +- hurd/hurd_types.h | 24 +- hurd/paths.h | 3 + hurd/pci.defs | 73 ++ hurd/subsystems | 1 + libports/end-rpc.c | 2 +- {lwip => pci-arbiter}/Makefile | 32 +- pci-arbiter/TODO | 15 + pci-arbiter/func_files.c | 210 +++++ .../netif/hurdethif.h => pci-arbiter/func_files.h | 31 +- pci-arbiter/main.c | 117 +++ lwip/startup.h => pci-arbiter/mig-mutate.h | 10 +- {ftpfs => pci-arbiter}/ncache.c | 19 +- lwip/startup.h => pci-arbiter/ncache.h | 16 +- pci-arbiter/netfs_impl.c | 568 ++++++++++++++ .../netif/hurdethif.h => pci-arbiter/netfs_impl.h | 36 +- pci-arbiter/options.c | 282 +++++++ pci-arbiter/options.h | 74 ++ pci-arbiter/pci-ops.c | 273 +++++++ pci-arbiter/pci_access.c | 51 ++ pci-arbiter/pci_access.h | 187 +++++ pci-arbiter/pcifs.c | 409 ++++++++++ pci-arbiter/pcifs.h | 208 +++++ lwip/startup.h => pci-arbiter/startup-ops.c | 22 +- {lwip => pci-arbiter}/startup.c | 24 +- {lwip => pci-arbiter}/startup.h | 11 +- pci-arbiter/x86_pci.c | 843 +++++++++++++++++++++ pci-arbiter/x86_pci.h | 34 + 29 files changed, 3501 insertions(+), 94 deletions(-) create mode 100644 hurd/pci.defs copy {lwip => pci-arbiter}/Makefile (51%) create mode 100644 pci-arbiter/TODO create mode 100644 pci-arbiter/func_files.c copy lwip/port/include/netif/hurdethif.h => pci-arbiter/func_files.h (56%) create mode 100644 pci-arbiter/main.c copy lwip/startup.h => pci-arbiter/mig-mutate.h (72%) copy {ftpfs => pci-arbiter}/ncache.c (89%) copy lwip/startup.h => pci-arbiter/ncache.h (75%) create mode 100644 pci-arbiter/netfs_impl.c copy lwip/port/include/netif/hurdethif.h => pci-arbiter/netfs_impl.h (59%) create mode 100644 pci-arbiter/options.c create mode 100644 pci-arbiter/options.h create mode 100644 pci-arbiter/pci-ops.c create mode 100644 pci-arbiter/pci_access.c create mode 100644 pci-arbiter/pci_access.h create mode 100644 pci-arbiter/pcifs.c create mode 100644 pci-arbiter/pcifs.h copy lwip/startup.h => pci-arbiter/startup-ops.c (65%) copy {lwip => pci-arbiter}/startup.c (77%) copy {lwip => pci-arbiter}/startup.h (80%) create mode 100644 pci-arbiter/x86_pci.c create mode 100644 pci-arbiter/x86_pci.h hooks/post-receive -- Hurd