diff options
author | marcel <marcel@FreeBSD.org> | 2001-09-08 19:07:04 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2001-09-08 19:07:04 +0000 |
commit | df61d9eb64550a7afc1b41ccc9e0261af45c98c1 (patch) | |
tree | 684b7cfa2a29ef6b8c2244d13f69d58e1e89c819 /sys/modules/linux | |
parent | bc484946ce384f7bb29f0d6da97f0d3eb7084574 (diff) | |
download | FreeBSD-src-df61d9eb64550a7afc1b41ccc9e0261af45c98c1.zip FreeBSD-src-df61d9eb64550a7afc1b41ccc9e0261af45c98c1.tar.gz |
Round of cleanups and enhancements. These include (in random order):
o Introduce private types for use in linux syscalls for two reasons:
1. establish type independence for ease in porting and,
2. provide a visual queue as to which syscalls have proper
prototypes to further cleanup the i386/alpha split.
Linuxulator types are prefixed by 'l_'. void and char have not
been "virtualized".
o Provide dummy functions for all syscalls and remove dummy functions
or implementations of truely obsolete syscalls.
o Sanitize the shm*, sem* and msg* syscalls.
o Make a first attempt to implement the linux_sysctl syscall. At this
time it only returns one MIB (KERN_VERSION), but most importantly,
it tells us when we need to add additional sysctls :-)
o Bump the kenel version up to 2.4.2 (this is not the same as the
KERN_VERSION MIB, BTW).
o Implement new syscalls, of which most are specific to i386. Our
syscall table is now up to date with Linux 2.4.2. Some highlights:
- Implement the 32-bit uid_t and gid_t bases syscalls.
- Implement a couple of 64-bit file size/offset bases syscalls.
o Fix or improve numerous syscalls and prototypes.
o Reduce style(9) violations while I'm here. Especially indentation
inconsistencies within the same file are addressed. Re-indenting
did not obfuscate actual changes to the extend that it could not
be combined.
NOTE: I spend some time testing these changes and found that if there
were regressions, they were not caused by these changes AFAICT.
It was observed that installing a RH 7.1 runtime environment
did make matters worse. Hangs and/or reboots have been observed
with and without these changes, so when it failed to make life
better in cases it doesn't look like it made it worse.
Diffstat (limited to 'sys/modules/linux')
-rw-r--r-- | sys/modules/linux/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index 3360a40..226d22d 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -5,14 +5,14 @@ MAINTAINER= marcel@FreeBSD.org .PATH: ${.CURDIR}/../../compat/linux ${.CURDIR}/../../${MACHINE_ARCH}/linux KMOD= linux -SRCS= linux_file.c linux_getcwd.c linux_ioctl.c linux_ipc.c linux_machdep.c \ - linux_misc.c linux_signal.c linux_socket.c linux_stats.c linux_mib.c \ - linux_dummy.c linux_sysent.c linux_sysvec.c linux_util.c \ - opt_compat.h opt_linux.h opt_vmpage.h vnode_if.h +SRCS= linux_dummy.c linux_file.c linux_getcwd.c linux_ioctl.c linux_ipc.c \ + linux_machdep.c linux_mib.c linux_misc.c linux_signal.c linux_socket.c \ + linux_stats.c linux_sysctl.c linux_sysent.c linux_sysvec.c \ + linux_util.c opt_compat.h opt_linux.h opt_vmpage.h vnode_if.h OBJS= linux_locore.o .if ${MACHINE_ARCH} == "i386" -SRCS+= imgact_linux.c +SRCS+= linux_uid16.c imgact_linux.c .endif CLEANFILES= linux_assym.h linux_genassym.o |