1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1995-06-25 17:32:43 +00:00
|
|
|
|
2010-08-23 06:13:29 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
2006-08-15 13:01:36 +00:00
|
|
|
SFX= 32
|
2010-03-11 14:49:06 +00:00
|
|
|
CFLAGS+=-DCOMPAT_FREEBSD32 -DCOMPAT_LINUX32
|
2006-08-15 13:01:36 +00:00
|
|
|
.endif
|
|
|
|
|
2010-08-23 06:13:29 +00:00
|
|
|
.PATH: ${.CURDIR}/../../compat/linux ${.CURDIR}/../../${MACHINE_CPUARCH}/linux${SFX}
|
2001-01-06 14:00:42 +00:00
|
|
|
|
1998-10-16 04:30:52 +00:00
|
|
|
KMOD= linux
|
2011-02-12 18:17:12 +00:00
|
|
|
SRCS= linux_fork.c linux${SFX}_dummy.c linux_emul.c linux_file.c \
|
MFP4 (with some minor changes):
Implement the linux_io_* syscalls (AIO). They are only enabled if the native
AIO code is available (either compiled in to the kernel or as a module) at
the time the functions are used. If the AIO stuff is not available there
will be a ENOSYS.
From the submitter:
---snip---
DESIGN NOTES:
1. Linux permits a process to own multiple AIO queues (distinguished by
"context"), but FreeBSD creates only one single AIO queue per process.
My code maintains a request queue (STAILQ of queue(3)) per "context",
and throws all AIO requests of all contexts owned by a process into
the single FreeBSD per-process AIO queue.
When the process calls io_destroy(2), io_getevents(2), io_submit(2) and
io_cancel(2), my code can pick out requests owned by the specified context
from the single FreeBSD per-process AIO queue according to the per-context
request queues maintained by my code.
2. The request queue maintained by my code stores contrast information between
Linux IO control blocks (struct linux_iocb) and FreeBSD IO control blocks
(struct aiocb). FreeBSD IO control block actually exists in userland memory
space, required by FreeBSD native aio_XXXXXX(2).
3. It is quite troubling that the function io_getevents() of libaio-0.3.105
needs to use Linux-specific "struct aio_ring", which is a partial mirror
of context in user space. I would rather take the address of context in
kernel as the context ID, but the io_getevents() of libaio forces me to
take the address of the "ring" in user space as the context ID.
To my surprise, one comment line in the file "io_getevents.c" of
libaio-0.3.105 reads:
Ben will hate me for this
REFERENCE:
1. Linux kernel source code: http://www.kernel.org/pub/linux/kernel/v2.6/
(include/linux/aio_abi.h, fs/aio.c)
2. Linux manual pages: http://www.kernel.org/pub/linux/docs/manpages/
(io_setup(2), io_destroy(2), io_getevents(2), io_submit(2), io_cancel(2))
3. Linux Scalability Effort: http://lse.sourceforge.net/io/aio.html
The design notes: http://lse.sourceforge.net/io/aionotes.txt
4. The package libaio, both source and binary:
http://rpmfind.net/linux/rpm2html/search.php?query=libaio
Simple transparent interface to Linux AIO system calls.
5. Libaio-oracle: http://oss.oracle.com/projects/libaio-oracle/
POSIX AIO implementation based on Linux AIO system calls (depending on
libaio).
---snip---
Submitted by: Li, Xiao <intron@intron.ac>
2006-10-15 14:22:14 +00:00
|
|
|
linux_futex.c linux_getcwd.c linux_ioctl.c linux_ipc.c \
|
|
|
|
linux${SFX}_machdep.c linux_mib.c linux_misc.c linux_signal.c \
|
|
|
|
linux_socket.c linux_stats.c linux_sysctl.c linux${SFX}_sysent.c \
|
|
|
|
linux${SFX}_sysvec.c linux_uid16.c linux_util.c linux_time.c \
|
2012-05-06 11:41:00 +00:00
|
|
|
opt_inet6.h opt_compat.h opt_kdtrace.h opt_posix.h opt_usb.h \
|
|
|
|
vnode_if.h device_if.h bus_if.h assym.s
|
2007-05-23 08:33:06 +00:00
|
|
|
|
|
|
|
# XXX: for assym.s
|
2009-05-26 20:22:03 +00:00
|
|
|
SRCS+= opt_kstack_pages.h opt_nfs.h opt_compat.h opt_hwpmc_hooks.h
|
2010-08-23 06:13:29 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
2009-05-26 20:57:19 +00:00
|
|
|
SRCS+= opt_apic.h
|
|
|
|
.endif
|
2007-05-23 08:33:06 +00:00
|
|
|
|
|
|
|
OBJS= linux${SFX}_locore.o linux${SFX}_support.o
|
1996-03-02 20:00:35 +00:00
|
|
|
|
2010-08-23 06:13:29 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
2009-05-26 20:57:19 +00:00
|
|
|
SRCS+= linux_ptrace.c imgact_linux.c opt_cpu.h
|
2000-09-06 20:21:15 +00:00
|
|
|
.endif
|
|
|
|
|
2002-02-22 18:21:20 +00:00
|
|
|
EXPORT_SYMS=
|
|
|
|
EXPORT_SYMS+= linux_emul_path
|
|
|
|
EXPORT_SYMS+= linux_get_osname
|
|
|
|
EXPORT_SYMS+= linux_get_osrelease
|
|
|
|
EXPORT_SYMS+= linux_ifname
|
|
|
|
EXPORT_SYMS+= linux_ioctl_register_handler
|
|
|
|
EXPORT_SYMS+= linux_ioctl_unregister_handler
|
|
|
|
|
2006-08-15 13:01:36 +00:00
|
|
|
CLEANFILES= linux${SFX}_assym.h linux${SFX}_genassym.o
|
1996-03-02 20:00:35 +00:00
|
|
|
|
2006-08-15 13:01:36 +00:00
|
|
|
linux${SFX}_assym.h: linux${SFX}_genassym.o
|
2000-06-03 07:40:19 +00:00
|
|
|
.if exists(@)
|
2006-08-15 13:01:36 +00:00
|
|
|
linux${SFX}_assym.h: @/kern/genassym.sh
|
2000-06-03 07:40:19 +00:00
|
|
|
.endif
|
2006-08-15 13:01:36 +00:00
|
|
|
sh @/kern/genassym.sh linux${SFX}_genassym.o > ${.TARGET}
|
1996-03-02 20:00:35 +00:00
|
|
|
|
2006-08-15 13:01:36 +00:00
|
|
|
linux${SFX}_locore.o: linux${SFX}_locore.s linux${SFX}_assym.h
|
2000-01-09 10:04:53 +00:00
|
|
|
${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
|
2001-01-06 14:00:42 +00:00
|
|
|
${.IMPSRC} -o ${.TARGET}
|
1996-03-02 20:00:35 +00:00
|
|
|
|
2007-05-23 15:45:52 +00:00
|
|
|
linux${SFX}_support.o: linux${SFX}_support.s assym.s linux${SFX}_assym.h
|
2007-05-23 08:33:06 +00:00
|
|
|
${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
|
|
|
|
${.IMPSRC} -o ${.TARGET}
|
|
|
|
|
2006-08-15 13:01:36 +00:00
|
|
|
linux${SFX}_genassym.o: linux${SFX}_genassym.c linux.h @ machine
|
2002-01-10 03:52:54 +00:00
|
|
|
${CC} -c ${CFLAGS:N-fno-common} ${.IMPSRC}
|
1996-03-02 20:00:35 +00:00
|
|
|
|
2005-10-14 23:30:17 +00:00
|
|
|
.if !defined(KERNBUILDDIR)
|
2003-02-03 17:43:20 +00:00
|
|
|
opt_inet6.h:
|
2008-09-01 23:59:00 +00:00
|
|
|
echo "#define INET6 1" > ${.TARGET}
|
2009-05-07 10:01:05 +00:00
|
|
|
.if defined(KTR)
|
|
|
|
CFLAGS+= -DKTR
|
|
|
|
.endif
|
2005-10-14 23:30:17 +00:00
|
|
|
.endif
|
2003-02-03 17:43:20 +00:00
|
|
|
|
2000-05-27 01:14:33 +00:00
|
|
|
.include <bsd.kmod.mk>
|
2012-02-28 18:30:18 +00:00
|
|
|
|
|
|
|
# XXX: clang integrated-as doesn't grok .codeNN directives yet
|
|
|
|
CFLAGS.linux32_locore.s= ${CLANG_NO_IAS}
|
|
|
|
CFLAGS+= ${CFLAGS.${.IMPSRC:T}}
|