linux(4): Fix loadable modules after r367395
Move dtrace SDT definitions into linux_common module code. Also, build linux_dummy.c into the linux_common kld -- we don't need separate versions of these stubs for 32- and 64-bit emulation. Reported by: several PR: 250897 Discussed with: emaste, trasz Tested by: John Kennedy, Yasuhiro KIMURA, Oleg Sidorkin X-MFC-With: r367395 Differential Revision: https://reviews.freebsd.org/D27124
This commit is contained in:
parent
bdcc222644
commit
76b2bfeda4
@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/sysctl.h>
|
||||
|
||||
#include <compat/linux/linux.h>
|
||||
#include <compat/linux/linux_dtrace.h>
|
||||
#include <compat/linux/linux_emul.h>
|
||||
#include <compat/linux/linux_ioctl.h>
|
||||
#include <compat/linux/linux_mib.h>
|
||||
@ -49,6 +50,20 @@ FEATURE(linuxulator_v4l2, "V4L2 ioctl wrapper support in the linuxulator");
|
||||
|
||||
MODULE_VERSION(linux_common, 1);
|
||||
|
||||
/**
|
||||
* Special DTrace provider for the linuxulator.
|
||||
*
|
||||
* In this file we define the provider for the entire linuxulator. All
|
||||
* modules (= files of the linuxulator) use it.
|
||||
*
|
||||
* We define a different name depending on the emulated bitsize, see
|
||||
* ../../<ARCH>/linux{,32}/linux.h, e.g.:
|
||||
* native bitsize = linuxulator
|
||||
* amd64, 32bit emulation = linuxulator32
|
||||
*/
|
||||
LIN_SDT_PROVIDER_DEFINE(linuxulator);
|
||||
LIN_SDT_PROVIDER_DEFINE(linuxulator32);
|
||||
|
||||
SET_DECLARE(linux_device_handler_set, struct linux_device_handler);
|
||||
|
||||
TAILQ_HEAD(, linux_ioctl_handler_element) linux_ioctl_handlers =
|
||||
|
@ -29,21 +29,19 @@
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include "opt_compat.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/sdt.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/proc.h>
|
||||
|
||||
#ifdef COMPAT_LINUX32
|
||||
#include <machine/../linux32/linux.h>
|
||||
#include <machine/../linux32/linux32_proto.h>
|
||||
#else
|
||||
/*
|
||||
* Including linux vs linux32 here is arbitrary -- the syscall args structures
|
||||
* (proto.h) are not dereferenced by the DUMMY stub implementations, and
|
||||
* suitable for use by both native and compat32 entrypoints.
|
||||
*/
|
||||
#include <machine/../linux/linux.h>
|
||||
#include <machine/../linux/linux_proto.h>
|
||||
#endif
|
||||
|
||||
#include <compat/linux/linux_dtrace.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
@ -99,19 +99,6 @@ __FBSDID("$FreeBSD$");
|
||||
#include <compat/linux/linux_emul.h>
|
||||
#include <compat/linux/linux_misc.h>
|
||||
|
||||
/**
|
||||
* Special DTrace provider for the linuxulator.
|
||||
*
|
||||
* In this file we define the provider for the entire linuxulator. All
|
||||
* modules (= files of the linuxulator) use it.
|
||||
*
|
||||
* We define a different name depending on the emulated bitsize, see
|
||||
* ../../<ARCH>/linux{,32}/linux.h, e.g.:
|
||||
* native bitsize = linuxulator
|
||||
* amd64, 32bit emulation = linuxulator32
|
||||
*/
|
||||
LIN_SDT_PROVIDER_DEFINE(LINUX_DTRACE);
|
||||
|
||||
int stclohz; /* Statistics clock frequency */
|
||||
|
||||
static unsigned int linux_to_bsd_resource[LINUX_RLIM_NLIMITS] = {
|
||||
|
@ -52,6 +52,7 @@ cddl/dev/dtrace/i386/dtrace_asm.S optional dtrace compile-with "${DTRACE_S}"
|
||||
cddl/dev/dtrace/i386/dtrace_subr.c optional dtrace compile-with "${DTRACE_C}"
|
||||
compat/linprocfs/linprocfs.c optional linprocfs
|
||||
compat/linsysfs/linsysfs.c optional linsysfs
|
||||
compat/linux/linux_common.c optional compat_linux
|
||||
compat/linux/linux_dummy.c optional compat_linux
|
||||
compat/linux/linux_event.c optional compat_linux
|
||||
compat/linux/linux_emul.c optional compat_linux
|
||||
|
Loading…
Reference in New Issue
Block a user