summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/include/machine/rtems-bsd-kernel-namespace.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-03-21arm/ti/ti_pinmux: Remove TI pinmux driverG S Niteesh Babu1-5/+0
The TI driver has been moved to RTEMS so the driver can be removed from libBSD. The following files have been removed from libBSD and moved to RTEMS. 1) ti/am335x/am335x_scm_padconf.c 2) ti/am335x/am335x_scm_padconf.h 3) ti/ti_pinmux.c 4) ti/ti_pinmux.h Update #3784
2019-09-24Fix pgsigio() warningsSebastian Huber1-1/+0
2019-08-11am335x display drivers: Port to RTEMSVijay Kumar Banerjee1-0/+2
2019-08-11fbd: Port to RTEMSVijay Kumar Banerjee1-0/+20
2019-08-11TDA19988: Port to RTEMSVijay Kumar Banerjee1-0/+65
2019-08-11Pinmux: Port to RTEMSVijay Kumar Banerjee1-0/+9
2019-06-29iicbus: port to RTEMSVijay Kumar Banerjee1-0/+29
2019-06-05Add RTEMS-specific getcredhostuuid()Sebastian Huber1-0/+1
2019-05-15Separate libbsd and RTEMS clock ticksSebastian Huber1-0/+1
2019-05-13Remove unused maxusersSebastian Huber1-1/+0
2019-05-13Remove jail/prison functions from namespaceSebastian Huber1-21/+0
2018-12-20Update rtems-bsd-kernel-namespace.hSebastian Huber1-1/+26
2018-11-15Update to FreeBSD head 2018-11-15Sebastian Huber1-1/+16
Git mirror commit a18b0830c4be01b39489a891b63d6023ada6358a. Update #3472.
2018-11-15Disable or make static kern_* functionsSebastian Huber1-9/+0
2018-10-23Fix redefinition warningsSebastian Huber1-4/+0
2018-09-21Update to FreeBSD head 2018-09-17Sebastian Huber1-17/+85
Git mirror commit 6c2192b1ef8c50788c751f878552526800b1e319. Update #3472.
2018-09-21Update to FreeBSD head 2018-06-01Sebastian Huber1-35/+80
Git mirror commit fb63610a69b0eb7f69a201ba05c4c1a7a2739cf9. Update #3472.
2018-09-21Update to FreeBSD head 2018-04-01Sebastian Huber1-8/+30
Git mirror commit 8dfb1ccc26d1cea7e2529303003ff61f9f1784c4. Update #3472.
2018-09-21Update to FreeBSD head 2018-02-01Sebastian Huber1-1/+8
Git mirror commit d079ae0442af8fa3cfd6d7ede190d04e64a2c0d4. Update #3472.
2018-09-21Update to FreeBSD head 2017-12-01Sebastian Huber1-6/+18
Git mirror commit e724f51f811a4b2bd29447f8b85ab5c2f9b88266. Update #3472.
2018-09-21Update to FreeBSD head 2017-10-01Sebastian Huber1-1/+3
Git mirror commit b2f0376b45428f13151d229c5ae9d4d8f74acbd1. Update #3472.
2018-09-21Update to FreeBSD head 2017-08-01Sebastian Huber1-6/+20
Git mirror commit f5002f5e5f78cae9f0269d812dc0aedb0339312c. Update #3472.
2018-09-21Update to FreeBSD head 2017-06-01Sebastian Huber1-22/+12
Git mirror commit dfb26efac4ce9101dda240e94d9ab53f80a9e131. Update #3472.
2018-09-17Optimize callout handline via static timer wheelSebastian Huber1-2/+0
The number of callouts is a compile-time constant in libbsd. Use this in struct callout_cpu and avoid dynamic allocation of tables. This signficantly reduces the count of load instructions in the callout handling.
2018-08-24IPFW(4): Remove FreeBSD importSebastian Huber1-175/+0
This firewall was not ported to RTEMS and is just dead code which may make trouble during FreeBSD baseline updates. It also increased the compile-time of the library for nothing. Update #3472.
2018-08-24Update rtems-bsd-kernel-namespace.hSebastian Huber1-2/+435
Update #3472.
2018-07-04Avoid malloc() in getsockaddr()Sebastian Huber1-1/+0
The getsockaddr() function is used to allocate a struct sockaddr of the right length and initialize it with userspace provided data. It is used for the connect(), bind() and sendit() family functions. In particular, the sendit() function is used by the UDP send functions. This means each UDP send needs a malloc() and free() invocation. This is a performance problem in RTEMS (first-fit heap) and may lead to heap fragmentation. Replace the malloc() allocation with a stack allocation. This requires SOCK_MAXADDRLEN (= 255) of additional stack space for libbsd. A further optimization would be to get rid of the stack copy of the socket address. However, this would require to check each consumer of the address to ensure that it is not modified.
2017-10-20Import CRC32 support from FreeBSDSebastian Huber1-0/+2
2017-10-20blist: Import from FreeBSDSebastian Huber1-0/+6
2017-04-04Update to FreeBSD head 2017-04-04Sebastian Huber1-7/+865
Git mirror commit 642b174daddbd0efd9bb5f242c43f4ab4db6869f.
2017-01-10Update to FreeBSD head 2017-01-09Sebastian Huber1-8/+22
Git mirror commit 1f8e4a995a6ede4bdb24e6d335ccda2bdb0175ab.
2017-01-10Update to FreeBSD head 2016-08-23Sebastian Huber1-668/+764
Git mirror commit 9fe7c416e6abb28b1398fd3e5687099846800cfd.
2016-08-04freebsd: Add constant ipv6 addresses from vars.c.Christian Mauderer1-3/+0
This is necessary for a configuration without IPv6.
2016-05-06Add kernel namespace exception for mbstatSebastian Huber1-1/+0
2016-05-06Add kernel namespace exceptionsSebastian Huber1-28/+0
These names correspond to sysctls.
2016-05-06Update kernel namespaceSebastian Huber1-74/+0
2016-05-06Add script to create the kernel namespace headerSebastian Huber1-0/+4186