Merge branch 'linux-have-sysevent' into refs/top-bases/linux-zfs-branch
This commit is contained in:
commit
028f170442
|
@ -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