Merge commit 'refs/top-bases/linux-have-sysevent' into linux-have-sysevent
This commit is contained in:
commit
57048fa6fa
|
@ -5,10 +5,10 @@ DISTFILES += zfs_prop.c zpool_prop.c zprop_common.c
|
|||
MODULE := zcommon
|
||||
|
||||
EXTRA_CFLAGS = @KERNELCPPFLAGS@
|
||||
EXTRA_CFLAGS += -I@MODDIR@/zcommon/include
|
||||
EXTRA_CFLAGS += -I@MODDIR@/spl/include
|
||||
EXTRA_CFLAGS += -I@MODDIR@/avl/include
|
||||
EXTRA_CFLAGS += -I@MODDIR@/nvpair/include
|
||||
EXTRA_CFLAGS += -I@MODDIR@/zcommon/include
|
||||
EXTRA_CFLAGS += -I@MODDIR@/zfs/include
|
||||
|
||||
obj-m := ${MODULE}.o
|
||||
|
||||
|
|
|
@ -514,4 +514,22 @@ EXPORT_SYMBOL(zfs_prop_user);
|
|||
EXPORT_SYMBOL(zfs_prop_index_to_string);
|
||||
EXPORT_SYMBOL(zfs_prop_string_to_index);
|
||||
EXPORT_SYMBOL(zfs_prop_valid_for_type);
|
||||
|
||||
static int __init zcommon_init(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void zcommon_fini(void)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
module_init(zcommon_init);
|
||||
module_exit(zcommon_fini);
|
||||
|
||||
MODULE_AUTHOR("Sun Microsystems, Inc");
|
||||
MODULE_DESCRIPTION("Generic ZFS support");
|
||||
MODULE_LICENSE("CDDL");
|
||||
|
||||
#endif
|
||||
|
|
|
@ -64,8 +64,6 @@ extern "C" {
|
|||
#include <sys/sysevent/eventdefs.h>
|
||||
#include <sys/fm/util.h>
|
||||
|
||||
#define CPU_SEQID (CPU->cpu_seqid)
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue